Skip to content

artisanofcode/python-zbase32

Repository files navigation

zbase32

A human-oriented base-32 encoding.

🛠 Installing

poetry

poetry add python-zbase32

pip

pip install python-zbase32

🎓 Usage

>>> import zbase32
>>> zbase32.encode(b"asdasd")
'cf3seamuco'
>>> zbase32.decode("cf3seamu")
b"asdas"

🔧 Development

Command Description
make bootstrap install project dependencies
make ci run continuous integration tasks
make console open a repl console
make format format all source files
make setup setup the project after a git clone
make test run the applications test suite
make update update the project after a git pull

⚖️ Licence

This project is licensed under the MIT licence.

All documentation and images are licenced under the Creative Commons Attribution-ShareAlike 4.0 International License.

📝 Meta

This project uses Semantic Versioning.