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
- Host: GitHub
- URL: https://github.com/synodriver/pysmaz2
- Owner: synodriver
- Created: 2024-01-27T07:08:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-30T04:02:21.000Z (about 2 years ago)
- Last Synced: 2024-10-11T11:26:08.764Z (over 1 year ago)
- Language: Python
- Size: 147 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
- Changelog: changename.py
Awesome Lists containing this project
README
✨ pysmaz2 ✨
The python binding for smaz2
[](https://pypi.org/project/pysmaz2/)





### 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: ...
```