The best way to express a number in a URL.
Project description
HHC
The most compact way to encode a non-negative number in a URL.
HHC is a compact format to express a number or binary data in a URL. It uses all characters allowed in a URL -- the unreserved characters -- making it the most concise way to express a positive integer in a URL.
Format | Value | Length |
---|---|---|
Decimal | 302231454903657293676544 |
24 |
Hex | 40000000000000000000 |
20 |
Naive Base64[1] | QAAAAAAAAAAAAA%3D%3D |
20 |
Custom Base64[2] | BAAAAAAAAAAAAA |
14 |
HHC | fDpEShMz-qput |
13 |
Beyond being the pinnacle of numeral systems for URLs, HHC is also a ready to go, batteries included solution. This is unlike the most obvious alternative, base64.
HHC encoded values sort alphabetically like the numbers they represent, so you can sort a long list of HHC values from smallest to largest without first decoding them (with one caveat, see below).
HHC works for negative numbers. HHC uses a non-URL safe prefix in this case, so you may need to URL quote the result. Note that urllib.quote
escapes the tilde character (~), which is unnecessary as of RFC3986. If you use this on HHC data, you'll waste bytes. Use the provided hhc_url_quote
function instead. Non-negative HHC values don't need any URL quoting.
[1]: hhc_url_quote(base64.urlsafe_b64encode(long_to_binary(X)))
[2]: Using the base64-like encoding scheme found here.
Usage
>>> print(hhc(302231454903657293676544))
iFsGUkO.0tsxw
>>> print(hhc_to_int('iFsGUkO.0tsxw'))
302231454903657293676544
Sorting
You can sort HHC encoded values in numerical order using a standard alphabetical sort. The HHC value strings need to be of equal length for this property to hold. You can left-pad them with -
just before sorting to make them so.
The width
parameter of the hhc
function can do this padding at encoding time. It's better to pad at sort time to save bytes and so you need not predict your maximum width ahead of time.
This ordering property holds for negative numbers too (-2, -1, 0, 1, 2...).
Negative Numbers
HHC expresses negative numbers by prefixing the number with ,
(since minus is taken). This is not a URL-safe character so if you URL escape a negative number with HHC you end up with %2C
which takes up two extra characters. For this reason, HHC is not necessarily the shortest representation of a negative number.
Installation
pip install hhc
FAQ
Is HHC really better than base64 in URLs?
There are two parts to this.
First, a naïve base64 approach would be simple, but very inefficient. Take the 64 bit binary representation of your number and base64 encode it in an URL-safe manner:
>>> base64.urlsafe_b64encode(struct.pack("<Q", 10))
b'AQAAAAAAAAA='
>>> hhc(10)
'8'
Woah, that's 12 times as long as the equivalent HHC encoding.
We can do better than this naïve code (use a dynamic width binary input and strip padding). But the second part is that even if you take the time to write that, HHC is still better. Being radix 66 rather than radix 64, HHC is more compact.
>>> sum(len(hhc_url_quote(num_encode_base64(n))) for n in range(10 ** 6))
3733696
>>> sum(len(hhc_url_quote(hhc(n))) for n in range(10 ** 8))
3708084
Look at those massive savings!
What does HHC stand for?
Hexahexaconta. In IUPAC nomenclature (what you use to describe atoms in a molecule), 66 is hexahexaconta.
I originally called this numeral system "hexahexacontadecimal" to make it sound like "hexadecimal" but as amusing as I found that, it was annoying to type. Also, with the decimal suffix it was akin to saying "sixty-six-tenth" which made little sense.
With compression, couldn't I make shorter representations?
Some data is compressible, some is not. For random data, there is no lossless compression algorithm that can compress the data, and in fact on average any such algorithm would make the data longer. HHC will still be the most compact.
Tests
To run the unit tests:
nosetests --with-doctest
Changelog
3.0.2
- Fixed Python 2 compatibility.
(This was already fixed in 3.0.1 but didn't make it into the Pypi release version.)
3.0.1
- Backported
.
and..
special case handling to HHC 2.
This does not affect backwards compatibility because:
- It's disabled by default when encoding.
- Even when enabled, the output decodes to the same value as before by older versions of HHC.
3.0
- Renamed to HHC.
- Sortable by default.
- Special case
.
and..
values.
This version is not backwards compatible. Previously, there were two versions of HHC: normal and sortable. With HHC 3.0 the sortable version is now the "normal" and the old normal version is deprecated. The old normal version didn't offer any strong benefits, and added needless complexity.
To encode or decode the normal HHC 2.0, use the provided legacy methods, hhc2
and hhc2_to_int
.
2.2.1
- Fixed: pandoc accidentally required.
2.2
- Python 3 support (backwards compatible with Python 2.7).
2.1
- Fixed:
hhc(-1)
would cause an infinite loop. - New: support for negative values.
2.0
- New: sortable HHC. This variant of HHC sorts the same alphabetically as numerically for equal length strings.
- Shorter, more Pythonic method names. The main function is now simply called
hhc
, styled after Python's built inhex
function. To decode the same,hhc_to_int
is now used. import * from hexahexacontadecimal
now only imports the main functions.urlquote
was renamed tohhc_url_quote
to make it easier to differentiate from the standard library method.
1.0
Initial release.
License
Free to use and modify under the terms of the BSD open source license.
Author
Alexander Ljungberg
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file hhc-3.0.2.tar.gz
.
File metadata
- Download URL: hhc-3.0.2.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b77a9d6ab2e92205816c826dd1a25db891bef499db2acd65189aaa0e45303b0 |
|
MD5 | c430b8e72f6efcf67377362a796e6f7b |
|
BLAKE2b-256 | 58ba4e4421b31c582b48fe729d3af99e60c61979f338bd5be33e4d79a9bed061 |
File details
Details for the file hhc-3.0.2-py3-none-any.whl
.
File metadata
- Download URL: hhc-3.0.2-py3-none-any.whl
- Upload date:
- Size: 9.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e92d3ce94c9549ac2df8eac745e5c963fbdf76ce30b84ef8e5a84f8d8b936f05 |
|
MD5 | 73a5b04a9ea6f585fcb28e4dbed89d12 |
|
BLAKE2b-256 | a2beab3a2b1aa6d5c0f2d67f0ad8697cbf1c1704a87ce141010035201436ae63 |