0

我正在尝试运行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 看起来它可能有能力将图像添加到推文中。

任何提示将不胜感激。

4

1 回答 1

0

嗯,我们core_examples在 repo 中没有了,所以我不确定你运行的是什么版本的 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...

抱歉这么晚才看到,当工作接管我的生活时,SO就从我身边溜走了。希望你在路上!

于 2013-05-05T04:43:09.977 回答