Metadata-Version: 2.4
Name: nk10
Version: 0.1.1
Summary: ✨ One-function nk10 encoder/decoder using Hangul syllables (base-10000)
Home-page: https://github.com/dzbuit/nk10
Author: blueradiance
Author-email: your@email.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
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: license
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# nk10

✨ One-function nk10 encoder/decoder using Hangul syllables (base-10000)  
**nk10 – Number Kilo 10 Numeric system (만진수)**

---

## Install

```bash
pip install nk10
```

## Usage

```python
import nk10

nk10(123456)     # → '각갛' 등 한글 조합 문자열
nk10('각갛')     # → 123456
```

## Concept

- Pass `int` → returns nk10 Hangul string.
- Pass `str` → returns original integer.
- Based on Unicode range U+AC00 ~ U+AC00+9999 ('가' ~ ).
- Lexicographically sortable & compact.

## License

MIT
