coding:utf-8
import urllib2
import multiprocessing
import threading
import os
import signal
from threading import Timer
def download_file(url, fpath, timeout, msg_collector):
def timeout_callback(dt):
dt.terminate()
msg_q = multiprocessing.Queue()
dt = multiprocessing.Process(target=download_func, args=(url, fpath, msg_q))
timer = threading.Timer(timeout, timeout_callback, [dt])
dt.daemon = True
dt.start()
timer.start()
dt.join()
timer.cancel()
msg = 'download timeout'
try:
msg = msg_q.get_nowait()
except Exception as error:
pass
msg_collector['message'] = msg
if msg == '200':
return True
else:
return False
def download_func(url, filename, msg_q):
try:
f = urllib2.urlopen(url)
if f.code == 200:
with open(filename, 'wb') as tgfile:
tgfile.write(f.read())
f.close()
except Exception as error:
print str(error)
msg_q.put_nowait(str(error))
else:
msg_q.put_nowait(str(f.code))
用自带的python库去下载文件,超时后停止下载
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...