Jump Consistent Hash
Python and C implementation of the jump consistent hash algorithm by John Lamping and Eric Veach[1]. Tested on Python 3.10+.
Install
To install Jump Consistent Hash, simply run this simple command in your terminal of choice:
$ pip install jump-consistent-hash
The C implementation is optional but is about 10x faster than the pure Python implementation in CPython.
Usage
>>> import jump
>>> jump.hash(256, 1024)
520
If you want to use a str as a key instead of an int, you can pass it through a hash function to compute a real key. Here’s a couple of examples using Python 3:
>>> import hashlib
>>> int(hashlib.md5(b"127.0.0.1").hexdigest(), 16)
325870950296970981340734819828239218902
>>> int(hashlib.sha1(b"127.0.0.1").hexdigest(), 16)
431133456357828263809343936597625557575256328153
>>> import binascii
>>> binascii.crc32(b"127.0.0.1") & 0xffffffff
3619153832
Do not reach for the built-in hash() here. Python salts the hashes of str objects with a seed chosen per process, so the same key lands in a different bucket after every restart and in every worker of a pool, which is the opposite of what consistent hashing is for. The functions above are stable across processes and machines.
Links
Release files for jump-consistent-hash 3.6.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| jump_consistent_hash-3.6.0.tar.gz | 22.5 kB | Details |
Built distributions (wheels)
Total release size: 657.2 kB
Release files / jump_consistent_hash-3.6.0.tar.gz
| Download URL | jump_consistent_hash-3.6.0.tar.gz |
|---|---|
| Size | 22.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
3024ac318c453eddc9e1bbbe8e90ed7f7307f98461ab4091e3e4d0ef62343753
|
|
BLAKE2b-256 checksum How to use checksums |
f9e32b25f5c01e01e22aa742d579fb20be6ff8c06e6a72673952d4bdcd37d5a1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp315-cp315t-win_arm64.whl
| Download URL | jump_consistent_hash-3.6.0-cp315-cp315t-win_arm64.whl |
|---|---|
| Size | 10.9 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Windows ARM64 |
|
SHA-256 checksum How to use checksums |
9dc89c9b2ea8358fa284af378a0adb092b4461a3c62c9abd1a9434ab9ad79a39
|
|
BLAKE2b-256 checksum How to use checksums |
722c3119673e8597840621db53d233e390d5a39832a5bdf4726e0fcf223da296
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp315-cp315t-win_amd64.whl
| Download URL | jump_consistent_hash-3.6.0-cp315-cp315t-win_amd64.whl |
|---|---|
| Size | 11.3 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Windows x86-64 |
|
SHA-256 checksum How to use checksums |
f6940e431ef5611733bab0e8a482b974dead8ed190d52cdcc89b1e684fb88d5c
|
|
BLAKE2b-256 checksum How to use checksums |
2a643aace2c14d641d48504a8c789cb06c9e93533ecd60656f88b6272dcf43b5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp315-cp315t-win32.whl
| Download URL | jump_consistent_hash-3.6.0-cp315-cp315t-win32.whl |
|---|---|
| Size | 11.5 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Windows x86-32 |
|
SHA-256 checksum How to use checksums |
ea788100362d0795f56f9cdc41de61ed2c13b96305a60cfcb8d62c83661c2ede
|
|
BLAKE2b-256 checksum How to use checksums |
6493069b25fe7105e7bb94da63a38e7720b0b847dedb7062b92a90b564a901b1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp315-cp315t-musllinux_1_2_x86_64.whl
| Download URL | jump_consistent_hash-3.6.0-cp315-cp315t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 9.2 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
68ec252e592d4a6cefc171b7baa0cedc12735b3e35ca474e23e2ad969822593b
|
|
BLAKE2b-256 checksum How to use checksums |
6d8d805433debbae0fb39f2829cb19efa95bac06074d2ce8a01d7eaa7e187494
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp315-cp315t-musllinux_1_2_aarch64.whl
| Download URL | jump_consistent_hash-3.6.0-cp315-cp315t-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 9.3 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
ddfb657a8e024982c834866e4d5cfc3bc34f0c30dab61a0b016b2d96fd2b903a
|
|
BLAKE2b-256 checksum How to use checksums |
6c2a8673e793c6008064f1246daaa7136e430fa1f591f752cc47e498e88073fd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | jump_consistent_hash-3.6.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 9.6 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
082f2f94a2afab6bf458c59bb2c69f9cc16aa5db5e5edc89b85aceef93b615ae
|
|
BLAKE2b-256 checksum How to use checksums |
67cfb128ff51b058ad74156e832827c6bc177a640bb2bc40d80074cbfc877ba9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | jump_consistent_hash-3.6.0-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 9.1 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
fb350efd824b056783e9897184b39c1e06c396479035947dae4bd9f2d212a3b8
|
|
BLAKE2b-256 checksum How to use checksums |
d8ac8e1d3500b2fa45d41db79b82eeb1b028bdce2b91126826b4d22aa7724fbb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp315-cp315t-macosx_11_0_arm64.whl
| Download URL | jump_consistent_hash-3.6.0-cp315-cp315t-macosx_11_0_arm64.whl |
|---|---|
| Size | 8.7 kB |
| Tags | CPython 3.15 CPython 3.15 free-threading macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
1a3aae75df6541ecd900c34aa5c3ea575a096007ad78875356fc25788636f725
|
|
BLAKE2b-256 checksum How to use checksums |
04348069aa2b192f8c43c7e52d7a53011581df31de748c6c5c2c22196c611a72
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp315-cp315-win_arm64.whl
| Download URL | jump_consistent_hash-3.6.0-cp315-cp315-win_arm64.whl |
|---|---|
| Size | 10.9 kB |
| Tags | CPython 3.15 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
13cecedacead3bf82f2f43886cbae3b2a08211d28f41981596dd60bd39889c18
|
|
BLAKE2b-256 checksum How to use checksums |
17d6b5f16b022268bb02f649fa2aa0d438d66849177d2334c3234b5ee5f63a48
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp315-cp315-win_amd64.whl
| Download URL | jump_consistent_hash-3.6.0-cp315-cp315-win_amd64.whl |
|---|---|
| Size | 11.3 kB |
| Tags | CPython 3.15 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
e1940bb5002805c5b6f1304add30ed419889ad81c54a675ab6fc70e894cbac78
|
|
BLAKE2b-256 checksum How to use checksums |
5ae84bfb6abcbe4f751cf93f458c9d2444eb922254fd5c3f1183891a95a86f19
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp315-cp315-win32.whl
| Download URL | jump_consistent_hash-3.6.0-cp315-cp315-win32.whl |
|---|---|
| Size | 11.5 kB |
| Tags | CPython 3.15 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
1d10bea95ae008d7f103db39d31949491b96d57b511164aaef56c5953e229d68
|
|
BLAKE2b-256 checksum How to use checksums |
30d235308102c143bc7f9aa759792ad61ebbcc24dd34649b5b23cfd1b1efd869
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp315-cp315-musllinux_1_2_x86_64.whl
| Download URL | jump_consistent_hash-3.6.0-cp315-cp315-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 9.2 kB |
| Tags | CPython 3.15 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
5ccb54ab68e4ba44876574d9794e2febe4a7c49e22d3ea0e76b21f07d78ae9b0
|
|
BLAKE2b-256 checksum How to use checksums |
3081118c467b8bc441348e1f5bfea56e88bb776deeb207b8c223a7e20be06063
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp315-cp315-musllinux_1_2_aarch64.whl
| Download URL | jump_consistent_hash-3.6.0-cp315-cp315-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 9.3 kB |
| Tags | CPython 3.15 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
80c41546b5a49145da90e785dea2cd2543d25c19e1ef6ac4c5a77397a6771f83
|
|
BLAKE2b-256 checksum How to use checksums |
0ede7d095f05f1fdea4bd8cd84711fc6fdefecea51fd40e89b2bd40fdcc2124e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | jump_consistent_hash-3.6.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 9.6 kB |
| Tags | CPython 3.15 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
be7bf5cf55ecd34dafdd31feb3acaeca328f9168d700feb55da474103d726d22
|
|
BLAKE2b-256 checksum How to use checksums |
a421fbac2861cb40337ed2ca36e655dd5d0dc6ee7340942feb83ba14a6a7e626
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | jump_consistent_hash-3.6.0-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 9.1 kB |
| Tags | CPython 3.15 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
b35d97bb33aaf1d2a193b38c7817d487fe5166343552672edd9d09c7fdfb19db
|
|
BLAKE2b-256 checksum How to use checksums |
bdb9379d4e76d977f8d552e5f796e038cd0c0ca297007d58eccbdf131cf230e4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp315-cp315-macosx_11_0_arm64.whl
| Download URL | jump_consistent_hash-3.6.0-cp315-cp315-macosx_11_0_arm64.whl |
|---|---|
| Size | 8.7 kB |
| Tags | CPython 3.15 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
08c4f6c9558ecd2f50b08bf02c48d0ed435285fe3063553c9902cabb276bafc2
|
|
BLAKE2b-256 checksum How to use checksums |
5b91419c88913765b6931abade4528a485e400f7a22621e5dad3da383559b700
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp314-cp314t-win_arm64.whl
| Download URL | jump_consistent_hash-3.6.0-cp314-cp314t-win_arm64.whl |
|---|---|
| Size | 10.9 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows ARM64 |
|
SHA-256 checksum How to use checksums |
dafc29106586a6ce866d1dc40b21b200ed33d9c224ffd800141ba112dacf6d3c
|
|
BLAKE2b-256 checksum How to use checksums |
cc0c082237a46b75048a4362758a25d8568d67de9cf016aa46a12bfda7803f12
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp314-cp314t-win_amd64.whl
| Download URL | jump_consistent_hash-3.6.0-cp314-cp314t-win_amd64.whl |
|---|---|
| Size | 11.3 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows x86-64 |
|
SHA-256 checksum How to use checksums |
0999fe628f81bd70b078979b4d7632922d5baf6b6353e030079e57a3475d2713
|
|
BLAKE2b-256 checksum How to use checksums |
eca9edb219bdb8c70c1e8ca90c1b4b78e80bba35bd5dddd3d3627421c33033a7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp314-cp314t-win32.whl
| Download URL | jump_consistent_hash-3.6.0-cp314-cp314t-win32.whl |
|---|---|
| Size | 11.6 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows x86-32 |
|
SHA-256 checksum How to use checksums |
b605be2b960f8763c49a79f24d2319455a383eff458c1ab5753d1a34908f7c92
|
|
BLAKE2b-256 checksum How to use checksums |
53be301260e1301b2b1e56a2b3c450fe056d10e6063635bb5c334d08862793d2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl
| Download URL | jump_consistent_hash-3.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 9.2 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
28f034226364d7af2c191a6de7418cdf23ef474661bf19a523be8ce2a020c509
|
|
BLAKE2b-256 checksum How to use checksums |
832cc4b088590cf0c0f3ee01f373f141d9da4b60b9d0e5d24762c33b9ab2699f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl
| Download URL | jump_consistent_hash-3.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 9.3 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
53a5cc93d1e9ae66cf8705407da6c126e678ca97cc23f641b085ca5a3b45d7a2
|
|
BLAKE2b-256 checksum How to use checksums |
6d19e6f4388bbff85b7ec3d3539645266fc42f1cdd22c3a0b52cd79520c4b3e2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | jump_consistent_hash-3.6.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 9.6 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
9e3a077c995cb15fc09fdc6ad7f919853cc056116773401e80721f789cc7961b
|
|
BLAKE2b-256 checksum How to use checksums |
e59ad81c2c957e25d5d7f1c9ce54f55ee27e74ce8b6f7f090ab64230586c63b3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | jump_consistent_hash-3.6.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 9.1 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
1abf900c808b5434e28efaee46c3d7f9f5ebb361b146d0e0d39b1d244792f504
|
|
BLAKE2b-256 checksum How to use checksums |
d9d0e2cf996e01e024a14fcc1b97c44e1e0d50a4e0dc98871ab87777c0e6a5f0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp314-cp314t-macosx_11_0_arm64.whl
| Download URL | jump_consistent_hash-3.6.0-cp314-cp314t-macosx_11_0_arm64.whl |
|---|---|
| Size | 8.7 kB |
| Tags | CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
bb6f01452f86f2fab38d1227f7098f3c9c7656eaa92ba6d46c78911bcdd56ae3
|
|
BLAKE2b-256 checksum How to use checksums |
171184d4cf0f8784e1a5747d7276a188ee7014fa2e16994700d2b5569d9148dc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp314-cp314-win_arm64.whl
| Download URL | jump_consistent_hash-3.6.0-cp314-cp314-win_arm64.whl |
|---|---|
| Size | 10.9 kB |
| Tags | CPython 3.14 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
44b253599f8d6dfc7174fdc35f88568f5c29762b47dd3ee99667b1c24790373a
|
|
BLAKE2b-256 checksum How to use checksums |
08cf88b63b21b4e022180b67c00b0c1b23d763ef6001e7d0309aa098178331f3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp314-cp314-win_amd64.whl
| Download URL | jump_consistent_hash-3.6.0-cp314-cp314-win_amd64.whl |
|---|---|
| Size | 11.3 kB |
| Tags | CPython 3.14 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
690d0fd063134a5b379c40035fd0bf599b7ff11cd85dded45c20e3cb5bec44c0
|
|
BLAKE2b-256 checksum How to use checksums |
5800f68cb1b1e0214b8cd2b30e3cd5249fdc6dc409499d03b1eb94b2f1097431
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp314-cp314-win32.whl
| Download URL | jump_consistent_hash-3.6.0-cp314-cp314-win32.whl |
|---|---|
| Size | 11.5 kB |
| Tags | CPython 3.14 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
c91e43ad37edb22136de1432799bc16da45619f76b936b4d557b201cbd70c70b
|
|
BLAKE2b-256 checksum How to use checksums |
c9e170b2fa706a562e503af0e2c77bee0da849f17ea21ac1a8b8d7a03189e65d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp314-cp314-musllinux_1_2_x86_64.whl
| Download URL | jump_consistent_hash-3.6.0-cp314-cp314-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 9.2 kB |
| Tags | CPython 3.14 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
a62bcfeca8211dbfe78298125980ccf07d067b24ae0e15bf0f2f01bd008ef46a
|
|
BLAKE2b-256 checksum How to use checksums |
bb87e30aa932825156f8aa029a15727a6d156ef48a60848c8f201ecfc6b59ac3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp314-cp314-musllinux_1_2_aarch64.whl
| Download URL | jump_consistent_hash-3.6.0-cp314-cp314-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 9.3 kB |
| Tags | CPython 3.14 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
67e53e4f8f5e4ed79306a587bedf9870989437aecddf51f45e36307bf601e6f7
|
|
BLAKE2b-256 checksum How to use checksums |
ae22e22111668343bd12a7dc13b72d55c0178050f6220d77c2c5201e0f07914f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | jump_consistent_hash-3.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 9.6 kB |
| Tags | CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
373e9238b0856573732db0719a210b0df1e975b21ac2740b81f29671f3942e72
|
|
BLAKE2b-256 checksum How to use checksums |
0d2499e0e47b847d3d9252e48897c045b1d08a218a4f466aebc03dd9ad47e0b5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | jump_consistent_hash-3.6.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 9.1 kB |
| Tags | CPython 3.14 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
b469933083f1de39ea9795ce87effa9db8bb4b1e017a893663a6555e46ef1f22
|
|
BLAKE2b-256 checksum How to use checksums |
d0652581222f9ffee80327ddb2730f86e9ea11e71f9718564f0578fe506c3573
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | jump_consistent_hash-3.6.0-cp314-cp314-macosx_11_0_arm64.whl |
|---|---|
| Size | 8.7 kB |
| Tags | CPython 3.14 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
d0c93b6026de776c65c746d20f642d06f52ff21a7d3bc91b1944b3f1232525d4
|
|
BLAKE2b-256 checksum How to use checksums |
50b524cf68b90a02aa5dce8d2d892b5f05145fd4d540b121b5035f8b8d6963e8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp313-cp313-win_arm64.whl
| Download URL | jump_consistent_hash-3.6.0-cp313-cp313-win_arm64.whl |
|---|---|
| Size | 10.8 kB |
| Tags | CPython 3.13 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
7747cb953a80144672fb90b02e50984e1885fa050552a44e666bdcefd277fde6
|
|
BLAKE2b-256 checksum How to use checksums |
394eac34094f21ba9b5391010473264e79d7e7c7a17937232cc8da7320b6324c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp313-cp313-win_amd64.whl
| Download URL | jump_consistent_hash-3.6.0-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 11.1 kB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
f9e1972a9d7f23bb2abf358d6587503e03902dc3496f22cd65f7d59cafeb31cd
|
|
BLAKE2b-256 checksum How to use checksums |
c0bc6c9e65f3cb892f52f8a9949fda5729e60df35164db6ebbecee0a02712dd1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp313-cp313-win32.whl
| Download URL | jump_consistent_hash-3.6.0-cp313-cp313-win32.whl |
|---|---|
| Size | 11.4 kB |
| Tags | CPython 3.13 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
35cbce3f964edf2a16d8aa199509ac9cd0794e58f7b9608648f3afa5a13b9fd3
|
|
BLAKE2b-256 checksum How to use checksums |
6105406486c56e737779cd882946ca0f23bc8b3338c0d12a7a949ef69c5c066e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | jump_consistent_hash-3.6.0-cp313-cp313-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 9.2 kB |
| Tags | CPython 3.13 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
d947124a4ae020f4f8ec81385a700bf28ee3563b64562bffad020bdb4dd2f306
|
|
BLAKE2b-256 checksum How to use checksums |
4d87071bc59bdfb3fe2dfb68a7513cfbf3d8d9d0410c0a8de9371e781fda2978
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
| Download URL | jump_consistent_hash-3.6.0-cp313-cp313-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 9.3 kB |
| Tags | CPython 3.13 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
8c2d86dbd206243ea05bdc1bd8c39d89b2b87db7dc67c21e8bbfab0139b7aff2
|
|
BLAKE2b-256 checksum How to use checksums |
418b980581022c29a476cbe85c6c896eb3f07e1f0d9db57563074f355567ca0f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | jump_consistent_hash-3.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 9.6 kB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
96eca314b6eeca83943b453c354aa586002a75cfcc2a7f778b0e217045f3696e
|
|
BLAKE2b-256 checksum How to use checksums |
f696361e6df39c129ecad28332aba15103c9ad934b4b3c1a2f0fa648df844d62
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | jump_consistent_hash-3.6.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 9.1 kB |
| Tags | CPython 3.13 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
ba536429fd64a61bb0c3e09fb2f0a8f4840f975b77776639fe5cef1e24f506c6
|
|
BLAKE2b-256 checksum How to use checksums |
a585f431221993f366b4243dca3ce033b1a0734d4e8fc1feb0976f9526825055
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | jump_consistent_hash-3.6.0-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 8.7 kB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
f56ebb4f4d988edffd11e4172bcc20205c17ca03ed9c7dfe296bcc01d96cfb77
|
|
BLAKE2b-256 checksum How to use checksums |
3dc2d0c08fda46e25468b489c47abdc2fec3ac05122f0ca72cbbf91ec61110ec
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp312-cp312-win_arm64.whl
| Download URL | jump_consistent_hash-3.6.0-cp312-cp312-win_arm64.whl |
|---|---|
| Size | 10.8 kB |
| Tags | CPython 3.12 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
76748e4403bc5600482f521faca3d86304a45e10dbf4b1b4be4d9382c7d6b77f
|
|
BLAKE2b-256 checksum How to use checksums |
1663d448234be5f3b6c939aa57a7d54ff3dec7631e2fed9a5f94c35927568c63
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp312-cp312-win_amd64.whl
| Download URL | jump_consistent_hash-3.6.0-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 11.1 kB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
844348f5c4459b6e42a1882e9ca547a5a1d6eaedda0dba60de2e91b107630399
|
|
BLAKE2b-256 checksum How to use checksums |
c6abf9b7b3e2366a6bb3abef6b6e86f5628845c5287bd37e7578f740e6dc6f5c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp312-cp312-win32.whl
| Download URL | jump_consistent_hash-3.6.0-cp312-cp312-win32.whl |
|---|---|
| Size | 11.4 kB |
| Tags | CPython 3.12 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
e2616f0038094e56dc59f386a0cea9d7e2c97d5dc8fb8c5c0fe5f9c61f3aafe8
|
|
BLAKE2b-256 checksum How to use checksums |
e8293f0124b4960354cd153dbb785650141de61cc597c50c1c409a1d7d5a972e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | jump_consistent_hash-3.6.0-cp312-cp312-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 9.1 kB |
| Tags | CPython 3.12 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
b649b52b3edb68cfa157c23d63aa7b6d9e0610579821a558208bdaba94331ebf
|
|
BLAKE2b-256 checksum How to use checksums |
32d710de83d3598fe4bc38cf6ee16648d461d55ffc7c900cff6002a58b7d186f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
| Download URL | jump_consistent_hash-3.6.0-cp312-cp312-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 9.3 kB |
| Tags | CPython 3.12 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
cb475a925a4d7482357e9c008ed64741077ff076f3b1118b9211ceb6c979a413
|
|
BLAKE2b-256 checksum How to use checksums |
c755613bb6dd549ee0cac4fce0ab078176a77b59a8ddfec7070af18e0da336e3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | jump_consistent_hash-3.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 9.6 kB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
ebe3822c8895feed3861dad13d4b1bb15fc31c8d9ed8ff78f4cffb1f4cfeaf73
|
|
BLAKE2b-256 checksum How to use checksums |
1dc56b9906b2dda4376c8eaa4b8989bf5c846ea0e90a2e61283500cbeafbc038
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | jump_consistent_hash-3.6.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 9.1 kB |
| Tags | CPython 3.12 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
7b42e0c53f407e54a51287c075447015886d76a8f1f82c0f1acee87dd8b465b1
|
|
BLAKE2b-256 checksum How to use checksums |
cd92002f108e292d95702f41403906e33f4eaab3dcadfe6385d2b9e483ce3170
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | jump_consistent_hash-3.6.0-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 8.7 kB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
71e8f2c3c96e71fc1a5beb4320a72b58e6dab06c6e1998c820ea9133913efb3b
|
|
BLAKE2b-256 checksum How to use checksums |
3801e8c34d6686f6b4c807c3689dd78c0b2c16de94e540f494ca1d7a85a2ae04
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp311-cp311-win_arm64.whl
| Download URL | jump_consistent_hash-3.6.0-cp311-cp311-win_arm64.whl |
|---|---|
| Size | 10.8 kB |
| Tags | CPython 3.11 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
a6902c120af6ea49bb08df4e745d4c63a21802ddcea817dfec3b235710aae7f9
|
|
BLAKE2b-256 checksum How to use checksums |
17f1cd00c59a6aeaabb9df7aeb112b0d123b806a4a9841efc3cd045c092b8068
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp311-cp311-win_amd64.whl
| Download URL | jump_consistent_hash-3.6.0-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 11.1 kB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
990277c7d804452d3828e67ef84750152862e2e198132d795e62c7aab88b5842
|
|
BLAKE2b-256 checksum How to use checksums |
fce0f786c8daee6eaf85ae4308290a069b6414ab3d344659992d2d572bf01c69
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp311-cp311-win32.whl
| Download URL | jump_consistent_hash-3.6.0-cp311-cp311-win32.whl |
|---|---|
| Size | 11.4 kB |
| Tags | CPython 3.11 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
c4ee8a7290b1a394733e76452ae3a981828ea49ff0f741a9281a042e0b448b00
|
|
BLAKE2b-256 checksum How to use checksums |
8ef4acb1d23e64cde5e5ad7e110638c40e92c581b396488b1d127acb332f6f5d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | jump_consistent_hash-3.6.0-cp311-cp311-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 9.1 kB |
| Tags | CPython 3.11 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
9a0c1cf564f162a6d3242ac413b2e7f25309028e5e50a2107108f572986feb23
|
|
BLAKE2b-256 checksum How to use checksums |
209493c2bcd6c9937a3ce24657cc50ba992e186ab8d2efda453e596d07c03028
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
| Download URL | jump_consistent_hash-3.6.0-cp311-cp311-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 9.3 kB |
| Tags | CPython 3.11 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
c4e9934f96254bf6cff8a0ec7144f290fdbf06e683fe9d90f9f73b46806e1d48
|
|
BLAKE2b-256 checksum How to use checksums |
66d98ca87007fd3963ad3578a74470d464c117359bccf1d25e11cfb7b2f7a3f7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | jump_consistent_hash-3.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 9.6 kB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
ecc618ef8300f526b79721cc6bb4099073d4087b68c83664b8f5a10d2c2c3aec
|
|
BLAKE2b-256 checksum How to use checksums |
26164093f27e96cc80b0e23d9ee49f38f7ae168cbd0507703a9f81491dd22fd9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | jump_consistent_hash-3.6.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 9.1 kB |
| Tags | CPython 3.11 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
aa8c3713aa3ce5720a2ad4c54ea162ef2828125a5e7a0da1d2050abee58d962f
|
|
BLAKE2b-256 checksum How to use checksums |
2c1d41d999587177488ea19bf2322e6d97fce0ef2344116088bc4d4647a87886
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | jump_consistent_hash-3.6.0-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 8.7 kB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
a137f5e058e0b9660b2f5d5a5c7d879b1c09adb2baff88fb07ed07c868931985
|
|
BLAKE2b-256 checksum How to use checksums |
222da369d74ab8cd1d1ff66ff4533455efbf6aa5203146235236518bfa874a63
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp310-cp310-win_arm64.whl
| Download URL | jump_consistent_hash-3.6.0-cp310-cp310-win_arm64.whl |
|---|---|
| Size | 10.7 kB |
| Tags | CPython 3.10 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
417baef7cc61beeff70e42de476de5fa1dc5fbde5e50044a97ddd41feb9be233
|
|
BLAKE2b-256 checksum How to use checksums |
d99b37068acdf7e82792d82dd209a170fcc0c359cc65cb5ba24dfce4b030509a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp310-cp310-win_amd64.whl
| Download URL | jump_consistent_hash-3.6.0-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 11.1 kB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
e46b1625f6255a37d2e4543813fdd0f8123d60079a3b7ba0b9f9e7ed49a7a9b9
|
|
BLAKE2b-256 checksum How to use checksums |
307c135b4952a9c55d9efdb5a689fcfb0582e76ff8c668c2db15847dd784c3a2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp310-cp310-win32.whl
| Download URL | jump_consistent_hash-3.6.0-cp310-cp310-win32.whl |
|---|---|
| Size | 11.4 kB |
| Tags | CPython 3.10 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
87fe265e8377e14b9af0813d1d41e0d0718c0aac5513a17193a967656ff50ba7
|
|
BLAKE2b-256 checksum How to use checksums |
07935aac855a0d5bd425584ba6b00511c8dbb46253623e73f67820b0ce9822e2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | jump_consistent_hash-3.6.0-cp310-cp310-musllinux_1_2_x86_64.whl |
|---|---|
| Size | 9.1 kB |
| Tags | CPython 3.10 Linux musl 1.2+ x86-64 |
|
SHA-256 checksum How to use checksums |
db84acb67595a370f3faf761cfa4a4e458a6ce9a6f2815c918d6224242e25af3
|
|
BLAKE2b-256 checksum How to use checksums |
50ae4731f3ec4daba304c8ae909237ef7147764b4555b2c20d6c73d81afbca54
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
| Download URL | jump_consistent_hash-3.6.0-cp310-cp310-musllinux_1_2_aarch64.whl |
|---|---|
| Size | 9.3 kB |
| Tags | CPython 3.10 Linux musl 1.2+ ARM64 |
|
SHA-256 checksum How to use checksums |
c826d04d21235ab0f07d25898c904a55bfa452bdc896ec76f628135eac7aa366
|
|
BLAKE2b-256 checksum How to use checksums |
d6439256f56633030c435ed748ff3d6fdb35d653fdb32faa16e99d5c4d955b59
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
| Download URL | jump_consistent_hash-3.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl |
|---|---|
| Size | 9.6 kB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
476c0598aa08d6763b5434c2a6c85b56fc1b80e2e295816c328c021a5014870a
|
|
BLAKE2b-256 checksum How to use checksums |
4700f3e6b88a1e1bbf5f90fac772f9cd10a5c4ec1bbb538f453dd722cc6e5827
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
| Download URL | jump_consistent_hash-3.6.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl |
|---|---|
| Size | 9.1 kB |
| Tags | CPython 3.10 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 |
|
SHA-256 checksum How to use checksums |
e77eb15e5c3864ac3ed89d307611a5a0ff31e055457d95f44f4c2e9817b95004
|
|
BLAKE2b-256 checksum How to use checksums |
4b264eee5fa6d6d07213cbe9be54f7044b5f030b876c3e2285adedbece8fd778
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency logRelease files / jump_consistent_hash-3.6.0-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | jump_consistent_hash-3.6.0-cp310-cp310-macosx_11_0_arm64.whl |
|---|---|
| Size | 8.7 kB |
| Tags | CPython 3.10 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
45926ffc6dcde1e4deab156482d6de5ee6a683053bc3a767b3d97f1919493b72
|
|
BLAKE2b-256 checksum How to use checksums |
40c420b6b1fb195a19f5c390af0afd434cf934e36f4f1741b01551b869e6b14e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 2, 2026.
Transparency log