Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Tweepy 流 api 为我提供了实时推文。那么有什么方法可以在脚本开始运行之前从推文库中获取推文。就像,最后 100 条推文。
我的要求是获得最后 100 条推文,其中包含世界上任何人使用 tweepy 发布的关键字
如果您不希望获得大量以前的推文,您可以使用:
ret = api.user_timeline(screen_name = 'Bob', count = 100, include_rts = True)
获取用户的最后 100 条推文Bob。Ret 将是一个Status对象列表。
Bob
Status