Answers for "twitter bot know if you already retweeted"

0

twitter bot know if you already retweeted

//If your issue is that the script is not continuing, you can use try and except instead.

try:
    tweet.retweet()
except tweepy.TweepError as e:
    print(e)
//In this case, you'll get the following message printed and will continue to retweet next tweets that are matching your search.

//Output: [{u'message': u'You have already retweeted this Tweet.', u'code': 327}]
Posted by: Guest on April-14-2020

Code answers related to "twitter bot know if you already retweeted"

Browse Popular Code Answers by Language