python
1searchs = tweepy.Cursor(api.user_timeline, q = user_, include_entities = True, tweet_mode = 'extended').items(3) 2print(searchs) 3for search in searchs: 4 try: 5 api.create_favorite(id=tweet_id) 6 api.destroy_status(id = tweet_id) 7 except: 8 pass
tweepyを使ってRTを外そうと思ったのですがうまくいきません。
解決策をご存じの方がおりましたら教えてください。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。