任何可以帮助我改变这个

时间:2012-08-08 20:10:09

标签: python twitter

>>> import tweepy
>>> dir(tweepy)
['API', 'BasicAuthHandler', 'Cache', 'Cursor', 'DirectMessage', 'FileCache', 'Friendship', 'MemoryCache', 'ModelFactory', 'OAuthHandler', 'SavedSearch', 'SearchResult', 'Status', 'Stream', 'StreamListener', '***TweepError***', 'User', '__author__', '__builtins__', '__doc__', '__file__', '__license__', '__name__', '__package__', '__path__', '__version__', 'api', 'auth', 'binder', 'cache', 'cursor', 'debug', 'error', 'models', 'oauth', 'parsers', 'streaming', 'utils']
>>> import twitter
>>> dir(twitter)
['ACCESS_TOKEN_URL', 'AUTHORIZATION_URL', 'Api', 'CHARACTER_LIMIT', 'DEFAULT_CACHE', 'DirectMessage', 'Hashtag', 'List', 'REQUEST_TOKEN_URL', 'SIGNIN_URL', 'Status', 'StringIO', 'Trend', ***'TwitterError'***, 'Url', 'User', '_FileCache', '_FileCacheError', '__author__', '__builtins__', '__doc__', '__file__', '__name__', '__package__', '__version__', 'base64', 'calendar', 'datetime', 'gzip', 'httplib', 'md5', 'oauth', 'os', 'parse_qs', 'parse_qsl', 'rfc822', 'simplejson', 'sys', 'tempfile', 'textwrap', 'time', 'urllib', 'urllib2', 'urlparse']

我希望你们注意到他们中的两件事首先是TweepError在tweepy,第二件是TwitterError在twitter中。这两个错误在我的申请中打扰了我。我安装了很多次但仍面临这两个错误。我是Windows7用户并使用Python2.6。 我收到此错误

twitter = Twitter(format="xml")

Traceback (most recent call last):
  File "<pyshell#5>", line 1, in <module>
    twitter = Twitter(format="xml")
NameError: name 'Twitter' is not defined

3 个答案:

答案 0 :(得分:2)

取代:

twitter = Twitter(format="xml")

my_twitter = twitter.Twitter(format="xml")

请注意,我还更改了本地创建的实例的名称,以便您可以继续使用twitter作为模块的名称。

答案 1 :(得分:2)

如果您尝试从the official Python Twitter Tools page执行操作,则应首先使用适当的导入指令from twitter import *。或者阅读更多关于 importing modules in python的信息。

答案 2 :(得分:0)

您只是对库twitter和python_twitter以及tweepy感到困惑。首先阅读您要使用的库文档,然后关注该库,而不是查看其他文档。这个错误是因为你安装了twitter和阅读python_twitter的文档