tonyseek / python-base36

Yet another implementation for the positional numeral system using 36 as the radix

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Coverage Status PyPI Version Wheel Status

Base36 in Python

Yet another implementation for the positional numeral system using 36 as the radix.

Installation

pip install base36

Usage

import base36

assert base36.dumps(19930503) == 'bv6h3'
assert base36.loads('bv6h3') == 19930503

Issues

If you want to report bugs or request features, please create issues on GitHub Issues.

Contributes

You can send a pull reueqst on GitHub.

About

Yet another implementation for the positional numeral system using 36 as the radix

License:MIT License


Languages

Language:Python 100.0%