0

我想根据主题标签获取推文。但我收到以下错误。

>>> import twython
>>> TWITTER_APP_KEY = 'xxxxxx'
>>> TWITTER_APP_KEY_SECRET = 'xxxxx'
>>> TWITTER_ACCESS_TOKEN = 'xxxxxx'
>>> TWITTER_ACCESS_TOKEN_SECRET = 'xxxxx'
>>> t = twython(app_key=TWITTER_APP_KEY, 
        app_secret=TWITTER_APP_KEY_SECRET, 
            oauth_token=TWITTER_ACCESS_TOKEN, 
            oauth_token_secret=TWITTER_ACCESS_TOKEN_SECRET)

Traceback (most recent call last):
  File "<pyshell#16>", line 4, in <module>
    oauth_token_secret=TWITTER_ACCESS_TOKEN_SECRET)
TypeError: 'module' object is not callable

我不明白为什么会出现上述错误?另外请让我知道 app_key 是否与消费者密钥相同?请帮忙。

谢谢

4

1 回答 1

2

请参阅文档

from twython import Twython

t = Twython(app_key=app_key,
            app_secret=app_secret,
            callback_url='http://google.com/')

在您的示例中,您直接调用模块 twython而不是 class twyton.Twython

要使您的示例正常工作,您需要替换import twythonfrom twython import Twython.

于 2013-04-23T20:17:25.190 回答