Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/haarcuba/zipdir
zip entire directories recursively
https://github.com/haarcuba/zipdir
Last synced: about 15 hours ago
JSON representation
zip entire directories recursively
- Host: GitHub
- URL: https://github.com/haarcuba/zipdir
- Owner: haarcuba
- Created: 2018-02-06T13:46:10.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-15T21:30:16.000Z (almost 7 years ago)
- Last Synced: 2024-09-14T22:06:20.853Z (2 months ago)
- Language: Python
- Size: 1.95 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ZipDir
Zip dir is a small library for zipping directories recursively into zip files.
## Installation
$ pip install zipdir
## Usage
Either obtain the binary data
```python
zipBits = zipDirectory( '/path/to/directory' )
```or else, specify an output file
```python
zipDirectory( '/path/to/directory', outputFile = '/my/file.zip' )
```Enjoy!