Install & Compatibility
Where this runs
tested against v0.1.1 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 22.4MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 1.6s · import 0.000s · 22MB
20MB installed
● package 20MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
b58encode
✓ from based58 import b58encode
✗ from based58 import Base58
b58decode
✓ from based58 import b58decode
✗ from based58 import Base58
Alphabet
✓ from based58 import Alphabet
✗ from based58 import Base58
Encode and decode bytes using Base58.
from based58 import base58_encode, base58_decode
encoded = base58_encode(b'hello world')
print(encoded) # b'STV9KUJUjQJRyv7'
decoded = base58_decode(encoded)
print(decoded) # b'hello world'
Upgrade
Version history
0.1.1latest on PyPI · released Apr 24, 2022
Audit
Dependencies
base58optionalA commonly confused library with similar name and API. based58 is not a dependency of base58 or vice versa.