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())

猜你喜欢

转载自www.cnblogs.com/z3286586/p/12447207.html
今日推荐