写了个 tumblr 的视频爬虫,vpn 掉了后即使重新连上网速恢复了,下载速度还是零点几 KB,用什么办法让指定时间后自动重新开始这个 for 循环?
1
xpresslink 2018-05-29 17:02:02 +08:00
import time
while True: ****for xxxx ********do xxx ****time.sleep(60) |
2
Rudefish OP @xpresslink 你写的这个 for 循环不执行完,time.sleep 应该不会执行吧
|
3
golmic 2018-05-29 17:10:43 +08:00
while 1
start = now for if now - start > 60 break do |
4
Rudefish OP @golmic 卡住的地方应该是 video = requests.get ()这块,这个判断语句放在里面应该不会执行到吧
|
6
lniwn 2018-05-29 18:58:36 +08:00
aiohttp + asyncio.Timeout ?
|
7
bigpigeon 2018-05-30 10:15:36 +08:00
我记得 python 的 req 模块有 timeout 参数的,用 scrapy 也应该有 timeout 参数的
|