避免使用Tweepy限制Twitter API

避免使用Tweepy限制Twitter API,第1张

避免使用Tweepy限制Twitter API

问题在于您的

try:except:
区块放置在错误的位置。将数据插入数据库将永远不会产生
TweepError
-对其进行迭代
Cursor.items()
。我建议重构您的代码以在无限循环中调用
next
方法
Cursor.items()
。该调用应放置在
try:except:
块中,因为它可能引发错误。

代码大致如下所示:

# above omitted for brevityc = tweepy.Cursor(api.search, q=search, include_entities=True).items()while True:    try:        tweet = c.next()        # Insert into db    except tweepy.TweepError:        time.sleep(60 * 15)        continue    except StopIteration:        break

之所以起作用,是因为当Tweepy引发时

TweepError
,它没有更新任何游标数据。下次发出请求时,它将使用与触发速率限制的请求相同的参数,有效地重复执行直到达到限制为止。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5653128.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存