摘要:
import requests import shutil def download_file(url, path): with requests.get(url, stream=True) as r: with open(path, 'wb') as f: shutil.copyfileobj(r 阅读全文
摘要:
import requests resp = requests.get('https://www.***.com', verify=False)调用成功但是会有如下警告信息: InsecureRequestWarning: Unverified HTTPS request is being made 阅读全文