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

 

posted @ 2020-03-09 10:40  K_Code  阅读(4796)  评论(0编辑  收藏  举报