我正在尝试在core_examples
文件夹中运行Twython示例,并且我在所有文件上都收到相同的错误。
如果我运行文件:weekly_trends.py
我收到错误:
'Twython' object has no attribute 'weekly_trends.py'.
如果我运行文件:getCurrentTrends.py
我收到错误:
'Twython' object has no attribute 'getCurrentTrends'.
我试过在我的Raspberry Pi和OSX上运行代码,我得到了同样的错误。我假设我错过了安装过程或身份验证的关键部分。我有一个Twitter应用程序设置,我有钥匙和令牌。我是否需要在任何地方输入这些以使其工作?我得到Tweepy工作,但Twython看起来可能有能力添加图片到推文。
任何提示都将不胜感激。
答案 0 :(得分:0)
嗯,我们在repo中没有core_examples
,所以我不确定你正在运行什么版本的Twython。作为参考,您需要在Twython实例化中使用这些键,ala:
from twython import Twython
t = Twython(app_key, app_secret, oauth_token, oauth_token_secret)
auth_tokens = t.get_authorized_tokens(oauth_verifier)
print auth_tokens
# method calls, etc...
很抱歉看到这么晚,当工作接管我的生活时,我会离开我。希望你在路上!