dicthash

Generate portable md5 hashes from (arbitrarily nested) dictionaries.


Keywords
hashing, hash
License
MIT
Install
pip install dicthash==0.0.1

Documentation

dicthash

Generate portable md5 hashes from (arbitrarily nested) dictionaries. These dictionaries can contain arbitrary Python and NumPy data types. The goal of the module is to provide a hash function that can be safely used across different platforms. Its main use is to generate unique identifiers for parameter dictionaries used in parameter scans of neural network simulations.

It exposes a single function to the user dicthash.generate_hash_from_dict.

It exposes a single function to the user: generate_hash_from_dict. The user can set two global parameters:

  • FLOAT_FACTOR

    To ensure consistency between different systems, the library multiplies floats with the FLOAT_FACTOR and then converts them to integers.

  • FLOOR_SMALL_FLOATS

    If the float is smaller than the inverse of the FLOAT_FACTOR, it cannot be safely converted. If FLOOR_SMALL_FLOATS is set to True, the library will round the float to zero. If set to False, it will throw an error in this case.

Python2.7 Python3.6 PyPI version fury.io GPL license

Code status

Build Status Coverage Status