皆様いつもお世話になっております。
以下のコードでOAuthHandlerという属性がないと出てしまう。
python
1import tweepy 2 3consumer_key = "XXXXXXXXXXXXXX" 4consumer_secret = "YYYYYYYYYYYYYYYYYY" 5auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
エラー:
Traceback (most recent call last):
File "test_tweepy.py", line 8, in <module>
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
AttributeError: module 'tweepy' has no attribute 'OAuthHandler'
他のウェブサイトを調べたところ、以下のようにすれば解決するとありますが、解決に至りませんでした。
python
1from tweepy.auth import OAuthHandler 2 3auth = OAuthHandler(consumer_key, consumer_secret) 4auth.set_access_token(access_token, access_token_secret)
エラー:
Traceback (most recent call last):
File "test_tweepy.py", line 1, in <module>
from tweepy.auth import OAuthHandler
ModuleNotFoundError: No module named 'tweepy.auth'
スクリプトをtweepy.pyという名前で保存していません
どうしたらOAuthHandlerが利用できるようになるでしょうか?
アドバイスとご教授のほどよろしくお願いします。
回答1件
あなたの回答
tips
プレビュー