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

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM