Metadata-Version: 2.4
Name: azrmooenc
Version: 2.0.0
Summary: A reversible encoding library with compression and CRC32
Author: azr
License-Expression: MIT
Project-URL: Homepage, https://pypi.org/project/azrmooenc/
Keywords: encoding,moo,azrmoo,reversible-encoding
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# AzrMoo Enc v2

A reversible encoding library with compression and CRC32 checksum.

## Install

```bash
pip install azrmooenc
```

## Usage

```python
import azrmooenc

# Strings
encoded = azrmooenc.encode("Hello, World!")
decoded = azrmooenc.decode(encoded)

# Bytes
encoded = azrmooenc.encode_bytes(b"data")
decoded = azrmooenc.decode_bytes(encoded)

# With key
encoded = azrmooenc.encode("Secret", key="mykey")

# Files
azrmooenc.encode_file("photo.jpg", "photo.jpg.azr")
azrmooenc.decode_file("photo.jpg.azr", "photo.jpg")
```

## License

MIT
