Skip to content

Commit

Permalink
md
Browse files Browse the repository at this point in the history
  • Loading branch information
sandes committed Mar 25, 2020
1 parent a2b55fd commit d30422b
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ It was created by Buzon.io to generate a zipfly on-the-fly for download in a pyt

```python
import zipfly


# `filesystem` and `name` keys are required.
paths = [
{
'filesystem': 'file1.mp4', # in your disk
'name': 'file1.mp4', # in zip file generated
'filesystem': 'file.mp4', # From your disk
'name': 'folder/file.mp4', # This is how it will appear in the zip file
},
]

Expand All @@ -37,10 +38,12 @@ It was created by Buzon.io to generate a zipfly on-the-fly for download in a pyt
from django.http import StreamingHttpResponse
import zipfly


# `filesystem` and `name` keys are required.
paths = [
{
'filesystem': 'file1.mp4', # in your disk
'name': 'file1.mp4', # in zip file generated
'filesystem': 'file.mp4', # From your disk
'name': 'folder/file.mp4', # This is how it will appear in the zip file
},
]

Expand Down

0 comments on commit d30422b

Please sign in to comment.