0

我正在通过 tweepy 收集大量推文,但过了一会儿,它停止并显示以下消息:

  File "build/bdist.macosx-10.8-intel/egg/tweepy/binder.py", line 185, in _call
  File "build/bdist.macosx-10.8-intel/egg/tweepy/binder.py", line 168, in execute
tweepy.error.TweepError: [{'message': 'Sorry, that page does not exist', 'code': 34}]

我只收集对已经存在的推文的回复,

所以我猜是回复者拼错了原始推文的作者的情况。

是否有解决方法可以忽略这一点并继续?

4

1 回答 1

2

我自己想通了。这非常简单..您可以尝试/排除并传递错误。

try:
        # do something                                    
except tweepy.error.TweepError:
        pass
于 2013-01-21T13:14:37.393 回答