A base32 encoding with a sorted-order alphabet
Project description
The Dbase32 encoding is a base32 variant designed for document-oriented databases, specifically for encoding document IDs.
It uses an alphabet whose symbols are in ASCII/UTF-8 sorted order:
3456789ABCDEFGHIJKLMNOPQRSTUVWXY
This means that unlike RFC-3548 Base32 encoding, the sort-order of the encoded data will match the sort-order of the binary data.
The dbase32 package provides a high-performance C implementation of the encoding, plus a pure-Python fallback.
Dbase32 is licensed LGPLv3+, requires Python 3.4 or newer, and fully supports Python 3.5.
Examples
Encoding and decoding:
>>> from dbase32 import db32enc, db32dec >>> db32enc(b'binary foo') 'FCNPVRELI7J9FUUI' >>> db32dec('FCNPVRELI7J9FUUI') b'binary foo'
Validation:
>>> from dbase32 import isdb32, check_db32 >>> isdb32('../very/naughty/') False >>> check_db32('../very/naughty/') Traceback (most recent call last): ... ValueError: invalid Dbase32: '../very/naughty/'
Generating 120-bit Dbase32-encoded random IDs:
>>> from dbase32 import random_id >>> random_id() 'FOLQCPOFDVADYMVGQDI49Y7F' >>> random_id() 'IFL63RNSQ9NN5ANMUQD6BQSJ'
Dbase32 resources
A Novacut component
Dbase32 is being developed as part of the Novacut project. Packages are available for Ubuntu in the Novacut Stable Releases PPA and the Novacut Daily Builds PPA.
If you have questions or need help getting started with Dbase32, please stop by the #novacut IRC channel on freenode.
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
File details
Details for the file dbase32-1.7.0.tar.gz
.
File metadata
- Download URL: dbase32-1.7.0.tar.gz
- Upload date:
- Size: 60.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99db0122fdc5a5867111350cd4b452378a7fd1acb2faf142acd1029ed51b4efc |
|
MD5 | 92857933293b3c15ce09fa394cb7cbe7 |
|
BLAKE2b-256 | ccd95d817ac8a03526680e36a5db4fba2612f0ecbfb7e859c060b11b42c4b91f |