Python package to hash dictionaries using both default hash and sha256.
Project description
Dict Hash
Python package to hash dictionaries using both default hash and sha256. It comes with full support for hashing Pandas & Polars DataFrame/Series objects, Numba objects and Numpy arrays.
Furthermore, the library supports objects that can be recursively hashed.
As we saw this library being used in the wild mostly to create caching libraries and wrappers, we'd like to point you to our library, Cache decorator.
How do I install this package?
As usual, just download it using pip:
pip install dict_hash
Usage examples
The package offers two functions: sha256
to generate constant sha256 hashes and dict_hash
, to generate hashes using the native hash
function.
Session hash with dict_hash
Obtain a session hash from the given dictionary.
from dict_hash import dict_hash
from random_dict import random_dict
from random import randint
d = random_dict(randint(1, 10), randint(1, 10))
my_hash = dict_hash(d)
Consistent hash with sha256
Obtain a consistent hash from the given dictionary.
from dict_hash import sha256
from random_dict import random_dict
from random import randint
d = random_dict(randint(1, 10), randint(1, 10))
my_hash = sha256(d)
Approximated hash
All of the methods shown offer the use_approximation
parameter,
which allows you to switch to a more lightweight hashing procedure
where supported, for the various supported objects. This procedure
will randomly subsample the provided objects.
Currently, we support this parameter for NumPy and Pandas objects.
from dict_hash import sha256
from random_dict import random_dict
from random import randint
# Even though the DataFrame is very big...
df = load_a_very_big_dataframe(...)
# an approximated hash is still very fast!
my_hash = sha256(
df,
use_approximation=True
)
Behavior on error
If the hashing function encounters an object that it cannot hash,
it will by default raise a NotHashableException
exception. You
can choose whether this or other options happen by setting the
behavior_on_error
parameter. You can choose between:
raise
: Raise aNotHashableException
exception.warn
: Print aNotHashableWarning
and continue hashing, setting the unhashable object to"Unhashable object"
string.ignore
: Ignore the object and continue hashing, setting the unhashable object to"Unhashable object"
string.
Recursive objects
In Python it is possible to have recursive objects, such as a dictionary that contains itself.
When you attempt to hash such an object, the hashing function will raise a RecursionError
exception,
which you can customize with the maximal_recursion
parameter, by default equal to 100
. The
RecursionError
is most commonly then handled as a NotHashableException
, and as such you can
set the behavior_on_error
parameter to handle it as you see fit.
Hashable
When handling complex objects within the dictionaries, you may need to implement the class Hashable in that object.
Here is an example:
from dict_hash import Hashable, sha256
class MyHashable(Hashable):
def __init__(self, a: int):
self._a = a
self._time = time()
def consistent_hash(self) -> str:
return sha256({
"a": self._a
})
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.