-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathget_save_file_with_progress.py
41 lines (30 loc) · 1.01 KB
/
get_save_file_with_progress.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
"""Example of how to download a file in chunk using a pre-allcoated buffer
and print download progress."""
import sys
import mrequests
buf = bytearray(1024)
class ResponseWithProgress(mrequests.Response):
_total_read = 0
def readinto(self, buf, size=0):
bytes_read = super().readinto(buf, size)
self._total_read += bytes_read
print("Progress: {:.2f}%".format(self._total_read / (self._content_size * 0.01)))
return bytes_read
if len(sys.argv) > 1:
url = sys.argv[1]
if len(sys.argv) > 2:
filename = sys.argv[2]
else:
filename = url.rsplit("/", 1)[1]
else:
host = "http://httpbin.org/"
# host = "http://localhost/"
url = host + "image"
filename = "image.png"
r = mrequests.get(url, headers={b"accept": b"image/png"}, response_class=ResponseWithProgress)
if r.status_code == 200:
r.save(filename, buf=buf)
print("Image saved to '{}'.".format(filename))
else:
print("Request failed. Status: {}".format(r.status_code))
r.close()