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ツイート。
私の要件は、tweepyを使用して世界中の誰もが投稿したキーワードを含む、最後の100件のツイートを取得することです。
以前のツイートを大量に取得したくない場合は、次を使用できます。
ret = api.user_timeline(screen_name = 'Bob', count = 100, include_rts = True)
ユーザーの最新の 100 件のツイートを取得するにはBob。Ret はStatusオブジェクトのリストになります。
Bob
Status