Simple python tool to hash dictionaries using both default hash and sha256.
Project description
Simple python tool to hash dictionaries using both default hash and sha256.
How do I install this package?
As usual, just download it using pip:
pip install dict_hash
Tests Coverage
Since some software handling coverages sometime get slightly different results, here’s three of them:
Usage examples
The package offers two functions: sha256 to generate constant sha256 hashes and dict_hash, to generate hashes using the native hash function.
dict_hash
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)
sha256
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)
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
dict_hash-1.0.3.tar.gz
(3.2 kB
view details)
File details
Details for the file dict_hash-1.0.3.tar.gz
.
File metadata
- Download URL: dict_hash-1.0.3.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.13.0 setuptools/40.6.3 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e37dd13727cecab31d3753919a7b5d12618ec09f1e0307e0d3dc7c2f457fa293 |
|
MD5 | 493e2a02e29c2185d9b31102e7e00b22 |
|
BLAKE2b-256 | 0a2443e534ea74b42b2f4d524c9d00ec6955c03af796588232d362ffb6b29faf |