--- id: xxhash version: "4.0.0" license: BSD-2-Clause license_treatment: permissive maintenance: active --- # xxhash — Python binding for xxHash License: permissive · Maintenance: active · Popularity: top 1,000 on PyPI ## Install pip install xxhash uv add xxhash poetry add xxhash ## Description python-xxhash ============= .. image:: https://github.com/ifduyue/python-xxhash/actions/workflows/test.yml/badge.svg :target: https://github.com/ifduyue/python-xxhash/actions/workflows/test.yml :alt: Github Actions Status .. image:: https://img.shields.io/pypi/v/xxhash.svg :target: https://pypi.org/project/xxhash/ :alt: Latest Version .. image:: https://img.shields.io/pypi/pyversions/xxhash.svg :target: https://pypi.org/project/xxhash/ :alt: Supported Python versions .. image:: https://img.shields.io/pypi/l/xxhash.svg :target: https://pypi.org/project/xxhash/ :alt: License .. image:: https://img.shields.io/endpoint?url=https://codspeed.io/badge.json :target: https://codspeed.io/ifduyue/python-xxhash?utm_source=badge :alt: CodSpeed .. _HMAC: http://en.wikipedia.org/wiki/Hash-based_message_authentication_code .. _xxHash: https://github.com/Cyan4973/xxHash .. _Cyan4973: https://github.com/Cyan4973 xxhash is a Python binding for the xxHash_ library by `Yann Collet`__. __ Cyan4973_ Installation ------------ .. code-block:: bash $ pip install xxhash You can also install using conda: .. code-block:: bash $ conda install... ## AI interpretation — verify before relying xxhash provides fast, non-cryptographic hashing via Python bindings to the xxHash C library, supporting xxh32, xxh64, and xxh3 algorithms with a hashlib-compatible interface. Verdict: xxhash is a mature, actively maintained binding to a widely-used fast hash library with zero known vulnerabilities, broad platform coverage via prebuilt wheels, and a stable hashlib-compatible API. Install friction is moderate due to C compilation, but wheels mitigate this for most users. Suitable for production use in applications requiring high-speed non-cryptographic hashing. [View on SkillFed](https://skillfed.io/packages/xxhash) · [View on PyPI](https://pypi.org/project/xxhash/)