Multibase implementation for Python
Project description
Multibase implementation for Python
Multibase is a protocol for distinguishing base encodings and other simple string encodings, and for ensuring full compatibility with program interfaces.
It answers the question: Given data d encoded into string s, how can I tell what base d is encoded with?
Base encodings exist because transports have restrictions, use special in-band sequences, or must be human-friendly. When systems chose a base to use, it is not always clear which base to use, as there are many tradeoffs in the decision. Multibase is here to save programs and programmers from worrying about which encoding is best.
It solves the biggest problem: a program can use multibase to take input or produce output in whichever base is desired.
The important part is that the value is self-describing, letting other programs elsewhere know what encoding it is using.
Free software: MIT license
Documentation: https://py-multibase.readthedocs.io.
Python versions: Python 3.10, 3.11, 3.12, 3.13, 3.14
Installation
$ pip install py-multibase
Sample Usage
>>> # encoding a buffer
>>> from multibase import encode, decode
>>> encode('base58btc', 'hello world')
b'zStV1DL6CwTryKyV'
>>> encode('base64', 'hello world')
b'mGhlbGxvIHdvcmxk'
>>> # decoding a multibase
>>> decode('mGhlbGxvIHdvcmxk')
b'hello world'
>>> decode(b'zStV1DL6CwTryKyV')
b'hello world'
>>> decode(encode('base2', b'hello world'))
b'hello world'
>>> # Using reusable Encoder/Decoder classes
>>> from multibase import Encoder, Decoder
>>> encoder = Encoder('base64')
>>> encoded1 = encoder.encode('data1')
>>> encoded2 = encoder.encode('data2')
>>> decoder = Decoder()
>>> decoded = decoder.decode(encoded1)
>>> # Getting encoding information
>>> from multibase import get_encoding_info, list_encodings, is_encoding_supported
>>> info = get_encoding_info('base64')
>>> print(info.encoding, info.code)
base64 b'm'
>>> all_encodings = list_encodings()
>>> is_encoding_supported('base64')
True
>>> # Decode with encoding return
>>> encoding, data = decode(encoded1, return_encoding=True)
>>> print(f'Encoded with {encoding}: {data}')
Supported codecs
base2
base8
base10
base16
base16upper
base32hex
base32hexupper
base32hexpad
base32hexpadupper
base32
base32upper
base32pad
base32padupper
base32z
base36
base36upper
base58flickr
base58btc
base64
base64pad
base64url
base64urlpad
base256emoji
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file py_multibase-2.0.0.tar.gz.
File metadata
- Download URL: py_multibase-2.0.0.tar.gz
- Upload date:
- Size: 26.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58c1a264195fa1ae29ea707c6fc8196446f4bdb92e0f9a0f131e0f280b238839
|
|
| MD5 |
afd5ff07c3ad2df9a3afeef2fbd0dde1
|
|
| BLAKE2b-256 |
bc525ed393ab49df7e3b03995d3c4e53bae1e8c2ca40909cf25a41b346c09a38
|
File details
Details for the file py_multibase-2.0.0-py3-none-any.whl.
File metadata
- Download URL: py_multibase-2.0.0-py3-none-any.whl
- Upload date:
- Size: 10.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.13.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b29ce489b556134e73998a11712c406b70950812955df64084754e0774e40900
|
|
| MD5 |
73991d733b5fbefd03c22ed4ecb59178
|
|
| BLAKE2b-256 |
36c738035079d9978b32b962f996f1cccaa166ecfe38723ab4349ab32166c037
|