Skip to main content

qntz

Vector quantization primitives for approximate nearest neighbor search: RaBitQ (1-8 bit), ternary quantization, bit packing, and Hamming distance. Backed by a Rust implementation.

Python bindings for the qntz Rust crate.

Install

pip install qntz

Quick start

import qntz

# RaBitQ quantization (1-8 bits per dimension)
dim = 32
quantizer = qntz.RaBitQQuantizer(dim, seed=42, total_bits=4)
vector = [float(i) * 0.1 for i in range(dim)]
qv = quantizer.quantize(vector)
query = [float(i) * 0.05 for i in range(dim)]
dist = quantizer.approximate_distance(query, qv)

# Ternary quantization ({-1, 0, +1} per dimension)
tq = qntz.TernaryQuantizer(4, threshold_high=0.3, threshold_low=-0.3, normalize=False)
a = tq.quantize([0.5, -0.5, 0.1, -0.1])
b = tq.quantize([0.5, 0.5, 0.0, -0.5])
sim = qntz.ternary_cosine_similarity(a, b)

# Bit packing and Hamming distance
packed_a = qntz.pack_binary([1, 0, 1, 0, 1, 0, 1, 0])
packed_b = qntz.pack_binary([1, 1, 1, 0, 0, 0, 1, 0])
dist = qntz.hamming_distance(packed_a, packed_b)  # 2

API

Name Description
RaBitQQuantizer Quantizer using randomized Hadamard rotation, 1-8 bits/dim
RaBitQQuantizer.fit Fit centroid from training vectors
RaBitQQuantizer.quantize Quantize a single vector, returns QuantizedVector
RaBitQQuantizer.approximate_distance Approximate Euclidean distance to a quantized vector
RaBitQQuantizer.approximate_l2_sqr Approximate squared L2 distance to a quantized vector
TernaryQuantizer Maps each dimension to {-1, 0, +1} via thresholds
TernaryQuantizer.fit Fit adaptive thresholds from training vectors
TernaryQuantizer.quantize Quantize a single vector, returns TernaryVector
pack_binary Pack 0/1 values into a compact bitfield
unpack_binary Unpack a bitfield back to one byte per bit
hamming_distance Hamming distance between two packed bit-vectors
asymmetric_inner_product f32 query vs packed 1-bit codes inner product
asymmetric_l2_squared f32 query vs packed 1-bit codes L2 squared
ternary_inner_product Inner product between two ternary vectors
ternary_cosine_similarity Cosine similarity between two ternary vectors
ternary_hamming Hamming distance between two ternary vectors
ternary_asymmetric_inner_product f32 query vs ternary codes inner product
ternary_asymmetric_cosine_distance f32 query vs ternary codes cosine distance

numpy support

All functions accept numpy arrays or Python lists. Packed outputs are numpy uint8 arrays.

License

MIT OR Apache-2.0

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

qntz-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (375.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

qntz-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (371.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

qntz-0.1.3-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (371.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

qntz-0.1.3-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (371.4 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

qntz-0.1.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (371.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

qntz-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (363.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

qntz-0.1.3-cp314-cp314-win_amd64.whl (220.1 kB view details)

Uploaded CPython 3.14Windows x86-64

qntz-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (371.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

qntz-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (364.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

qntz-0.1.3-cp314-cp314-macosx_11_0_arm64.whl (332.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

qntz-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl (335.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

qntz-0.1.3-cp313-cp313-win_amd64.whl (219.8 kB view details)

Uploaded CPython 3.13Windows x86-64

qntz-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (370.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

qntz-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (364.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

qntz-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (332.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

qntz-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl (334.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

qntz-0.1.3-cp312-cp312-win_amd64.whl (220.1 kB view details)

Uploaded CPython 3.12Windows x86-64

qntz-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (371.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

qntz-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (364.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

qntz-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (332.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

qntz-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (335.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

qntz-0.1.3-cp311-cp311-win_amd64.whl (222.3 kB view details)

Uploaded CPython 3.11Windows x86-64

qntz-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (374.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

qntz-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (370.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

qntz-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (334.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

qntz-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (338.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

qntz-0.1.3-cp310-cp310-win_amd64.whl (222.1 kB view details)

Uploaded CPython 3.10Windows x86-64

qntz-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (374.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

qntz-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (370.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

Details for the file qntz-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 169515260c7c48280c4fea3b7d0ffbe4805065a1125c3a2b6a0ad6d6fc10bb3c
MD5 298cc60e6388153b2bd23d9c7a2b56bb
BLAKE2b-256 a0d3780c05ea6e17f0d5813d222d374fb1cf02dbe7a24a1c7552eadd146300e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08abb8a7b165bd32d3be2358b53facd0aad151d1f73dca4e99f52146c0f64be4
MD5 1a5a114d0d2a686cc6b91dfa18b986ad
BLAKE2b-256 135feb81ab857aa1907d55a8bd2e673d3e838dc07528538f7ac6c9a4d28e1dd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08f061d6da8ff09c361d20dba444207589b09fe16fd9a8a84e8e7261da6bc529
MD5 6942aa90052e4a3f03f20ead5ea74a90
BLAKE2b-256 28b2a8f571419e418a95b78286047cac1e9be4de23d96590744c9ac44236af94

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a72561e4203f6ed6c1039ece12f40d1134a6041b74c0993145f729a818ad39e6
MD5 30fa7d9a1a467b65a8eea37cfc1b720e
BLAKE2b-256 46ead8c7222e299da8efdbebf6d0e92d74fcfeccd4478449aa06f01a685acd3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4c1061c2a7313f9b77bc0fd572b2743ec910fe550511576c396da268f8a24d8
MD5 e40d7478acc42d36b534dc3ab9a35094
BLAKE2b-256 23e263f24c1f303a82fb4976415a9952c3cd7bf25a731042dd51dbe75955ef1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19866ee59fc62a138cde10a7541c73ba0d28b80641ee43f21aad4567a244d877
MD5 0b9a39b5d99e574ef6c4b845b66ca89e
BLAKE2b-256 0bf9662650224c79f1d803444adf6cc72f5c8640d314b619a47dd78562fd529a

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: qntz-0.1.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 220.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qntz-0.1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 919b43ecf4b1cf67c85894c5adc3bd47f786775d63c2b3260023cd268e78d6ef
MD5 0bf84c0062aaec32079788af440f6f2e
BLAKE2b-256 b341abd40326895c0dda766f4b43255d5f2a8e62ed0dc1f1a068fde16d7c3825

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp314-cp314-win_amd64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c021b4c31fb10ecae93a91c7b81b4afb8f2c2ab202761a2b1ba40a7975a8e319
MD5 ebe39189f1218af04c27e2ff6972bd7e
BLAKE2b-256 a49d307e85674c6de89150e8103c64d8ba1b311bfa6ff85d963cd07201667c46

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1972cff53eecd9820074f50192606add87c5969cc800b2dcc341619a43a78d78
MD5 eac2952219df2ffaffb46d0fdd2278b0
BLAKE2b-256 0d79da03ae204ba0e682bfe1ae7df09ca5679350c46148da27740ad21e823ee0

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9428029edfd45a6bf48e2c49d478664613527d520c4e00e1edd5c74dc8d2cbb
MD5 c717aa644e15460fdc6adae49b3623ff
BLAKE2b-256 931ff43cca63f01960bb1a4b26213edfcdde514d1108f2fb5ea64a3db627306c

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0377aaadc53e4de9c0c897c4b42b2484ff05a216b2b9c9353d0ad76892257151
MD5 239e52810b2762408a0d1b25737989b9
BLAKE2b-256 9b8a19abc06047c2d64a77222e91f95b4b314103a852365c92cc65f5de484d42

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: qntz-0.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 219.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qntz-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ac5d05cca946c5c9339d31443616f0c4bcc9e30a84bb8432e3940cadf47bfc25
MD5 8b9939dc9e7fb04ce58dd96bfb3cff35
BLAKE2b-256 ddb10dc02df6ef0865d27443dd0f9f616e35456f088d47746a60696fa67753d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp313-cp313-win_amd64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbd23a9a666cb95fc98a22c4f076c2a1adf1afd5d50dc360fdb9b0648d6ed947
MD5 0d6d515935e7b9b8acce45cb202d9564
BLAKE2b-256 fcc179927b57b6bb4afd16c71c16a4de6542e4d09bc742562da021c41c075999

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 082d94477d93323cf4bd5138274a0a6bbbf0f15e45f1c3bf073c2a3a453f12ea
MD5 3ed8df27b140a971ac4d1648148129b9
BLAKE2b-256 3164e31b8bcbeaa5e2f6bafe9b8c461f0ab87339967f96ff244347edae025477

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0cd43a7681a98e380d289a3bb45d2b6a5d4a6a617c44b87f59a307e05fa3680b
MD5 54e75d2cb6f3a9501a3d2e997ee7b8f4
BLAKE2b-256 bcd19d6648d3e53c0846602883ed50d3695c6d6f953d00896774a00bbc454b89

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 84977fbc5fc2f59c8180460a45a5c81bb747ce55d94934195a2995a7916a0604
MD5 9533368e0a4e3eef5f77ad6362327c51
BLAKE2b-256 cef6d70085ff7bbde39741c985e182725cc260478f3e064f0c17e706cb4520de

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: qntz-0.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 220.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qntz-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 56cc4d9dab9a9bd1b0392c6a9fcedcc68cec9ae5a55437c8fbd98b7ac2df628a
MD5 1baee0bc063b15105e4d32618507cdaa
BLAKE2b-256 77cffbd118d420a58db1ac5cf5395f4975e1d0d7aee1f1cabd8081690353ba45

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp312-cp312-win_amd64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e48061135204039d5423f617e02c1069ad3776675ae0eb855f404ba8846594a7
MD5 6d7f115bf8cb2e9d21749e1808af4a45
BLAKE2b-256 8c47114c08f739ac12fa725e04aed651c090c0225f4f0f56b4e264322fc5fad3

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09a3c6defac9f09db1d10c4f74c9d355e369d6b75eec7016431848f755a01980
MD5 e5e81fd24bec0b28e78817b0244a726a
BLAKE2b-256 d4bac92bcd3c861584168025f13d804855df7097195bc0866a84cff45816b5a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d71de08d933c445b40a41fcaef7f267c42cf2c4c2998b113c4ccff66c96da4a6
MD5 028ea799d23eeed0e25be39ec3bf05de
BLAKE2b-256 a666703c55e76aeb3840d09f2a1d8248ac1762895f9023a5cc1e2827fd8d0be5

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 98b42ebcce444691942881077908562ffba34e5c369c1192cf188d91b35eaaa1
MD5 8674335ac9bdc2ce8eb5c77535f4013b
BLAKE2b-256 3c6f0d7182f7aebe705122104a3944e2f42698858ef37b71c608f2897049cd27

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: qntz-0.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 222.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qntz-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a0d2aaeef259682c21f77b084cdcd0d5709443eb2c0a77fd3aefe9f3f9c0c80f
MD5 74497b6c3eaa154e3a54ccc0d399ad96
BLAKE2b-256 97bdd233725c2f9f1c85464af1c4e1bae0cdd6a9b2c50488d571d2b985cd9368

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp311-cp311-win_amd64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2204f3e2d0987e344968d0435e8a83940477251924c3b960ea30be8f19527f9c
MD5 7975b1aff6aa3145620476bdbd03f4c2
BLAKE2b-256 36b5b4252e6b79b06aef49c30f140c11849ccd90ecdf4df325b67513a38afc6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94327e56ea8b31660838dfd6fbca25d0e4f3c57170980d309a2a2240f2eea48e
MD5 7ee7433d93c81b33344899a4485be9c2
BLAKE2b-256 470bd66d9ab8bdd45b64a461231be8acbfee578f5da6a039bd18463d9b66b3ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39bf030e6041f4877051c186f9e13faafadbfc403908cfcf58fd1e9769c59659
MD5 82182ec5f2eb985761d296e1059bbeb5
BLAKE2b-256 a0d7834202259bbf2f0b408dbfb83dfd33b9181d62d5820b650512b54e0b2ba1

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0537a28df2b76d57599f64804fc4bfae7f128db94ef0a3c0bfaabde4eedb9f1a
MD5 8ac30d4eeffe19ae4d364ca1faf7ed8c
BLAKE2b-256 62cb2e4fd1de903dd356d6ee811145542b32c20d47d68e8733890b353356fa2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: qntz-0.1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 222.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for qntz-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 023e59d580ca77ec4a7ce257965c124b42e67e3fde00892bccb3709f6034af9b
MD5 2b28d0ea28bf2d59b4f935334e1914c1
BLAKE2b-256 2f8cc6774f197514b1614f9123518cf25796e7030057a60cae3e1b9f20ef56e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp310-cp310-win_amd64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6b763e49ae8128201b73856c4a1221ff6ca2d86da7629d52b9fddf4e8dfa5af
MD5 dbbd2ca442819e6ce6d4353360ef3e19
BLAKE2b-256 76c7c186f772d08ef6fcfe67307b7bb7d1d8593d488a502ece5cacc0614aee2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file qntz-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qntz-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 647f11019d9b188fe73a8d4e25f42ca80c094cd1881afcea5bff748e079ebb74
MD5 0e332170dc9b80449c88914433f3dbac
BLAKE2b-256 d271b10bfe62bc019047c028daa374f6b3f68d5e14dcaafcfc14d8abbd1fbf20

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-pypi.yml on arclabs561/qntz

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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