Python method to download the file via http

1, by a method 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())

 

Guess you like

Origin www.cnblogs.com/z3286586/p/12447207.html