我试图忽略我自己已经转发的推文,但我真的不知道如何指明这一点,我知道如果不是推文,那就是:'忽略转推,但我不知道如何忽略我已在Twitter api搜索中转发过的推文。
for tweet in tweepy.Cursor(api.search,
q='- Play Free Spin http://csgoroll.com/freespin',
since='2017-12-20',
screen_name='CSGORoll'
).items(10):
if not tweet.retweeted:
tweet.retweet()
print("CSGORoll, Working...")
return
答案 0 :(得分:2)
如果您的问题是脚本没有继续,则可以改为使用try
和except
。
try:
tweet.retweet()
except tweepy.TweepError as e:
print(e)
在这种情况下,您会打印以下消息,并会继续转发与您的搜索匹配的下一条推文。
Output: [{u'message': u'You have already retweeted this Tweet.', u'code': 327}]