Skip to content

Happy-Algorithms-League/python-dicthash

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

Python3.6 Python3.7 Python3.8 Documentation PyPI version fury.io GPL license

Code status

Build Status Coverage Status Checked with mypy

About

Generate portable md5 hashes from (arbitrarily nested) dictionaries.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages