api = twitter.Api(consumer_key='aaa',consumer_secret='aaa', access_token_key='aaa', access_token_secret='aaa')
followers=api.GetFollowerIDs()
该代码4天前正在运行。但突然停止工作。它给出了以下错误。我正在使用python-twitter。这是什么原因?
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python2.7/dist-packages/python_twitter-1.0.1-py2.7.egg/twitter.py", line 3320, in GetFollowerIDs
total_count -= len(data['ids'])
TypeError: unsupported operand type(s) for -=: 'NoneType' and 'int'
编辑:所有代码都在上面。它是在3-4天前正确运行的代码。
EDIT2:如果你想要,你可以从这里看错误行。我正在使用那个库。 https://github.com/bear/python-twitter/blob/master/twitter.py
答案 0 :(得分:0)
这里发生了什么:
a = None
a -= 5
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for -=: 'NoneType' and 'int'
由于某种原因,您的total_count
变量设置为无