base32j

Base32 exclude letter i j l o, without padding.


License
MIT
Install
pip install base32j==0.0.1

Documentation

Base32j

Base32 exclude letter i j l o, without padding.
Alphabet: 0123456789abcdefghkmnpqrstuvwxyz

pip install base32j

Note: Implementation is copy from Python base64.py

Usage

>>> import base32j
>>> s = base32j.encode(b'hello world')
>>> s
'd1kqsv3f41vqywmccg'
>>> base32j.decode(s)
b'hello world'