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

https://github.com/synodriver/pysmaz2

python binding for smaz2
https://github.com/synodriver/pysmaz2

Last synced: about 1 year ago
JSON representation

python binding for smaz2

Awesome Lists containing this project

README

          

✨ pysmaz2 ✨

The python binding for smaz2

[![pypi](https://img.shields.io/pypi/v/pysmaz2.svg)](https://pypi.org/project/pysmaz2/)
![python](https://img.shields.io/pypi/pyversions/pysmaz2)
![implementation](https://img.shields.io/pypi/implementation/pysmaz2)
![wheel](https://img.shields.io/pypi/wheel/pysmaz2)
![license](https://img.shields.io/github/license/synodriver/pysmaz2.svg)
![action](https://img.shields.io/github/workflow/status/synodriver/pysmaz2/build%20wheel)

### install
```bash
pip install pysmaz2
```

### Usage
```python
def compress(inp: bytes, bufsize: int) -> bytes: ...
def compress_into(inp: bytes, out: bytearray) -> int: ...
def decompress(inp: bytes, bufsize: int) -> bytes: ...
def decompress_into(inp: bytes, out: bytearray) -> int: ...
```