ジオタグ付きツイートを取得したいのですが、OAuthが定義できず、
エラーが出てしまします。API認証キーが間違っているのではないかと思い、
更新してから再度試みましたが、同じエラーが出てしましました。
OAuthが定義に関して足りない部分を教えていただきたいです。
「Twitterの空間分析/桐村喬/2019」という本を参考にしました。
from twitter import* >>> auth = OAuth( ... consumer_key='[]', ... consumer_secret='[]', ... token='[]', ... token_secret='[]' ... ) Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'OAuth' is not defined
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/07 07:27
2020/08/07 07:48 編集
2020/08/19 07:40