我正在编写一个简单的Tweepy应用程序,但实际上仅限于我有多少 API 调用(介于 150 到 350 之间)。因此,为了解决这个问题,我正在寻找减少通话的方法。Tweepy 有一个内置的光标系统。例如:
# Iterate through all of the authenticated user's friends
for follower in tweepy.Cursor(api.followers).items():
follower.follow()
对于那些熟悉这个库的人。上面的例子会比简单的效率更高还是更低......
for follower in api.followers_ids():
api.follow(follower)
除了简单地使用 Cursor 方法而不是迭代方法之外,还有其他优点吗?
提前致谢。