Metadata-Version: 2.2
Name: nk200
Version: 1.0.0
Summary: Unicode-based Base-200,000 numeral encoding system for ultra-high-compression of numbers.
Home-page: https://github.com/dzbuit/nk200
Author: blueradiance
Author-email: none@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-python
Dynamic: summary

# nk200

Unicode-based Base-200,000 numeral encoding system.

Each character encodes up to 200,000 values using extended Unicode blocks.  
Designed for ultra-high-compression of large numbers in machine-readable form.

## Example

```python
import nk200

value = 12345678901234567890
encoded = nk200.encode_nk200(value)
decoded = nk200.decode_nk200(encoded)

print("🔐 Encoded:", encoded)
print("🔓 Decoded:", decoded)
print("✅ Success:", value == decoded)
```
