Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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!