Skip to main content

Vector quantization: RaBitQ (1-bit), ternary quantization, bit packing, and Hamming distance.

Project description

qntz (Python)

Python bindings for the qntz Rust crate.

Vector quantization primitives: RaBitQ (1-bit through 8-bit), ternary quantization, bit packing, and Hamming distance.

Install

pip install qntz

Usage

Bit packing and Hamming distance

import qntz

codes_a = [1, 0, 1, 0, 1, 0, 1, 0]
codes_b = [1, 1, 1, 0, 0, 0, 1, 0]

packed_a = qntz.pack_binary(codes_a)
packed_b = qntz.pack_binary(codes_b)

dist = qntz.hamming_distance(packed_a, packed_b)
# dist == 2

RaBitQ quantization

import qntz

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

import qntz

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])

hamming = qntz.ternary_hamming(a, b)
ip = qntz.ternary_inner_product(a, b)
cos = qntz.ternary_cosine_similarity(a, b)

License

MIT OR Apache-2.0

Project details


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.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

qntz-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (318.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

qntz-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (313.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

qntz-0.1.0-cp314-cp314-win_amd64.whl (172.9 kB view details)

Uploaded CPython 3.14Windows x86-64

qntz-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (318.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

qntz-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (315.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

qntz-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (284.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

qntz-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl (285.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

qntz-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (313.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

qntz-0.1.0-cp313-cp313-win_amd64.whl (172.7 kB view details)

Uploaded CPython 3.13Windows x86-64

qntz-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (318.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

qntz-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (314.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

qntz-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (284.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

qntz-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (285.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

qntz-0.1.0-cp312-cp312-win_amd64.whl (173.0 kB view details)

Uploaded CPython 3.12Windows x86-64

qntz-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (318.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

qntz-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (314.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

qntz-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (284.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

qntz-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (285.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

qntz-0.1.0-cp311-cp311-win_amd64.whl (174.9 kB view details)

Uploaded CPython 3.11Windows x86-64

qntz-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (321.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

qntz-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (317.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

qntz-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (287.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

qntz-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (288.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

qntz-0.1.0-cp310-cp310-win_amd64.whl (174.8 kB view details)

Uploaded CPython 3.10Windows x86-64

qntz-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (321.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

qntz-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (317.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

qntz-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

qntz-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (318.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

qntz-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

qntz-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (319.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

File hashes

Hashes for qntz-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3e7212bb8123f618dfc575e759d56684fc599dd36dcbe5a97a053472bc3aebb
MD5 ebe97654810f318ea5ade9dfc0f41ca2
BLAKE2b-256 134e0eba8d9b54be7ef0217de1159c81bb0869fb603fa0ca53577b786d93af56

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31cff573a08593a960c07c9c88ae14ad0b2a0ef92fdf0233854a1c826634d609
MD5 3b00189e9f57b5f37c2efa80490038d0
BLAKE2b-256 a9e2e728a100b49c62169871f571b9d8a3135edee35175e7fc057bec8f834c2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80488eb4b427d9ddf248f8294701caf9afdb5673ed172cd69a826872334ad63b
MD5 579ac9cad04010cf49ec36f9938068d4
BLAKE2b-256 9f1d4adacc81de5de1a6d5ef7ff809d41b8c289a26f82dcf84942e8de65d0ee5

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for qntz-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0430ee0270bd13b884e65731072ec2c711bef80262d8a2e744bcf81462f007d1
MD5 6bcb47d3606b6c112a846ad2c642a8d8
BLAKE2b-256 f4457b43d6d2ec3f3e81bd7185cba6155ac323b6336bbd3db85bd73521c1e21a

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9bddb24b089ca0cacded93aa4d74371dc9c7fe5614d55467280c4a6e2eff167
MD5 8c2ce3a5d5f80a55b29e65e50b43533c
BLAKE2b-256 f6b361068bd5d89cd060e10e58c3f40f8c26eebc24f1786e782357f36e5c8ef1

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14b47abe53dac0786ec25d132d3fe68f7ada7770886334907ca7a5118520ece6
MD5 084ce5d878ca425244703d169a607edc
BLAKE2b-256 ea7968b5aca5b1415577656a116c0eeeb2ebfc0e8d5e876b40af05632b8efc5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9e9fd08c588dc4526a5805429042924c8fdcf16e6fbc7c2d998c3147c829154
MD5 e3088526644d06d361e745486b848cd7
BLAKE2b-256 06fc754a9412d869f0af4e93abb5edcb0b30e484c0c2b737b4bcd29d4c24672a

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f2d5b9ca76e31afad9cef66215d2b3b9e603415f4ed3dc94aea526660aa6dd0c
MD5 9a310a43ab6ad5cd84518ed7aa1cc593
BLAKE2b-256 87f61151641f1e859bb16c8fb373d9712da5161bbd464b579f9f66d4c0faaf80

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 88f43ef39aecfc4d45b217c1357deac6973a70e24beafa76ac87c3fd3a789d1e
MD5 d30d52cbbdf23ac2c0d047a4788b72b5
BLAKE2b-256 abefc40d24c455c9302d26a80a48f846d0f353ed16f00c48a31e2a6a7a64d5fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-cp313-cp313t-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.0-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for qntz-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 67b8e1baa5f333d6232459a899e92a51308f6a4d9916d307507a29ecf33ef0d1
MD5 0cecb007a94d9fe48aac41c6554b0b88
BLAKE2b-256 ed6a58d2a924c3a0ea82de5db319217ee3f36572da637db048dc37a6ae2c6acd

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df97fc367b52a7e6f65fb17cef1ac1b207bc3b4e2e3982a8cf0c817b99f13042
MD5 cc6f29301bfef71f1d50527422062a5d
BLAKE2b-256 94100b11617408f8afe13b7f05c0b1cef812a84b0638e6433318f90ae7ccab5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ab64fbcfe8d4eae97441b05e20da76d7fe9e805d67854dbfed709b28c3a7685
MD5 b3a8ebd6d0b91f7b28bfc119540a38ca
BLAKE2b-256 5e060769d5f28da4f024c059d5596959be73b90f1d2240a6184f49705851b0a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95968ddf0a82e5b205f1b9a59b01cb8603e2392844942454296699b72c385425
MD5 92c54f8cb88197c8aab87ff6248e8fd3
BLAKE2b-256 58fa9d51f0fb9e697235e3439aff5c8265299b5bd7bd63543bdd033078f622e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f2b0275bc09fb84fc86c0d9fe586edf827c63e7646cd5afcd4099bcf35c76d0a
MD5 e701ed2b1a48a3a5dbeb72ce67e63046
BLAKE2b-256 4f04549ba0f7313b5722b2dfdb915f33cf5bfb0ea3fb1b6a21aee4f8e0dc8fdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for qntz-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d8422c566d78ea2326cc7c5851b17b72c41948180444004ff2c2c470dc59649c
MD5 93ad75619adc2fd8fb467645d4d20121
BLAKE2b-256 26409d5269fffa00c0771330e46bb2931b7c3790610156dddcc9d9ebcd3fd731

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fd705f4a46fb64aaa57af7facc1ca649060c6fd13e6471454b745687a42236b
MD5 259c66ddb28c4cb06c690212fa228eee
BLAKE2b-256 ae228290562be8528ffaf971bf2d5bd4a869a41232e3b98c19fcdac6af4e4ddd

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efe81ad87f0f0057309d19b58270b4e866b356f2acc0bd1a74042995fe83ade6
MD5 058388206803630980e2c6b75539b799
BLAKE2b-256 ab32c1dd716f546c2dcc1a31a2bb70f2f4189ef5511e2943ae16c9ccf326483e

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 871d3f26b1bb0e9a3b447a5b1295c1cd1200af30df477cdeeae9d1e33d46d09c
MD5 fe0b1edc418e1d3ad3137ec0c4dded62
BLAKE2b-256 098bac09ba3c22b69c98f5b1bf3cff343fa68a62d46a78495ae2c81d257cc742

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ffe6adef56265b8aacb275d42e3066faaec0e971f397d73c40198d4d1080ec18
MD5 502ee599462c46e8f1818c7315b81dfd
BLAKE2b-256 7afa7b14e7c9d55b2917bddb9cbbd0826c23ae780f880310e54d4426e3864e6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for qntz-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e90fa7a995c7c39b9e96e3645d685ab1781545e10db0db6b8aa212f46a96e748
MD5 a7069e45e6151e61c541c66022f7fc70
BLAKE2b-256 71bb0f96268ab1399b13691327cccc31bce61b2a6a12bde8ca64e52f9d5d3c0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5096eaf2635bbaa2b07f086d924e73ef332c24920a84253d68391896312e181f
MD5 7d940b193c43200d62339548c74e4f9a
BLAKE2b-256 7895a3c36fb141cd54e48a398848e74701ac93be0b883553709ed5f324484acc

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8ffebae6933cbb5e1884da2653e7c6b8c3fcb8b0eebc4a68dbf0de7742a88d0
MD5 fb837891f01d8936c3969eb5353d9272
BLAKE2b-256 20f41c2e7772b8da1a48b782060547df6d2cf97f3fea8ee0a5b671e4d8808844

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ee1a9ce769dd8fc0a2fb9b7dcf79a94755cec20b57774f1742e6c17bf967bd8
MD5 1c4b72ddf9a909c044e3fc96116a1e6a
BLAKE2b-256 0a674ca8e292198dadbe951a231676aac24f8391d038882a52fd7baf528a9ed3

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 263f77b15c3e9a70243eea9b5813733117c1821b08fc43914079025d9d295d03
MD5 0a1b964c8e1581dbdf8bfe2d7c31e91f
BLAKE2b-256 7d2f9dee676b22acee787e781fc517381e392f46d0d3eb64782e3bdb446c767f

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for qntz-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1d15289a4702fdb4571abb2f89a99fa083cafe65099ffdc9ff040b580defbd29
MD5 44e4903b9de41a0918b5ab481054c326
BLAKE2b-256 6c4ecdf25cc5c30890037fd51a86ce4ec631f4251c275295a8b71745842aa30a

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2146ac206a762dabb7f2fc3a37732eb2c7f97be6e464f39007eb982b520777e
MD5 4e4342060b20af4ab4571143566037f6
BLAKE2b-256 7473819fbebacceea5e992927d97daf4bc0998630752c14d1efc81ab08093d78

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5aff27455b68f7fb5a91d9afa4c7583384a22f7f3673ea2ed6919478efe68f64
MD5 2d9d8b46b2e5edcd7a58849aa2834be0
BLAKE2b-256 a47dc7f7cf0816e94093a904fdb3547baa64185639edbed3722939c242b8e1d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-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.

File details

Details for the file qntz-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ffdb7f3b5c3e1931896c6f9e742ebeee3150f1e3523613c2a4cbcfe10e76494
MD5 d160178a7c020f99cf48bbcf0b965cfe
BLAKE2b-256 c61ddc4bbf5c19a0e07f0041429dee72a811afa0c1c06eebcbf38568bead4043

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-cp39-cp39-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.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c510f74bf248bbd5c0bc361c770b49e2741047548a7fcc991ab1ec70f5fe2276
MD5 decd9334bb9e9c3d064e2149f0831d8c
BLAKE2b-256 1c719e64da9cd342e0f73625f4cc8dbf28fcdfa13ce27b3369adf2cdd133f782

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-cp39-cp39-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.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2d6978d6602553826298dbb1583ec28df97f48ee7584f6dc1633eb79daa23a6
MD5 aae08df45582a95eb908a0a61ba987b5
BLAKE2b-256 115306c027bcbad3e255ecac8e17f17968ec308df36520e693caa7cdbda2fc8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-cp38-cp38-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.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for qntz-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6192734625a9f85b3698398658717a8686928b5d30fb407cb223678e46be9a29
MD5 ca12c39f82865c574aabf9b816e9e3d5
BLAKE2b-256 5fe7f9e510a4ac882427ef2cb79bc87f8059537a3520d47e1137dee753fa5a12

See more details on using hashes here.

Provenance

The following attestation bundles were made for qntz-0.1.0-cp38-cp38-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