base36py
is a lightweight Python library for encoding and decoding numbers between base10 and base36. It provides functions to convert both integer and floating-point numbers to base36 strings and vice versa, supporting precise fractional conversions.
- Convert integers to base36 strings.
- Convert floating-point numbers to base36 strings with adjustable precision.
- Decode base36 strings back to integers or floating-point numbers.
- Easy to use and integrate into existing projects.
You can install base36py
via pip:
pip install base36py
from base36py import encode, decode
encoded = encode(1234.5678, precision=8)
print("Encoded:", encoded) # 'yakfv9yqdp'
decoded = decode(encoded, precision=8)
print("Decoded:", decoded) # 1234.5677999999998
Please cite my library if you find it helpful in your project or research paper!
@misc{singh2024base36py,
author = {Danishjeet Singh},
title = {base36py},
year = 2024,
url = {https://github.com/DanishjeetSingh/base36py},
note = {Version 0.2.0}
}