Skip to main content

Simple context manager for wrapping file compression and uncompression operations.

Project description

Compander
=========

Simple context manager to wrap compression and uncompression of gzip and bzip2 files.

Example
-------

```
from compander import Compander

with Compander() as c: # Default is bz2
c.compress('uncompressed_file','compressed_file.bz2')

with Compander('bz2') as c:
c.uncompress('compressed_file.bz2','uncompressed_file')

with Compander('gz') as c:
c.compress('uncompressed_file','compressed_file.gz')

with Compander('gz') as c:
c.uncompress('compressed_file.gz','uncompressed_file')
```

Testing
-------

* python setup.py test

Installation
------------

* python setup.py install

Development
-----------

* pip install -r requirements.txt
* python setup.py test
* python setup.py develop

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

compander-0.1.tar.gz (3.4 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page