Metadata-Version: 2.4
Name: XNOR_module
Version: 0.2.3
Summary: Custom encoding/decoding module with CV format and base64
Author-email: Your Name <you@example.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# XNOR_module

Version 0.2.2
update date 1/2/2026

A Python module for encoding and decoding text with a custom CV format and Base64 and more.

## Example

```python
from XNOR_module import encode_via_64Xcv, decode_via_64Xcv

encoded = encode_via_64Xcv("Hello", 123)
print(encoded)

decoded = decode_via_64Xcv(encoded, 123)
print(decoded)
