Install & Compatibility
Where this runs
tested against v0.3.0 · 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 · 18.6MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 1.7s · import 0.000s · 19MB
17MB installed
● package 17MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
alphabet
✓ from bases import alphabet
✗ from bases import Alphabet
base64
✓ from bases import base64
base32
✓ from bases import base32
Import Base64Encoding, encode bytes, and decode back.
from bases import Base64Encoding
encoding = Base64Encoding()
data = b'hello world'
encoded = encoding.export(data)
print(encoded) # Output: aGVsbG8gd29ybGQ=
decoded = encoding.import_bytes(encoded)
print(decoded) # Output: b'hello world'
Upgrade
Version history
0.3.0latest on PyPI · released Dec 18, 2023
Audit
Dependencies
typing-validationrequiredRuntime type validation