You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,13 +16,13 @@ This module provides a way to access single members of a zip file archive withou
16
16
17
17
To download the content, this library rely on the `requests` module. The constructor interface matches the function `requests.get` module.
18
18
19
-
***url**: Url where the zip file is located *(required)*.
19
+
***url**: URL where the zip file is located *(required)*.
20
20
***auth**: authentication credentials.
21
21
***headers**: headers to pass to the request.
22
22
***timeout**: timeout for the request.
23
23
***verify**: enable/disable certificate verification or set custom certificates location.
24
-
* ... Please look at the [requests](http://docs.python-requests.org/en/master/user/quickstart/#make-a-request) documentation for futher usage details.
25
-
***initial\_buffer\_size**: How much data (in bytes) to fetch during the first connection to download the zip file central directory. If your zip file conteins a lot of files, would be a good idea to increase this parameter in order to avoid the need for further remote requests. *Default: 64kb*.
24
+
* ... Please look at the [requests](http://docs.python-requests.org/en/master/user/quickstart/#make-a-request) documentation for further usage details.
25
+
***initial\_buffer\_size**: How much data (in bytes) to fetch during the first connection to download the zip file central directory. If your zip file contains a lot of files, would be a good idea to increase this parameter in order to avoid the need for further remote requests. *Default: 64kb*.
26
26
***session**: a custom session object to use for the request.
27
27
***support_suffix_range**: You can set this attribute to `False` if the remote server doesn't support suffix range
28
28
(negative offset). Notice that this option will use one more HEAD request to fetch the content length.
@@ -68,7 +68,7 @@ with RemoteZip('http://.../myfile.zip') as zip:
68
68
69
69
70
70
#### Download a member
71
-
The following example will extract the file `somefile.txt` from the archive stored at the url`http://.../myfile.zip`.
71
+
The following example will extract the file `somefile.txt` from the archive stored at the URL`http://.../myfile.zip`.
0 commit comments