commandline
pip install --upgrade cramjam # Requires no Python or system dependencies!
Extremely thin Python bindings to de/compression algorithms in Rust. Allows for using algorithms such as Snappy, without any system dependencies.
This is handy when being used in environments like AWS Lambda, where installing
packages like python-snappy
becomes difficult because of system level dependencies.
Available algorithms:
All available for use as:
```python
import cramjam compessed = cramjam.snappycompress(b"bytes here") cramjam.snappydecompress(compressed) b"bytes here" ```
Where the API is cramjam.<compression-variant>_compress/decompress
and only accepts
python byte
strings