python 批量爬取图片

python脚本批量下载图片(静态网站)

import requests   ##调用模板的声明
import re
from contextlib import closing
def requ(url):
    html=requests.get(url).text
    op=re.compile(r'

你可能感兴趣的:(python 批量爬取图片)