回答編集履歴

2

2021/02/26 13:16

投稿

退会済みユーザー
test CHANGED
@@ -12,6 +12,10 @@
12
12
 
13
13
  # このときstatusオブジェクトはリツイートを指す。
14
14
 
15
+ print(status.text)
16
+
15
17
  api.destroy_status(status.id)
16
18
 
19
+ print("Unretweeted.")
20
+
17
21
  ```

1

2021/02/26 13:16

投稿

退会済みユーザー
test CHANGED
@@ -2,10 +2,16 @@
2
2
 
3
3
  通常のツイートの削除の作法と変わりません。
4
4
 
5
+ 質問中のコードは、自分の**リツイート**を指定できていないからエラーになっているのだと思います。
6
+
5
7
  ```
6
8
 
7
- # statusretweetを指しているものとする。
9
+ for status in tweepy.Cursor(api.user_timeline).items():
8
10
 
11
+ if "RT" in status.text:
12
+
13
+ # このときstatusオブジェクトはリツイートを指す。
14
+
9
- api.destroy_status(status.id)
15
+ api.destroy_status(status.id)
10
16
 
11
17
  ```