DSc*_*ana 8 python twitter tweepy
我正在尝试使用tweepy api创建一个访问Twitter帐户的项目,但我面临状态代码429.现在,我环顾四周,我发现这意味着我有太多的请求.但是,我一次只发送10条推文,在这些推文中,我的测试中只有一条推文存在.
for tweet in tweepy.Cursor(api.search, q = '@realtwitchess ',lang = ' ').items(10):
try:
text = str(tweet.text)
textparts = str.split(text) #convert tweet into string array to disect
print(text)
for x, string in enumerate(textparts):
if (x < len(textparts)-1): #prevents error that arises with an incomplete call of the twitter bot to start a game
if string == "gamestart" and textparts[x+1][:1] == "@": #find games
otheruser = api.get_user(screen_name = textparts[2][1:]) #drop the @ sign (although it might not matter)
self.games.append((tweet.user.id,otheruser.id))
elif (len(textparts[x]) == 4): #find moves
newMove = Move(tweet.user.id,string)
print newMove.getMove()
self.moves.append(newMove)
if tweet.user.id == thisBot.id: #ignore self tweets
continue
except tweepy.TweepError as e:
print(e.reason)
sleep(900)
continue
except StopIteration: #stop iteration when last tweet is reached
break
Run Code Online (Sandbox Code Playgroud)
当错误出现时,它位于第一个for循环行中.有点奇怪的是,它不是每次都抱怨,甚至是一致的间隔.有时它会起作用,而其他时候,似乎是随机的,不起作用.
我们尝试在循环中添加更长的睡眠时间并减少项目数.
小智 22
在API调用上添加wait_on_rate_limit = True,如下所示:
api = tweepy.API(auth, wait_on_rate_limit=True)
Run Code Online (Sandbox Code Playgroud)
这将使其余代码服从速率限制