Skip to main content

Converts integers to strange number bases using customizable base definitions

Project description

python-weirdbase - Convert weird and arbitrary number bases to and from integers

Want to convert an integer to a string representation of weird number base like base36? We have you covered.

>>> import weirdbase
>>> weirdbase.int2base(12345, base=36)
'9IX'
>>> weirdbase.base2int('9IX', 36)
12345

By default, it's case-sensitive, so you can also do:

>>> weirdbase.base2int('helloThere', 62)
590996557455853334
>>> weirdbase.int2base(590996557455853334, 62)
'helloThere'

And you can convert from one weird base to another; say from base 62 to hex:

>>> weirdbase.base2base('helloThere', 62, 16)
'833A43CDEA28716'

And you can even make up your own set of digits to get weirder:

>>> weirdbase.int2base(420, base=10, chars=')!@#$%^&*(')
'$@)'
>>> weirdbase.base2int('$@)', base=10, chars=')!@#$%^&*(')
420

Installing

pip install git+https://github.com/darrenpmeyer/python-weirdbase.git

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

weirdbase-0.1.1.tar.gz (5.9 kB view hashes)

Uploaded Source

Built Distribution

weirdbase-0.1.1-py2.py3-none-any.whl (3.6 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page