はじめに Twitter API V2を使ってツイート情報を収集しようとしたが、ハマってしまったのでまとめてみました。 ソースコード 調べたらすぐ出てくるようなコードです。 import tweepy consumer_key = 'xxxxxx' consumer_secret = 'xxxxxx' access_token = 'xxxxxx' access_token_secret = 'xxxxxx' client = tweepy.Client( consumer_key, consumer_secret, access_token, access_token_secret ) search = 'Python' tweet_max = 10 tweets = client.search_recent_tweets(query=search, max_results=tweet_