https://github.com/lebedov/xxh
Python bindings for xxHash non-cryptographic hash algorithm
https://github.com/lebedov/xxh
hash python xxhash
Last synced: 5 months ago
JSON representation
Python bindings for xxHash non-cryptographic hash algorithm
- Host: GitHub
- URL: https://github.com/lebedov/xxh
- Owner: lebedov
- License: other
- Created: 2014-07-28T00:44:52.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2019-09-17T18:09:22.000Z (about 6 years ago)
- Last Synced: 2024-11-07T15:56:26.054Z (11 months ago)
- Topics: hash, python, xxhash
- Language: C
- Homepage:
- Size: 72.3 KB
- Stars: 11
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE.rst
Awesome Lists containing this project
README
.. -*- rst -*-
Python Bindings for xxHash
==========================Package Description
-------------------
This package provides a Python interface to the xxHash fast non-cryptographic
hash algorithm. Inspired by `existing Python wrappers for xxHash
`_, this package exposes both the 32 and
64-bit versions of the algorithm and leverages `Cython `_ to
provide better support for incremental updating of a hash using data
encapsulated in a range of Python container classes. The package is compatible
with Python 2.7 and later... image:: https://img.shields.io/pypi/v/xxh.svg
:target: https://pypi.python.org/pypi/xxh
:alt: Latest Version
.. image:: https://img.shields.io/pypi/dm/xxh.svg
:target: https://pypi.python.org/pypi/xxh
:alt: DownloadsQuick Start
-----------
Make sure you have `pip `_ and `Cython
`_ installed; once you do, install
the package as follows: ::pip install xxh
Development
-----------
The latest source code can be obtained from the project website at
`GitHub `_.Authors & Acknowledgements
--------------------------
See the included `AUTHORS.rst
`_ file for
more information.License
-------
This software is licensed under the `BSD License
`_.
See the included `LICENSE.rst
`_ file for
more information.