前提・実現したいこと
python初心者です。
twitterで、期間を指定し、特定キーワードが含まれるツイートをすべて抜き出しを行いたいです。
期間は1~2日と非常に短いです。
pythonのtweepyを使っています。
発生している問題・エラーメッセージ
TweepError: Twitter error response: status code = 400
該当のソースコード
Python
1import tweepy 2#import datetime 3 4Consumer_key = '' 5Consumer_secret = '' 6Access_token = '' 7Access_token_secret = '' 8 9### TwitterAPI認証用関数 10def authTwitter(): 11 auth = tweepy.OAuthHandler(Consumer_key, Consumer_secret) 12 auth.set_access_token(Access_token, Access_token_secret) 13 api = tweepy.API(auth, wait_on_rate_limit = True) # API利用制限にかかった場合、解除まで待機する 14 return(api) 15 16 17### Tweetの検索結果を標準出力 18def getTweetBySearch(s, since, until): 19 20 result = [] 21 22 api = authTwitter() # 認証 23 24 ## vars 25 sinceDate = since # この日付以降のツイートを取得する 26 untilDate = until # この日付以前のツイートを取得する 27 28 # 検索用文字列(リツイートは除外する) 29 sratchStr = s + ' exclude:retweets' 30 print('検索文字列 : ' + sratchStr) 31 32 tweets = tweepy.Cursor(api.search, q = s, \ 33 include_entities = True, \ 34 tweet_mode = 'extended', \ 35 since = sinceDate, \ 36 until = untilDate, \ 37 lang = 'ja').items(10) # テストなので10個に 38 39 for tweet in tweets: 40 print('==========') 41 print('twid : ',tweet.id) 42 print('user : ',tweet.user.screen_name) 43 print('date : ', tweet.created_at) 44 print(tweet.full_text) 45 print('favo : ', tweet.favorite_count) 46 print('retw : ', tweet.retweet_count) 47 48def main(): 49 getTweetBySearch('python','2020-4-20_17:00:00_JST','2020-4-21_17:00:00_JST') 50 51if __name__ == "__main__": 52 main()
試したこと
期間指定をdatetimeでd1 = datetime.datetime(2020, 4, 20, 17, 0, 0)として渡す、
JSTではなくする等行いましたが、解消されません。
期間指定を入れない場合(直近ツイートの抽出)は動きます。
どうぞよろしくお願いいたします。
補足情報(FW/ツールのバージョンなど)
python3.7
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/17 08:10