使用協程下載多個圖片

import urllib.request import time import gevent from gevent import monkey monkey.patch_all() def down_image(url,image_name):     response = urllib.request.urlopen(url)     data = response.read()    
相關文章
相關標籤/搜索