摘要:
import urllib.request import gevent from gevent import monkey monkey.patch_all() def downloader(img_name, img_url): req = urllib.request.urlopen(img_url) img_content = req.read() with ... 阅读全文
posted @ 2018-10-22 00:59
胡小易
阅读(440)
评论(0)
推荐(0)