我想湊使用Tweepy一些微博,但有以下錯誤幾百請求後,連接崩潰: tweepy.error.TweepError: 無法發送請求:('連接異常中止。 」,錯誤( 「(104, 'ECONNRESET')」,))Tweepy錯誤104:連接異常中止
我的代碼是這樣的:
for status in tweepy.Cursor(api.search,
q="",
count=100,
include_entities=True,
monitor_rate_limit=True,
wait_on_rate_limit=True,
wait_on_rate_limit_notify = True,
retry_count = 5, #retry 5 times
retry_delay = 5, #seconds to wait for retry
geocode ="34.0207489,-118.6926066,100mi", # los angeles
until=until_date,
lang="en").items():
try:
towrite = json.dumps(status._json)
output.write(towrite + "\n")
except Exception, e:
log.error(e)
c+=1
if c % 10000 == 0: # 100 requests, sleep
time.sleep(900) # sleep 15 min
我可以嘗試/捕獲錯誤除外,但我不能重啓光標從它墜毀的地方開始。 有誰知道如何解決這個錯誤,或重新從最後一個已知的狀態光標?
謝謝!