こんにちは。Python3を触ってます。取りあえず、TwitterのAPIを動かしてみようと、PythonでTwitter APIを使って公式RTするまでの流れ
の、
python3
1# -*- coding: utf-8 -*- 2 3import twitter 4 5api = twitter.Api(consumer_key="Consumer Keyを入力", 6 consumer_secret="Consumer Secretを入力", 7 access_token_key="Access Tokenを入力", 8 access_token_secret="Access Token Secretを入力" 9 ) 10 11tweets = api.GetSearch(term=u"#今日") 12api.PostRetweet(tweets[0].id)
をコピペして実行してみたのですが、エラーとなります。
api = twitter.Api(consumer_key="Consumer Keyを入力",
AttributeError: module 'twitter' has no attribute 'Api'
のApiがapiではないかと思ったので、
apiに直しても
TypeError: 'module' object is not callable
となります。apiを触ったことはあまりないので、よく分かりません。
問題点をお教えください。よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2018/04/09 16:24
2018/04/09 16:32
2018/04/10 10:30 編集
2018/04/10 11:54
2018/04/10 11:56 編集