Skip to main content

Python binding for xxHash

Project description

Travis CI Build Status Appveyor Build Status Latest Version Supported Python versions License

xxhash is a Python binding for the xxHash library by Yann Collet.

Installation

$ pip install xxhash

Installing From Source

$ pip install --no-binary xxhash xxhash

Prerequisites

On Debian/Ubuntu:

$ apt-get install python-dev gcc

On CentOS/Fedora:

$ yum install python-devel gcc redhat-rpm-config

Linking to libxxhash.so

By default python-xxhash will use bundled xxHash, we can change this by specifying ENV var XXHASH_LINK_SO:

$ XXHASH_LINK_SO=1 pip install --no-binary xxhash xxhash

Usage

Module version and its backend xxHash library version can be retrieved using the module properties VERSION AND XXHASH_VERSION respectively.

>>> import xxhash
>>> xxhash.VERSION
'1.4.4'
>>> xxhash.XXHASH_VERSION
'0.7.3'

This module is hashlib-compliant, which means you can use it in the same way as hashlib.md5.

update() – update the current digest with an additional string
digest() – return the current digest value
hexdigest() – return the current digest as a string of hexadecimal digits
intdigest() – return the current digest as an integer
copy() – return a copy of the current xxhash object
reset() – reset state

md5 digest returns bytes, but the original xxh32 and xxh64 C APIs return integers. While this module is made hashlib-compliant, intdigest() is also provided to get the integer digest.

Constructors for hash algorithms provided by this module are xxh32() and xxh64().

For example, to obtain the digest of the byte string b'Nobody inspects the spammish repetition':

>>> import xxhash
>>> x = xxhash.xxh32()
>>> x.update(b'Nobody inspects')
>>> x.update(b' the spammish repetition')
>>> x.digest()
b'\xe2);/'
>>> x.digest_size
4
>>> x.block_size
16

More condensed:

>>> xxhash.xxh32(b'Nobody inspects the spammish repetition').hexdigest()
'e2293b2f'
>>> xxhash.xxh32(b'Nobody inspects the spammish repetition').digest() == x.digest()
True

An optional seed (default is 0) can be used to alter the result predictably:

>>> import xxhash
>>> xxhash.xxh64('xxhash').hexdigest()
'32dd38952c4bc720'
>>> xxhash.xxh64('xxhash', seed=20141025).hexdigest()
'b559b98d844e0635'
>>> x = xxhash.xxh64(seed=20141025)
>>> x.update('xxhash')
>>> x.hexdigest()
'b559b98d844e0635'
>>> x.intdigest()
13067679811253438005

Be careful that xxh32 takes an unsigned 32-bit integer as seed, while xxh64 takes an unsigned 64-bit integer. Although unsigned integer overflow is defined behavior, it’s better not to make it happen:

>>> xxhash.xxh32('I want an unsigned 32-bit seed!', seed=0).hexdigest()
'f7a35af8'
>>> xxhash.xxh32('I want an unsigned 32-bit seed!', seed=2**32).hexdigest()
'f7a35af8'
>>> xxhash.xxh32('I want an unsigned 32-bit seed!', seed=1).hexdigest()
'd8d4b4ba'
>>> xxhash.xxh32('I want an unsigned 32-bit seed!', seed=2**32+1).hexdigest()
'd8d4b4ba'
>>>
>>> xxhash.xxh64('I want an unsigned 64-bit seed!', seed=0).hexdigest()
'd4cb0a70a2b8c7c1'
>>> xxhash.xxh64('I want an unsigned 64-bit seed!', seed=2**64).hexdigest()
'd4cb0a70a2b8c7c1'
>>> xxhash.xxh64('I want an unsigned 64-bit seed!', seed=1).hexdigest()
'ce5087f12470d961'
>>> xxhash.xxh64('I want an unsigned 64-bit seed!', seed=2**64+1).hexdigest()
'ce5087f12470d961'

digest() returns bytes of the big-endian representation of the integer digest:

>>> import xxhash
>>> h = xxhash.xxh64()
>>> h.digest()
b'\xefF\xdb7Q\xd8\xe9\x99'
>>> h.intdigest().to_bytes(8, 'big')
b'\xefF\xdb7Q\xd8\xe9\x99'
>>> h.hexdigest()
'ef46db3751d8e999'
>>> format(h.intdigest(), '016x')
'ef46db3751d8e999'
>>> h.intdigest()
17241709254077376921
>>> int(h.hexdigest(), 16)
17241709254077376921

Besides xxh32/xxh64 mentioned above, oneshot functions are also provided, so we can avoid allocating XXH32/64 state on heap:

xxh32_digest(bytes, seed=0)
xxh32_intdigest(bytes, seed=0)
xxh32_hexdigest(bytes, seed=0)
xxh64_digest(bytes, seed=0)
xxh64_intdigest(bytes, seed=0)
xxh64_hexdigest(bytes, seed=0)
>>> import xxhash
>>> xxhash.xxh64('a').digest() == xxhash.xxh64_digest('a')
True
>>> xxhash.xxh64('a').intdigest() == xxhash.xxh64_intdigest('a')
True
>>> xxhash.xxh64('a').hexdigest() == xxhash.xxh64_hexdigest('a')
True
>>> xxhash.xxh64_hexdigest('xxhash', seed=20141025)
'b559b98d844e0635'
>>> xxhash.xxh64_intdigest('xxhash', seed=20141025)
13067679811253438005L
>>> xxhash.xxh64_digest('xxhash', seed=20141025)
'\xb5Y\xb9\x8d\x84N\x065'
In [1]: import xxhash

In [2]: %timeit xxhash.xxh64_hexdigest('xxhash')
268 ns ± 24.1 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)

In [3]: %timeit xxhash.xxh64('xxhash').hexdigest()
416 ns ± 17.3 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)

Caveats

SEED OVERFLOW

xxh32 takes an unsigned 32-bit integer as seed, and xxh64 takes an unsigned 64-bit integer as seed. Make sure that the seed is greater than or equal to 0.

ENDIANNESS

As of python-xxhash 0.3.0, digest() returns bytes of the big-endian representation of the integer digest. It used to be little-endian.

DONT USE XXHASH IN HMAC

Though you can use xxhash as an HMAC hash function, but it’s highly recommended not to.

xxhash is NOT a cryptographic hash function, it is a non-cryptographic hash algorithm aimed at speed and quality. Do not put xxhash in any position where cryptographic hash functions are required.

CHANGELOG

v1.4.4 2020-06-20

  • Upgrade xxHash to v0.7.3

  • Stop using PEP393 deprecated APIs

  • Use XXH(32|64)_canonicalFromHash to replace u2bytes and ull2bytes

v1.4.3 2019-11-12

  • Upgrade xxHash to v0.7.2

  • Python 3.8 wheels

v1.4.2 2019-10-13

  • Fixed: setup.py fails when reading README.rst and the default encoding is not UTF-8

v1.4.1 2019-08-27

  • Fixed: xxh3.h in missing from source tarball

v1.4.0 2019-08-25

  • Upgrade xxHash to v0.7.1

v1.3.0 2018-10-21

v1.2.0 2018-07-13

  • Add oneshot functions xxh{32,64}_{,int,hex}digest

v1.1.0 2018-07-05

  • Allow input larger than 2GB

  • Release the GIL on sufficiently large input

  • Drop support for Python 3.2

v1.0.1 2017-03-02

  • Free state actively, instead of delegating it to ffi.gc

v1.0.0 2017-02-10

  • Fixed copy() segfault

  • Added CFFI variant

v0.6.3 2017-02-10

  • Fixed copy() segfault

v0.6.2 2017-02-10

  • Upgrade xxHash to v0.6.2

v0.6.1 2016-06-26

  • Upgrade xxHash to v0.6.1

v0.5.0 2016-03-02

  • Upgrade xxHash to v0.5.0

v0.4.3 2015-08-21

  • Upgrade xxHash to r42

v0.4.1 2015-08-16

  • Upgrade xxHash to r41

v0.4.0 2015-08-05

  • Added method reset

  • Upgrade xxHash to r40

v0.3.2 2015-01-27

  • Fixed some typos in docstrings

v0.3.1 2015-01-24

  • Upgrade xxHash to r39

v0.3.0 2014-11-11

  • Change digest() from little-endian representation to big-endian representation of the integer digest. This change breaks compatibility (digest() results are different).

v0.2.0 2014-10-25

  • Make this package hashlib-compliant

v0.1.3 2014-10-23

  • Update xxHash to r37

v0.1.2 2014-10-19

  • Improve: Check XXHnn_init() return value.

  • Update xxHash to r36

v0.1.1 2014-08-07

  • Improve: Can now be built with Visual C++ Compiler.

v0.1.0 2014-08-05

  • New: XXH32 and XXH64 type, which support partially update.

  • Fix: build under Python 3.4

v0.0.2 2014-08-03

  • NEW: Support Python 3

v0.0.1 2014-07-30

  • NEW: xxh32 and xxh64

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xxhash-1.4.4.tar.gz (54.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

xxhash-1.4.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl (26.4 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

xxhash-1.4.4-pp27-pypy_73-manylinux2010_x86_64.whl (26.3 kB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

xxhash-1.4.4-pp27-pypy_73-manylinux1_x86_64.whl (26.3 kB view details)

Uploaded PyPy

xxhash-1.4.4-cp38-cp38-win_amd64.whl (17.7 kB view details)

Uploaded CPython 3.8Windows x86-64

xxhash-1.4.4-cp38-cp38-win32.whl (16.9 kB view details)

Uploaded CPython 3.8Windows x86

xxhash-1.4.4-cp38-cp38-manylinux2014_aarch64.whl (212.0 kB view details)

Uploaded CPython 3.8

xxhash-1.4.4-cp38-cp38-manylinux2010_x86_64.whl (218.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

xxhash-1.4.4-cp38-cp38-manylinux2010_i686.whl (201.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

xxhash-1.4.4-cp38-cp38-manylinux1_x86_64.whl (218.0 kB view details)

Uploaded CPython 3.8

xxhash-1.4.4-cp38-cp38-manylinux1_i686.whl (201.3 kB view details)

Uploaded CPython 3.8

xxhash-1.4.4-cp38-cp38-macosx_10_9_x86_64.whl (28.8 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

xxhash-1.4.4-cp37-cp37m-win_amd64.whl (17.6 kB view details)

Uploaded CPython 3.7mWindows x86-64

xxhash-1.4.4-cp37-cp37m-win32.whl (16.8 kB view details)

Uploaded CPython 3.7mWindows x86

xxhash-1.4.4-cp37-cp37m-manylinux2014_aarch64.whl (212.6 kB view details)

Uploaded CPython 3.7m

xxhash-1.4.4-cp37-cp37m-manylinux2010_x86_64.whl (218.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

xxhash-1.4.4-cp37-cp37m-manylinux2010_i686.whl (202.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

xxhash-1.4.4-cp37-cp37m-manylinux1_x86_64.whl (218.7 kB view details)

Uploaded CPython 3.7m

xxhash-1.4.4-cp37-cp37m-manylinux1_i686.whl (202.0 kB view details)

Uploaded CPython 3.7m

xxhash-1.4.4-cp37-cp37m-macosx_10_6_intel.whl (61.6 kB view details)

Uploaded CPython 3.7mmacOS 10.6+ Intel (x86-64, i386)

xxhash-1.4.4-cp36-cp36m-win_amd64.whl (17.6 kB view details)

Uploaded CPython 3.6mWindows x86-64

xxhash-1.4.4-cp36-cp36m-win32.whl (16.8 kB view details)

Uploaded CPython 3.6mWindows x86

xxhash-1.4.4-cp36-cp36m-manylinux2014_aarch64.whl (211.8 kB view details)

Uploaded CPython 3.6m

xxhash-1.4.4-cp36-cp36m-manylinux2010_x86_64.whl (217.7 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

xxhash-1.4.4-cp36-cp36m-manylinux2010_i686.whl (201.0 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

xxhash-1.4.4-cp36-cp36m-manylinux1_x86_64.whl (217.7 kB view details)

Uploaded CPython 3.6m

xxhash-1.4.4-cp36-cp36m-manylinux1_i686.whl (201.0 kB view details)

Uploaded CPython 3.6m

xxhash-1.4.4-cp36-cp36m-macosx_10_6_intel.whl (61.6 kB view details)

Uploaded CPython 3.6mmacOS 10.6+ Intel (x86-64, i386)

xxhash-1.4.4-cp35-cp35m-win_amd64.whl (17.6 kB view details)

Uploaded CPython 3.5mWindows x86-64

xxhash-1.4.4-cp35-cp35m-win32.whl (16.8 kB view details)

Uploaded CPython 3.5mWindows x86

xxhash-1.4.4-cp35-cp35m-manylinux2014_aarch64.whl (211.6 kB view details)

Uploaded CPython 3.5m

xxhash-1.4.4-cp35-cp35m-manylinux2010_x86_64.whl (217.4 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

xxhash-1.4.4-cp35-cp35m-manylinux2010_i686.whl (200.7 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

xxhash-1.4.4-cp35-cp35m-manylinux1_x86_64.whl (217.4 kB view details)

Uploaded CPython 3.5m

xxhash-1.4.4-cp35-cp35m-manylinux1_i686.whl (200.7 kB view details)

Uploaded CPython 3.5m

xxhash-1.4.4-cp35-cp35m-macosx_10_6_intel.whl (61.6 kB view details)

Uploaded CPython 3.5mmacOS 10.6+ Intel (x86-64, i386)

xxhash-1.4.4-cp27-cp27mu-manylinux2010_x86_64.whl (216.3 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

xxhash-1.4.4-cp27-cp27mu-manylinux2010_i686.whl (199.6 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

xxhash-1.4.4-cp27-cp27mu-manylinux1_x86_64.whl (216.3 kB view details)

Uploaded CPython 2.7mu

xxhash-1.4.4-cp27-cp27mu-manylinux1_i686.whl (199.6 kB view details)

Uploaded CPython 2.7mu

xxhash-1.4.4-cp27-cp27m-win_amd64.whl (28.6 kB view details)

Uploaded CPython 2.7mWindows x86-64

xxhash-1.4.4-cp27-cp27m-win32.whl (35.1 kB view details)

Uploaded CPython 2.7mWindows x86

xxhash-1.4.4-cp27-cp27m-manylinux2010_x86_64.whl (216.3 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

xxhash-1.4.4-cp27-cp27m-manylinux2010_i686.whl (199.6 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

xxhash-1.4.4-cp27-cp27m-manylinux1_x86_64.whl (216.3 kB view details)

Uploaded CPython 2.7m

xxhash-1.4.4-cp27-cp27m-manylinux1_i686.whl (199.6 kB view details)

Uploaded CPython 2.7m

xxhash-1.4.4-cp27-cp27m-macosx_10_6_intel.whl (61.4 kB view details)

Uploaded CPython 2.7mmacOS 10.6+ Intel (x86-64, i386)

File details

Details for the file xxhash-1.4.4.tar.gz.

File metadata

  • Download URL: xxhash-1.4.4.tar.gz
  • Upload date:
  • Size: 54.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4.tar.gz
Algorithm Hash digest
SHA256 7d6df9d217977d085b8abd74b61efa40405ac416f2d8bdacc40826bd5cb1b746
MD5 0194cc926dd7676d27aba0f89da9798b
BLAKE2b-256 e4bc336b9f0c1910ca7efd0c77926f108fe4ebf9451764b434067fa2b3c276b1

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: xxhash-1.4.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 26.4 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ffec78440eb424eb95a92283e7193d3b75aa27734196a38fadd36d9d8226d6a7
MD5 01584ad5de8985d3822b4e422778b752
BLAKE2b-256 3c50ca126949c868550992562f08ec37f2e6d51263df2e978cdafe42980db09c

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-pp36-pypy36_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: xxhash-1.4.4-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 26.4 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 26ff6c985b67771fa36c2417d8e834194d9f09574fcbaf1c2ca8ad9ebc57f687
MD5 7bbea5a917e761b7cca69adedea35e8c
BLAKE2b-256 4bed3d1b08270d58540c6f11205969aad5d8c16563ac3904bc205ebb0837a70a

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: xxhash-1.4.4-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 26.3 kB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 553c0db59468290aaad4e3f4964f5e42fe61abd24ffe81529f87fc4e215f72ba
MD5 6cd992f340321a1af0c489843e990f6e
BLAKE2b-256 0c172d42aa2985a5320ced8e8a640ee265be77a9d0e5dc85e67f0df8e5960a18

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-pp27-pypy_73-manylinux1_x86_64.whl.

File metadata

  • Download URL: xxhash-1.4.4-pp27-pypy_73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 26.3 kB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-pp27-pypy_73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1697f30ab1766366efbdc1bebc20be0c737014c51b7617b08a649b076957b5ee
MD5 997094e94e4d05c09973f10eb76a5a21
BLAKE2b-256 a650bbf922b9deee21c61f6ba79881a3be12ea7a5366a713fe4761a5be624913

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 17.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/2.7.17

File hashes

Hashes for xxhash-1.4.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c757e0bd2dc775322b180bc29eead0d2a845a80079eb2153fc97afe322353bd7
MD5 0c5399ed73cfa234fbfe4dc75a4b2e7e
BLAKE2b-256 77151d7107dfec6e1a6d81b25d22459f5f8eba97517d4d1983875ec31b91777f

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 16.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/2.7.17

File hashes

Hashes for xxhash-1.4.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 407bb4180fc808c0a5aa67b980ae265c304da4a7ac114a3572772e39ba9d5c9f
MD5 ef3fe9fc5097bb1de84ae5166d22bca7
BLAKE2b-256 2e374204cc9936a17e81af2e4c6edc0031171efadc1069436af4aba5087dd7b4

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 212.0 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.5

File hashes

Hashes for xxhash-1.4.4-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4341623c859919100d7dde47eaf452a11b10cc35ebe489029f521be16819367
MD5 59014f2b2bed8e29d34ea6c0737d290a
BLAKE2b-256 84da60b322ff1ea67e889e881e1a6581f0f167b96d2c0765cf729c8fec97922a

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 218.0 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 394ab8316f7fb610ee2b844611daacf72b95b944ec37b627a2ce198400cb1b99
MD5 75b24daf5c0cdd449b8077335d1f36c2
BLAKE2b-256 1002d5c1bcab0d107d60e3442c32c63a1c82bb2d5210a5866a0c9dad6a1eeaff

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 201.3 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fb5bfc1961eb546c2a43311084da46b89b647e66a108018b81548622402bd291
MD5 0b7333a506e709c980a7c2e771fe5a1e
BLAKE2b-256 d9244fd84a3f64ed0405b28b7fd032951ab5500c764a88d265ab01f947784909

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 218.0 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1b923d381abfd750ae89b8cf50cb374dd83f9373f70af3fb08065fd88bc0631e
MD5 7e6eaf5ee544163addc68317ff53bd9e
BLAKE2b-256 5f47c84117196ad12cd699a378e3728f50fb3df251c9f3eb60020356aae0ad90

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 201.3 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 de2bef16c9aa2c01d7d700f7c530c3e7aa6262ff5594d2bf79eb8d7973d08cf3
MD5 5c8a2ba8e25a879f15a1be908fca8e1d
BLAKE2b-256 c21152649570d2333c545f2fa8b62073f84dcefaa61f350c83d4b90998714382

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 28.8 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/2.7.17

File hashes

Hashes for xxhash-1.4.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c5e7dedd887e8b0b5e79062c0904185841bd334fe30462a65b0456a020940d55
MD5 91e036a4e01a169fb5068af25c83a55f
BLAKE2b-256 e1ea3305049b149eb716b5d9782c3acb4403b6b01a74238c64871ffef3df335e

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 17.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/2.7.17

File hashes

Hashes for xxhash-1.4.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a33c540761fbef559cd589bf83b9326f1147132ada813f8f241f75b99b8aadbc
MD5 d9ab2524d250e4ea5a3b057c274e4c0d
BLAKE2b-256 340fab77c374dd5925f8b3818315fc953af4900a8bcc3739e9c57372e765edea

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp37-cp37m-win32.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 16.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/2.7.17

File hashes

Hashes for xxhash-1.4.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 6aff4aabd5a8832366f79dc9f4001116a4e286e9f7cfc8d26109e1dff0a3f9e1
MD5 1970ca5821838d849eea63ea35164012
BLAKE2b-256 b3142121f14625bdfbf7f97ee8882d69ce4255271096e1bb05bdb71a13e975ac

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 212.6 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.5

File hashes

Hashes for xxhash-1.4.4-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d2497bf52cb5c128404c95c0d2d82090162cc372a3c49dc9fee91f4c597821f
MD5 73c3fb77a4d637157197e69ae249bef5
BLAKE2b-256 08f0da4a7fd27de33d16f74472762860843d57a9f938515d03acd903ee2db6c9

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 218.7 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 09118cea99cfe1499a62c367ac529c8dc90571051eaa137b0464a58a4bf5f65d
MD5 92d65df8d4ec23e86786fa6d375f2567
BLAKE2b-256 98a5b3e1638d49154fefc13ff4576b6c04d0979514572738a9ecd2e6509a8a3f

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 202.1 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 55e564fc0cb088cbb642062037c0ca432b8243f38d562162d186cf6959cfc4c8
MD5 3587fb7e2fa2bab5b7030a58c43d1c6f
BLAKE2b-256 3ce26fc7242b7382db880539eb6e67287aeb14ccb845fe63ebb8c12fee5b31cb

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 218.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0bada61df83fd308ce2876a15843b599df057d3e4a1927328dfcac2908375ccd
MD5 a3f1cc239351a3c977b4cdf81fdf2998
BLAKE2b-256 4ee4c87425fbd87773c6697d1e506c78090fb7455fccf800ff689c2e8b58d911

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 202.0 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 2594670a5b95e71fd4726ccdb449c64ccf56d73197267229c70593ab7b01d7b5
MD5 a41e33ddd2f87fc967a782a1d40175e6
BLAKE2b-256 a768daf48c21e32f9cdb0d2fba02de11a659009725fe6a2ae07d34d0c617c845

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 61.6 kB
  • Tags: CPython 3.7m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/2.7.17

File hashes

Hashes for xxhash-1.4.4-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 63669092361961b86658c849c03c3231a2afe765a7842348a61996bd47d3087a
MD5 551d53087f68e7ed7dfb89e61da3c434
BLAKE2b-256 0b3f02d3b8afebf9881b8ca36d3286c976b2e3bd50409484ddd20ba3deb11506

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 17.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/2.7.17

File hashes

Hashes for xxhash-1.4.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 af16d7a474e6bb2a20822b314190667005899d53bd7358e1d52eed5167d82efc
MD5 702cca6493facb8b39075edf4338891b
BLAKE2b-256 5306dfb204ba0b9ccb16464bc86c7f2e9ba26575560eb7662b41f6db2a63c198

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp36-cp36m-win32.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 16.8 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/2.7.17

File hashes

Hashes for xxhash-1.4.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0de8d7159d92d7289c8ed008027177dd2559d689b0a4041eee1100a0c6ddcd10
MD5 c31788a7bb5be29b10e0149d2bc6c159
BLAKE2b-256 45b3c1668ac38515cd39654135db5008cbb77d55a177f24974d36f6095ef240d

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 211.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.5

File hashes

Hashes for xxhash-1.4.4-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa888c1d38810bd4be24698588244327951ef04e7958f01ab6a7f23b7e8432e8
MD5 dbfc9d88674078da322f70df9a455d21
BLAKE2b-256 cfee35cb4c98ba8f562f499f66b63cc75ae1dc98dcc3a1a6aa86c13f5a0def21

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 217.7 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3b4e8f7ff5da774f8016cc5e47bd019e5c01b3734e4fd23b3ec3016fc33d4842
MD5 ab2ec17c94e105228365303d489468a7
BLAKE2b-256 440e5c6388b52e514620bdaf6696fd815e44f118a3fb312e8f1b22788eeadfa0

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 201.0 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0ca2e6a729ef3ce66759aa5259171dce94426c39b572f3814734b52d5005b1c6
MD5 53adfc67447a1d1692679ff0c3e310a9
BLAKE2b-256 2ffddfa2e0d9d772911271e737c4bb8a65ede7fcb24ef2a84af57591bd99cf7d

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 217.7 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b78d9f9f2f56698b5111a9b3e7b1467821b17f6d4e7c1002f270ad221fddcaac
MD5 7a2b08b7f809a0d1bdec95f1c887ddf8
BLAKE2b-256 c43d21b65c6e5abe5eb2f576f02a4d5159334d9d2d17c575358bdf7d4df0cb52

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 201.0 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a3c0ec5a448e9007b4360f91ef0c443734660ffa92b5c3bcd86139ac16f7666d
MD5 ba4e5d7c074008b455349f2e048e48e1
BLAKE2b-256 662d8666577e27f299c5281e7bde7cea5dbcf18318a94f3b094bc56e26442832

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 61.6 kB
  • Tags: CPython 3.6m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/2.7.17

File hashes

Hashes for xxhash-1.4.4-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 6ddaff69778872d8ea378e7f62279da36233b4d0099aa9de4ced1d6e06381270
MD5 f18ab6f5b0df53e86af2a129ac669adc
BLAKE2b-256 0b608239b6c6ccb7974cbffb66e33b7a210a74243f5d25001846dd5655073725

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 17.6 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/2.7.17

File hashes

Hashes for xxhash-1.4.4-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 b6f6d54a07e45034eab74e8986b7b5adeb883440217e73f8697c5b3eb1e78586
MD5 1bcc76cc34006dcc604ff633f0f79530
BLAKE2b-256 46b9f2fda298579540f00fcf100a9a90da78844ff9e22b1e19b4d57c4e683e35

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp35-cp35m-win32.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 16.8 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/2.7.17

File hashes

Hashes for xxhash-1.4.4-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 44d2e46d3a67d00587f8b41cfc816bcc3bf29f80f7f584958ee95c49bbdb2da1
MD5 87b70f94d2dd26f36ad09e97f1b89429
BLAKE2b-256 0e31933a999d8f6001aae31660a8e6f0467f0a776bb55f3a04db21befb05d0f1

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp35-cp35m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp35-cp35m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 211.6 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.5

File hashes

Hashes for xxhash-1.4.4-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69544fc19c42d8436274fc8f2e9fe43a8792585e6b9659f2b4e2d64a6803c29c
MD5 0663480e0b258ee52deb7ce7092623f2
BLAKE2b-256 55c2f569da95d1b736ddf3a6ad29d5bcf1fc696c1dce742b8d57eb1c61fd7e18

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 217.4 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c6fe4008526a8fa833ef89fb2eea8073c06aaea1e2fba3c6356db5d23ab9bb05
MD5 bf550732c04a06c72e6dee9d7c963a6d
BLAKE2b-256 22e129766e9c422b619d635ce3028065595d69d712b0d90554604b03654a2e85

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 200.7 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4dc2bbf722b05c7e6cc135a46044eebd58c123b7c7f06fef2bd673bdd810c2ff
MD5 cc474a8de27f62dc5641ba296556d53e
BLAKE2b-256 33aca6b1dcb9778221da15da5c6ef7c200cfcb0fb3282f07c4f1cde2fb5d1891

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 217.4 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ae9e6dabef8a8e25a6473d49078e453cb3da449bd27b2bbbe2d99821b8656498
MD5 181d6e2004091a03a9611ccd578f0509
BLAKE2b-256 9097d42f1e896805f98c0e9a62d6a8fcd66077e4b2142a45bf962f54ab056ec0

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 200.7 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7e9f12ee22e09cb25ccdec4658f7fb576931c310c7afa98911ab6254e1a0b3ea
MD5 812230973b3fdbd42e588610d934aad7
BLAKE2b-256 49361b5fc17e691d6fa9c1893bca1284b2f53317fab45f4b9cefd1c8308e5ef3

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 61.6 kB
  • Tags: CPython 3.5m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/2.7.17

File hashes

Hashes for xxhash-1.4.4-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 4a9a436c9ce2e8a59133a7b95ec92c88618fb8afdf9c2ad64c4cdb4ad17acb32
MD5 5c7a7010aaea83595ed632e029f1a875
BLAKE2b-256 6e26b4a93dd7639b1a5e0368a733a958c7004acff15584896e5839b897911038

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 216.3 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 19ebe273b0f50e4bfb55d30a59c8f87a3c8160aa3b42d075c2cce806428eef07
MD5 e38b8a803e7680d10cf3b51d57b303ee
BLAKE2b-256 6b22cef059cbe2c4da0c56097621284dde87b0b23b40fb8055fbf554da017348

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 199.6 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7fb6c82ac4c4ddef7b142e7f59e00b02449e4749a58659e920132e16b51ca899
MD5 59a44ef39438dba125d0bca1df740d37
BLAKE2b-256 6afdc5462057ead4ffd2a4400f0fba7531b9dcfa36019016e7258cfab8c1ebae

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 216.3 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5098f5550a6a1ed4b41ecf0ca613b23c10647feba99dfb6c75dfb59baa41a7b2
MD5 002b60aba913a8001ca448de1eb135fa
BLAKE2b-256 e4f8521cefb396399a58703c79eba88e7104c7dccdec304c3565c0534b8993c3

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 199.6 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f2e24063187e1d87e8ffedbd941f136a627bc18a801234595b65028bd76f28f4
MD5 816f56caa4b5ba01bd1dbe6d995b79e2
BLAKE2b-256 ec75088417d304460e3f365b0c2281f65bbea05a1bf2a21bc987d66ee6c45647

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 28.6 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/2.7.17

File hashes

Hashes for xxhash-1.4.4-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 5ecb316e63b6e16d22b578c699829bcf0fbaf149365f9753733cb9a53ebc85c6
MD5 38f1e5cc3bddd32460f9397b5beba670
BLAKE2b-256 0119df15074bff35c9064d5b133872cedf400eb9509fc6787073d1a1649d6c19

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp27-cp27m-win32.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 35.1 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/2.7.17

File hashes

Hashes for xxhash-1.4.4-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 39ddc2210159695275f47e816b04ae2ed343d379bffb4b012278fe1eade4d47e
MD5 77f076d8dee0de24413d95569757b2d2
BLAKE2b-256 2b495f6373770a5406f7a8ca2911e061358d811f06abf71ee96db05b3f1e0fd0

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 216.3 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6f861e6c2ce6df10f575d4ae54f7328b8cc1ed33ac8612bdcd188ca0e91646dc
MD5 21a6e044ece59190c93e7a80d03ba2f0
BLAKE2b-256 4ad7ec799cb0aeea9fd272ce746817b9d1a427b1cc22b2acea52bdc91745a414

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 199.6 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a707f6eef957fcc6305d0e9d2fa59ce38e2a8f815d22a0edfeb3806bf587d4cf
MD5 3663ad89f0f6d649647e9120e7f5b7ac
BLAKE2b-256 eff60a7445af331c2612cbceba35635e8ff0decc6962120b05cdce79987921ff

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 216.3 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1dabed0e0e45178247ea797bea84bb5e2b988d8e10e48ad191af63a3ee699790
MD5 7e03051cab498ff136e2f22f2f7c4d85
BLAKE2b-256 93c12e1d8bce10daa654c0035f306ec318de1603353ddc5f25e68a883d9df5bf

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 199.6 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.1

File hashes

Hashes for xxhash-1.4.4-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a59339e3c0fb90dbdfb160647e93c951fa7bc5e18a7b57e6f225a78053897f13
MD5 2851656a79cc5cc44fa719e55be98c40
BLAKE2b-256 3ce5d346ee78c18242c0dcaa631cc2641648a584118b67edc04a14837537803d

See more details on using hashes here.

File details

Details for the file xxhash-1.4.4-cp27-cp27m-macosx_10_6_intel.whl.

File metadata

  • Download URL: xxhash-1.4.4-cp27-cp27m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 61.4 kB
  • Tags: CPython 2.7m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/2.7.17

File hashes

Hashes for xxhash-1.4.4-cp27-cp27m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 cbd52ee825981a4af0c4136b8daa3586576461d42968e3d175eeaaba61fff45e
MD5 b9db0bd441e3495d2b09b343160dafea
BLAKE2b-256 4e5644af893b82abbab2d8e5a8b4afa884bdd9d231f9b80ce3156c6d17c52478

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page