Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ PyRemoteZip is a pure python module to extract files from remote zip archives wi

### Usage

from pyremotezip import RemoteZip
rz = RemoteZip(<some_url_here>)
toc = rz.getTableOfContents()

# want file at pos 2
output = rz.extractFile(toc[2]['filename'])
```python
from pyremotezip import RemoteZip
rz = RemoteZip(<some_url_here>)
toc = rz.getTableOfContents()

# want file at pos 2
output = rz.extractFile(toc[2]['filename'])
```

### Contributing

Expand Down