We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6d275b commit 751a0d5Copy full SHA for 751a0d5
1 file changed
README.md
@@ -57,8 +57,8 @@ Print all members part of the archive:
57
from remotezip import RemoteZip
58
59
with RemoteZip('http://.../myfile.zip') as zip:
60
- for zip_info in zip.infolist():
61
- print(zip_info.name)
+ for zip_info in zip.infolist():
+ print(zip_info.name)
62
```
63
64
@@ -69,7 +69,7 @@ The following example will extract the file `somefile.txt` from the archive stor
69
70
71
72
- zip.extract('somefile.txt')
+ zip.extract('somefile.txt')
73
74
75
#### S3 example
0 commit comments