UnboundLocalError:赋值前引用的局部变量'resp'

时间:2012-06-19 14:04:01

标签: python tweepy

这似乎是一个非常常见的错误,有几个不同的解决方案, python: UnboundLocalError: local variable 'open' referenced before assignment

Python: Help with UnboundLocalError: local variable referenced before assignment

我的问题不同的是我在运行的代码中没有变量“resp”。发布的大多数其他问题是因为海报对类和变量使用相同的名称,或者他们未能将其声明为全局变量。

守则

import tweepy
auth = tweepy.OAuthHandler('75VSSMGC4pfUB5u0Zt5G3Q', '2olQeiquDg71uwnGoU2c9e2u3qy2LrKkn2p6KWBIdI')
auth.set_access_token('122095773-cCrYa4FWFoBkx44LES8yeBlt8DTG0jnZivJ79k2J', 'p1Nmp9DaPUIThpTamzIMfdvJu0wgdfxmghdwsSagM')
api = tweepy.API(auth)

print api.rate_limit_status()
#print tweepy.api.rate_limit_status()

错误

Traceback (most recent call last):
  File "/Users/brendan/Documents/workspace/Tweeter/src/rate_limit.py", line 6, in <module>
    print api.rate_limit_status()
  File "build/bdist.macosx-10.5-fat3/egg/tweepy/binder.py", line 185, in _call
  File "build/bdist.macosx-10.5-fat3/egg/tweepy/binder.py", line 147, in execute
UnboundLocalError: local variable 'resp' referenced before assignment

有什么建议吗?

1 个答案:

答案 0 :(得分:7)

升级您的tweepy库。

如果请求失败会导致您看到的特定错误,但有since been corrected错误。该修复程序是1.6及更高版本的一部分。