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 · 17.8MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 1.5s · import 0.000s · 18MB
16MB installed
● package 16MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
dumps
✓ from base36 import dumps
✗ from base36 import encode
loads
✓ from base36 import loads
✗ from base36 import decode
Basic usage: encode an integer to a base36 string and decode it back.
from base36 import encode, decode
# Encode integer to base36 string
encoded = encode(123456789)
print(encoded) # Output: '21i3v9'
# Decode base36 string back to integer
decoded = decode('21i3v9')
print(decoded) # Output: 123456789
Upgrade
Version history
0.1.1latest on PyPI · released Dec 7, 2014
Audit
Dependencies
No dependency data recorded yet.