事前準備 Twitterのアカウントを取得 アプリケーションへの登録(登録ページ:https://apps.twitter.com/) アクセストークンを取得(詳しい説明:https://syncer.jp/Web/API/Twitter/REST_API/) 特定のツイートを取得 Twitter APIを利用する際に便利なPythonモジュール、tweepyを使います。インストールしていなければpip install tweepy してください。 import tweepy consumer_key = "" consumer_secret = "" access_key = "" access_secret = "" auth = tweepy.OAuthHandler(consumer_key, consumer_secret) auth.set_access_token(acces