python通过http下载文件的方法
1、通过requests.get方法
import requests import os import time print(time.time()) r = requests.get("http://47.106.110.83/file.tex") with open(os.path.join(os.path.dirname(os.path.abspath("__file__")), "file.txt"), "wb") as f: f.write(r.content) print(time.time())