fnvhash

Pure Python FNV hash implementation


License
Other
Install
pip install fnvhash==0.1.0

Documentation

Pure Python FNV hash implementation

https://travis-ci.org/znerol/py-fnvhash.svg?branch=master https://coveralls.io/repos/github/znerol/py-fnvhash/badge.svg?branch=master

Pure Python implementation of the FNV hash family with 100% test coverage. Take a look at pyhash for use cases where performance is more important than portability.

Usage

>>> from fnvhash import fnv1a_32
>>> hex(fnv1a_32(b'foo'))
'0xa9f37ed7'

License

The software is subject to the MIT license.