下記サイトのコードサンプルにて、特定ツイートに対するリプライ情報を取得しようとしたのですが、
TypeError: search_tweets() missing 1 required positional argument: 'range'
というエラーが出てきて困っております。
解決方法をご教授頂けないでしょうか。
参考サイトURL:https://qiita.com/h_tashiro/items/09b0bcf180dca7f91a3b
python
1コード 2import urllib 3from requests_oauthlib import OAuth1Session, OAuth1 4import requests 5import sys 6 7def main(): 8 9 # APIの秘密鍵 10 CK = "**********" 11 CKS = "**********" 12 AT = "**********" 13 ATS = "**********" 14 # ユーザー・ツイートID 15 user_id = '@**********' 16 tweet_id = '**********' # str型で指定 17 # 検索時のパラメーター 18 count = 100 # 一回あたりの検索数(最大100/デフォルトは15) 19 range = 180 # 検索回数の上限値(最大180/15分でリセット) 20 # ツイート検索・リプライの抽出 21 tweets = search_tweets(CK, CKS, AT, ATS, user_id, tweet_id, count, range) 22 # 抽出結果を表示 23 print(tweets[0:5]) 24 25 26def search_tweets(self, CK, CKS, AT, ATS, user_id, tweet_id, count, range): 27 # 文字列設定 28 user_id += ' exclude:retweets' # RTは除く 29 user_id = urllib.parse.quote_plus(user_id) 30 # リクエスト 31 url = "https://api.twitter.com/1.1/search/tweets.json?lang=ja&q="+user_id+"&count="+str(count) 32 auth = OAuth1(CK, CKS, AT, ATS) 33 response = requests.get(url, auth=auth) 34 data = response.json()['statuses'] 35 # 2回目以降のリクエスト 36 cnt = 0 37 reply_cnt = 0 38 tweets = [] 39 while True: 40 if len(data) == 0: 41 break 42 cnt += 1 43 if cnt > range: 44 break 45 for tweet in data: 46 if tweet['in_reply_to_status_id_str'] == tweet_id: # ツイートIDに一致するものを抽出 47 tweets.append(tweet['text']) # ツイート内容 48 reply_cnt += 1 49 maxid = int(tweet["id"]) - 1 50 url = "https://api.twitter.com/1.1/search/tweets.json?lang=ja&q="+user_id+"&count="+str(count)+"&max_id="+str(maxid) 51 response = requests.get(url, auth=auth) 52 try: 53 data = response.json()['statuses'] 54 except KeyError: # リクエスト回数が上限に達した場合のデータのエラー処理 55 print('上限まで検索しました') 56 break 57 print('検索回数 :', cnt) 58 print('リプライ数 :', reply_cnt) 59 return tweets 60 61 62if __name__ == '__main__': 63 main()
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。