Skip to content

Commit

Permalink
markdown update
Browse files Browse the repository at this point in the history
  • Loading branch information
sandes committed Mar 25, 2020
1 parent 22d8f05 commit 91fa8ff
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ It was created by Buzon.io to generate a zipfly on-the-fly for download in a pyt
```python
import zipfly

zipfly = ZipFly()
zipfly = zipfly.ZipFly()

# set comment
zipfly.set_comment("my comment")
Expand All @@ -29,6 +29,7 @@ It was created by Buzon.io to generate a zipfly on-the-fly for download in a pyt
```python

from django.http import StreamingHttpResponse
import zipfly

paths = [
{
Expand All @@ -45,7 +46,7 @@ It was created by Buzon.io to generate a zipfly on-the-fly for download in a pyt

# paths is a list of maps

zipfly = ZipFly(paths=paths)
zipfly = zipfly.ZipFly(paths=paths)
z = zipfly.generator()


Expand All @@ -54,7 +55,7 @@ It was created by Buzon.io to generate a zipfly on-the-fly for download in a pyt
)

response['Transfer-Encoding'] = 'chunked'

return response
```

Expand Down
Binary file added dist/zipfly-1.1.tar.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions zipfly.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Metadata-Version: 1.1
Name: zipfly
Version: 1.0
Version: 1.1
Summary: ZipFly
Home-page: http://github.com/buzonIO/zipfly
Author: Buzon
Author-email: [email protected]
License: UNKNOWN
Download-URL: https://github.com/BuzonIO/zipfly/archive/v1.0.tar.gz
Download-URL: https://github.com/BuzonIO/zipfly/archive/v1.1.tar.gz
Description: UNKNOWN
Keywords: zipfly,buzon
Platform: UNKNOWN
Expand Down

0 comments on commit 91fa8ff

Please sign in to comment.