Skip to main content

A quatint class, for using quaternions backed by integers and half-integers (Hurwitz integers).

Project description

quatint

Exact (integer-backed) quaternion arithmetic for the Hurwitz integers.

quatint provides a fast, mypyc-friendly hurwitzint type that behaves like a small, practical numeric object: addition/subtraction/multiplication/power, norms and conjugation, plus left/right Euclidean division, left/right gcd, and deterministic factorization utilities.

Why this exists

Python’s built-in numeric types don’t provide an exact, integer-backed quaternion type—especially not one that can represent the Hurwitz order (a + b i + c j + d k) / 2 without floating point.

quatint keeps everything as integers under the hood while still letting you work with both:

  • Lipschitz integers: $a, b, c, d ∈ Z$
  • Hurwitz “half” integers: $(a + b i + c j + d k)/2$ with a parity constraint

Key features

  • Exact arithmetic (no floats required for quaternion values)
  • Hurwitz order representation with parity enforcement
  • Non-commutative multiplication
  • Reduced norm $N(q) ∈ Z$ and quaternion conjugation
  • Euclidean division (norm-Euclidean) via:
    • divmod(a, b) for left-quotient division (a = q*b + r)
    • a.rdivmod(b) (or quatint.rdivmod(a, b)) for right-quotient division (a = b*q + r)
  • Left/right gcd (gcd_left, gcd_right) built on the corresponding division
  • Deterministic factorization into content, unit, and Hurwitz primes (by prime norms)

Installation

python -m pip install quatint

This project is designed to compile cleanly with mypyc for speed (CI/test setups often ensure the compiled artifact is what’s running).

Quick start

from quatint import hurwitzint

a = hurwitzint(1, 1, 1, 1)
b = hurwitzint(2, 3, 4, 5)

print(a)         # (1+i+j+k)
print(a * b)     # (-10+6i+4j+8k)
print(b * a)     # (-10+4i+8j+6k)

Half-integers (Hurwitz elements)

Use half=True to provide numerator components of a /2 element:

from quatint import hurwitzint

h = hurwitzint(1, 3, 5, 7, half=True)
print(h)  # (1+3i+5j+7k)/2

Division (left-quotient)

divmod(a, b) defines quotient on the left:

from quatint import hurwitzint

a = hurwitzint(2, 3, 4, 53)
b = hurwitzint(1, 2, 3, 4)

q, r = divmod(a, b)
assert q * b + r == a

Right-division (right-quotient)

Use rdivmod (method or helper) to define quotient on the right:

from quatint import hurwitzint, rdivmod

a = hurwitzint(2, 3, 4, 53)
b = hurwitzint(1, 2, 3, 4)

q, r = rdivmod(a, b)
assert b * q + r == a

GCD (left and right)

Because multiplication is non-commutative, there are two natural gcd notions:

from quatint import hurwitzint

a = hurwitzint(2, 3, 4, 53)
b = hurwitzint(1, 2, 3, 4)

gl = a.gcd_left(b)    # common left divisor (a = gl*x, b = gl*y)
gr = a.gcd_right(b)   # common right divisor (a = x*gr, b = y*gr)

Factorization

Factorization returns a compact normal form:

  • content: maximal positive integer scalar dividing the element (in the Hurwitz sense)
  • unit: a norm-1 Hurwitz unit (deterministically chosen)
  • primes: Hurwitz primes (each with prime rational norm), normalized via unit migration
from quatint import hurwitzint

n = hurwitzint(2, 3, 4, 53)

fr = n.factor_right()
assert fr.prod_right() == n

fl = n.factor_left()
assert fl.prod_left() == n

Representation & guarantees

Internal representation

Values are stored in numerator units:

(A + B i + C j + D k) / 2

This means:

  • Lipschitz integers are stored with even numerators.
  • True Hurwitz half-integers are stored with odd numerators.
  • The constructor enforces the parity constraint.

Scalar coercions

int and float inputs are accepted as scalars and converted via int(...) (i.e., truncation semantics). Quaternion values themselves remain exact.

Public API (high level)

  • hurwitzint(a=0, b=0, c=0, d=0, *, half=False)
  • hurwitzint.conjugate()
  • abs(h) → reduced norm N(h) (an int)
  • divmod(a, b) → left-quotient Euclidean division
  • a.rdivmod(b) / rdivmod(a, b) → right-quotient Euclidean division
  • a.gcd_left(b) / gcd_left(a, b)
  • a.gcd_right(b) / gcd_right(a, b)
  • a.factor_left() / a.factor_right()HurwitzFactorization
  • HurwitzFactorization.prod_left() / .prod_right() / .prod()

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.

quatint-0.0.8-cp314-cp314-win_arm64.whl (104.4 kB view details)

Uploaded CPython 3.14Windows ARM64

quatint-0.0.8-cp314-cp314-win_amd64.whl (120.1 kB view details)

Uploaded CPython 3.14Windows x86-64

quatint-0.0.8-cp314-cp314-win32.whl (102.2 kB view details)

Uploaded CPython 3.14Windows x86

quatint-0.0.8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (334.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

quatint-0.0.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (317.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

quatint-0.0.8-cp314-cp314-macosx_11_0_arm64.whl (176.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

quatint-0.0.8-cp314-cp314-macosx_10_15_x86_64.whl (186.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

quatint-0.0.8-cp313-cp313-win_arm64.whl (103.4 kB view details)

Uploaded CPython 3.13Windows ARM64

quatint-0.0.8-cp313-cp313-win_amd64.whl (119.8 kB view details)

Uploaded CPython 3.13Windows x86-64

quatint-0.0.8-cp313-cp313-win32.whl (101.5 kB view details)

Uploaded CPython 3.13Windows x86

quatint-0.0.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (334.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

quatint-0.0.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (316.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

quatint-0.0.8-cp313-cp313-macosx_11_0_arm64.whl (176.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

quatint-0.0.8-cp313-cp313-macosx_10_13_x86_64.whl (186.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

quatint-0.0.8-cp312-cp312-win_arm64.whl (103.3 kB view details)

Uploaded CPython 3.12Windows ARM64

quatint-0.0.8-cp312-cp312-win_amd64.whl (119.8 kB view details)

Uploaded CPython 3.12Windows x86-64

quatint-0.0.8-cp312-cp312-win32.whl (101.9 kB view details)

Uploaded CPython 3.12Windows x86

quatint-0.0.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (337.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

quatint-0.0.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (319.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

quatint-0.0.8-cp312-cp312-macosx_11_0_arm64.whl (176.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

quatint-0.0.8-cp312-cp312-macosx_10_13_x86_64.whl (187.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

quatint-0.0.8-cp311-cp311-win_arm64.whl (102.0 kB view details)

Uploaded CPython 3.11Windows ARM64

quatint-0.0.8-cp311-cp311-win_amd64.whl (118.9 kB view details)

Uploaded CPython 3.11Windows x86-64

quatint-0.0.8-cp311-cp311-win32.whl (101.5 kB view details)

Uploaded CPython 3.11Windows x86

quatint-0.0.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (326.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

quatint-0.0.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (311.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

quatint-0.0.8-cp311-cp311-macosx_11_0_arm64.whl (175.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

quatint-0.0.8-cp311-cp311-macosx_10_9_x86_64.whl (184.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

quatint-0.0.8-cp310-cp310-win_arm64.whl (102.3 kB view details)

Uploaded CPython 3.10Windows ARM64

quatint-0.0.8-cp310-cp310-win_amd64.whl (118.7 kB view details)

Uploaded CPython 3.10Windows x86-64

quatint-0.0.8-cp310-cp310-win32.whl (101.7 kB view details)

Uploaded CPython 3.10Windows x86

quatint-0.0.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (326.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

quatint-0.0.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (313.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

quatint-0.0.8-cp310-cp310-macosx_11_0_arm64.whl (177.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

quatint-0.0.8-cp310-cp310-macosx_10_9_x86_64.whl (186.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

quatint-0.0.8-cp39-cp39-win_arm64.whl (102.2 kB view details)

Uploaded CPython 3.9Windows ARM64

quatint-0.0.8-cp39-cp39-win_amd64.whl (118.7 kB view details)

Uploaded CPython 3.9Windows x86-64

quatint-0.0.8-cp39-cp39-win32.whl (101.5 kB view details)

Uploaded CPython 3.9Windows x86

quatint-0.0.8-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (326.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

quatint-0.0.8-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (312.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

quatint-0.0.8-cp39-cp39-macosx_11_0_arm64.whl (177.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

quatint-0.0.8-cp39-cp39-macosx_10_9_x86_64.whl (186.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file quatint-0.0.8-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: quatint-0.0.8-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 104.4 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.8-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 39e6573ec98d605e3c635f54a887f55f6f07bc916ce761bc188aeac7435a3bc5
MD5 c48aa26e20efb5ca35ac9294243867ed
BLAKE2b-256 6b404471153535bce071e2089168079df73c9adf0c9e6828ae30222abe19fef1

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp314-cp314-win_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: quatint-0.0.8-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 120.1 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 quatint-0.0.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0c68874451a99ebbfcc666af9aa7a250200c5d90ad901fe3eb95864461572af4
MD5 402e65b1d8abdb11ace75d1c588b83db
BLAKE2b-256 e94c8627a4d7b6d3fd4b6b83311d866d84f778c79382798fd6d10ae31012fbe5

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp314-cp314-win_amd64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp314-cp314-win32.whl.

File metadata

  • Download URL: quatint-0.0.8-cp314-cp314-win32.whl
  • Upload date:
  • Size: 102.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.8-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b95edc232f8768f03775c62e2ad203e3b588011edea546ca3967476cab4b44cb
MD5 d48acfa130df1069629ad5df646c1df3
BLAKE2b-256 860c986c7acd329331363d7bc2a00f26486b5a66704fe9b5c3e1ae1dec9d079e

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp314-cp314-win32.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 03af5f39a87c50fc9428ea09f5593a18f05ce609b395521b6ad46324bd83b886
MD5 6b3028fdaae33fcb1be62c0657382e0b
BLAKE2b-256 268d115a786dfed6c064c87a8aa460adc27b84d2dfb1c71e75bc8f0ef3cbfd00

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01196fbc4085ea8ca12154fea569dcb6972ce68e84ec155e9877f835644eeef3
MD5 a28bf25fe89f1e5045d10111bff272cb
BLAKE2b-256 81dbcb26867c12ee21ad8b35776596c81fd65f89b872b93cf47b7b21c95e321f

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29debdef4b043f1b4573e3d465d7e673a4c77c9ce01e59aa85e71bc609faf35c
MD5 9868a0cbff1c9ef3891e2e9b7c6beebe
BLAKE2b-256 57ce10f66138e372fb9194927a65411d9a67106a40a6f6d3c808b3ddd193cc1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 15ee80f543ee03c032eb2353446ce94a9438a38e95c69774d993738b9086a424
MD5 9c97d221c6fc4a2e2106d5d7be3bf86a
BLAKE2b-256 bac5868c70523128cd168cd9cc64653c13ee97205a982481c9063c453327b14f

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: quatint-0.0.8-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 103.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.8-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 cd7da02eee3af1a26de0c6dcae5376f39f753085b1a3288964896daf2339f0de
MD5 58194a80d3083a74739768175f61d302
BLAKE2b-256 d6d948ac3a8b449c6712aec8a9fcc65693c2aa91440b43a81799fef25a9c11ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp313-cp313-win_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: quatint-0.0.8-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 119.8 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 quatint-0.0.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 58e4726b88305c8c95ee297c6f7b6d441d43844b28216df1c0e997edff3b2bd8
MD5 0c73a7393dbd4c200c164706c91b6929
BLAKE2b-256 eed244a68be3ba23118ef02246e644ed7b1219222f2a1c50aa130cc2517b24a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp313-cp313-win32.whl.

File metadata

  • Download URL: quatint-0.0.8-cp313-cp313-win32.whl
  • Upload date:
  • Size: 101.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 614176be725e2861a979672ebb65ecc7d8a8ac97e918c29f42a69edd672fb7a1
MD5 1d3957c91d380534e77f7da0663218a4
BLAKE2b-256 578d626829a00b1bddfdeffd6ab61c739f93a453fd3eae3a797c9ad24bc3085f

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp313-cp313-win32.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e232f0cdc54c43b4e504a436e7850f29b65e8556511793a365d1976d53b26bd0
MD5 79f16a6ee99ab83e732364fdb6b1a1ec
BLAKE2b-256 f25d3776466b78a714af859e4645bd4f57be2b0f12f0cdc6790bfb887ebe1bad

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bf29d75641789a093b428b2fb26fa2519afcee4c4a1968849ef69e557025dd4f
MD5 8448bba67217bac8bbb53365f7a55a9f
BLAKE2b-256 d2edb7bf57ec5fb5002dd456e710ab703556e345102900166bff270c030ea93d

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03e8df6a7922600bd97c6fd849c8e605c032f9959edba4bcdf135a1bf4201ab7
MD5 48200850362b7ca8aacde73bb9970dc8
BLAKE2b-256 4bfc0b5acfb8c5033eeb7491473d675f74a11e96152a2389d940d3d553a06605

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 740c7798ecd2bb93c591cae79783b160caf90782d678494857436a382b7e05d1
MD5 8c1f6885d364ddefec6c21595d41e66e
BLAKE2b-256 7e9ff4b145753f4a92e27099de5213571d9dac57ba7d362d2edb2e3bdeb5a158

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: quatint-0.0.8-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 103.3 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.8-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 3957d62ad1e11c69d47e1973c4c1f52e62aba91275c01aa44ebe86e3d3edc7db
MD5 2ab9d7967aa5ce13ebb79ea0625ee262
BLAKE2b-256 f4388de3ee973df9ef71945e3c74fb4050a2a4e8442dc6d8a51c06defc1de802

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp312-cp312-win_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: quatint-0.0.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 119.8 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 quatint-0.0.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 37b8a45243ae219fbf167985aa1d8e313904f2f1d71574b695bcb24253938ab4
MD5 ad6e59ced4415e7b71fafc29bc6d47f1
BLAKE2b-256 0d122017d4ff837d08248b862ec729984c37d5f3c972a3cb9cde8d724428a8e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp312-cp312-win32.whl.

File metadata

  • Download URL: quatint-0.0.8-cp312-cp312-win32.whl
  • Upload date:
  • Size: 101.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e8e5167c8989402cd2b2045d9c4c8e5da6d4375dad0dc1d256c721d6056a9ff2
MD5 3043b38a13203956c184bf761bca5a66
BLAKE2b-256 7d5b896e9173e2bef2a9cb0c1beaaed7b42a3876ff1f2af84dc361fe1df23ecf

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp312-cp312-win32.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4885bcc7acb951256d4e899daa15351660360fa28d05ebdd01e6c807dbf84277
MD5 e320ad9baaf5b5a5eacc0c27d44ce8a9
BLAKE2b-256 3ba83689dc2fa606e0a45d78b1bc2db228c29bd68f9f1883b005d94e5f50b381

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 20b366102c88d311bec0ca151646112d7700ed9aab911be37b8c3aef04e6098c
MD5 56e29ab4157c50a34c512ab8f5ff9741
BLAKE2b-256 2d8ac70da09907011339ba6a9cfbf92acf11ac1c4395f0b205498a880ef3efd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73dcaa7fe6a9ed456e5767303d2fc4b0cef041d71cb9b965cd1e41706279a2a0
MD5 68dfa7d3108b98b59dd18d1f1f5085cd
BLAKE2b-256 4527e6295bde4a255db6684a0b682af4d270067d8d04463414340494312ba8e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 400ee027f3c250206fbf8f8a73b0754f23e0b0d0d33a5ad4f04183fa39773688
MD5 8974af184836be9d21b7285b89e3a8a9
BLAKE2b-256 045e4bd3d0b42f54f7eee8f354466b48ca9c75f848c46f083c52d07aaf62597f

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: quatint-0.0.8-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 102.0 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.8-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0ce1f94085e745d15c8ab4799e951ec55214ab69f630935301247a871b3d2d08
MD5 6307d581575218a5f7167d83c6f91ee8
BLAKE2b-256 85b542a99f3b3c571511175525c5bf7b706d44cb28d5222b940b5b8b2fa577cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp311-cp311-win_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: quatint-0.0.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 118.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 quatint-0.0.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 80f7897c35808810256492b649ea2cec2133c011376de9710c50d435fa425e75
MD5 2a588b67d9a5a4e1bf1fbb7ea22675f0
BLAKE2b-256 6240069f83961808fe363a4e96f423c6c54d84d51bf5df60b3501528ac2ad7b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp311-cp311-win32.whl.

File metadata

  • Download URL: quatint-0.0.8-cp311-cp311-win32.whl
  • Upload date:
  • Size: 101.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ca52fba8e146f68058aa43073e0c16c26072ab9e8d8c6ebdd462023d6462b161
MD5 8742d0a50d2d52f14def268f62efa0ce
BLAKE2b-256 ac5f62ef7a17303d41cc1f0511aecb266505afc8682ff683becdef85a8e3ea35

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp311-cp311-win32.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 baa26880fbdc7bebaa77e46eda80944334307e880a213c017467e552179c89c7
MD5 5a156722b46f76a3aa408580655f9729
BLAKE2b-256 f81fc41357e6bddfbb44fd1fa996f82f6ed7e4d68be98a8be423c1a6da93187f

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f0e19b259fc4763dacc010a6b39af7419620eb9f415693ace565cd82358100d0
MD5 75d76a95850485d52ca4cf06e12e099b
BLAKE2b-256 e9e382fe72ec0e6669675cb1e4aab2ab1d7e9b861b8b0a69f21f94fc0b5f8bdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e10b0c55d702e87a4d9142d965990650119383cf23705cab1d6a6035589e1e0
MD5 6cf8dadd8c7d911f2ecf5d6585743d46
BLAKE2b-256 d1d01d82f607e9eeb3e7df8380965902ad025d2b8c02ff3785ed20417d87e8bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b92afd14c142c3b59f61ec721964eff8b94df203d54ac3f59a3e1a591ff6dddf
MD5 ee2d3996141be0bd333ae700c485a138
BLAKE2b-256 0d3918c1a0847d3759a0523460d45713d6a9c6cd696d3d50abffe5004ab9fed6

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: quatint-0.0.8-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 102.3 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.8-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 ffe97765eac041aab332ed87755bb9f39c842242dcbb9486bf99cfec0157123a
MD5 4905637f474d366ebc0c3b86bcb671c0
BLAKE2b-256 c047e8ef62fe9c044a691a4a9d33aebb40755368f4aa045d1a9a8a53ec22e431

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp310-cp310-win_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: quatint-0.0.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 118.7 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 quatint-0.0.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4772e88c1030bef5c3b114a978a58b6b6b170c17486d9173596a085e2c1ff2bd
MD5 b350df5b6811fa7cd4af6f238e89b867
BLAKE2b-256 8f70a931052205ffbd532f074e0aed074b506c20ff8a10e4b50fbaa3b0cce6dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp310-cp310-win_amd64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp310-cp310-win32.whl.

File metadata

  • Download URL: quatint-0.0.8-cp310-cp310-win32.whl
  • Upload date:
  • Size: 101.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7bef51c1cc4cb7e5edcb32ed60ff374d36e5786863cc8dd3d79fd692bb969ce4
MD5 17d80be2afe0d8be3869572d96403aad
BLAKE2b-256 96dc43b4a9304df7c934b0a4c03a02db619121d9ff1e795f96b7a09df6cac95e

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp310-cp310-win32.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f77e5416bbb12160a58888ff3e3029ac3913b2323503e8697a224e4674ea168
MD5 456b71f301eb9b07d418f4c764849090
BLAKE2b-256 39e8f1620ac5f7192ac78d8e47b78cc5bb95242fc12fd1ac7286b50d55c9763e

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52aa90c4b651ccfb0ab31c2babbcbdfcb742ec32be7db2db5b7db8e4d269f120
MD5 3d8a6e9d0b18e5906bef715dedcfe3fd
BLAKE2b-256 a9edbbf83eb7595531f68278979b6ca371bd6355ddea26fa526332541fd29564

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7691af0dc41e24a13ed91450426fb957d418f25fa852707f0b41a27e4ffc2b8
MD5 e18f53a7eacea55ea99a29923ec787e4
BLAKE2b-256 ce2174ec6cc79846ec9f80007dcda734a3a546c95c23d27f403f7cdfb04ced3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3688979e293e514b9f7bb759b0ec60fa8ca1d332cc95a060f7f72444cd63a3b3
MD5 1f1253c3012d0e624ddac03ca0ff68b4
BLAKE2b-256 f86155db345791dd9e13dde791cb8b3c383f8e0bf006c0a4118d3c38b86f813d

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: quatint-0.0.8-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 102.2 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.8-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 870c5b90875375af22ba435aee2c89d7e9b18e59b67dede583624afee333ae28
MD5 181d0bcd811cdcae4fa02a635bf8212c
BLAKE2b-256 5f303da6027276da5f351d9f8cd7a2a97251742dfe82764ceb87b4e8de9a9907

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp39-cp39-win_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: quatint-0.0.8-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 118.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 82db3c9df45f7a1767c2ec0b57a6a37b15046b8c87936d055a64839f5ea916eb
MD5 7bf140ff16896ff08bf10fb55b1aa6b7
BLAKE2b-256 6daaeb8fe10088f52b6ff4a089df0e9972733281a59861c8133c45bfeaa8d1ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp39-cp39-win_amd64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp39-cp39-win32.whl.

File metadata

  • Download URL: quatint-0.0.8-cp39-cp39-win32.whl
  • Upload date:
  • Size: 101.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quatint-0.0.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 460d147fcb3d7caa10a5049356066f6d9b87b4fbe5be8a566b086534113f1f6e
MD5 933c86f9c9030834fef0458855fcebb8
BLAKE2b-256 c17afabd32c156b66b159dfe1843a8b8a1db30009a4cfa76c3bf4e0622260f57

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp39-cp39-win32.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1e623e4a2835d1c683b3c23651d44677d7f3414f1fa220adc0e5b946d411f73c
MD5 1ff1a40b1059a9a3a3cdc61e7cb08120
BLAKE2b-256 b4d3c4764c764858afed4184830d9d9539a67f50d14858049a8d0f8731a0e161

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ed5566e1b9a8f090a27684635c7aabc3fa67ff028f5a857b2e857875b8b91eb
MD5 b5aeb43d1496c5a36ec766d714b02ccb
BLAKE2b-256 d7c94f2c9eceb15dd4707c6a10ed9ab9b4bf89cd6fec5f501fbeed56211b3934

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34c33d565f98b332f128eda6772754b59d595fd0619f8e4e55eb93511cc9342c
MD5 dc130d1452597b1d3dc5a0320e451531
BLAKE2b-256 f4ce4a431129fd7b392c2a221c43d761e78aaa32e96514c83185397d3f980af5

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: ci.yml on rheard/quatint

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

File details

Details for the file quatint-0.0.8-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.8-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a74a2ae6c1613f0acb7ab14508066023121200d654d42c83686dad72830057c8
MD5 5deff06269e66b27f6a916d1b60f9717
BLAKE2b-256 55692ed1fa01b5d7112ac3d87d4f1dc67e36ace7e9b864052d81dc949c92022b

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.8-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: ci.yml on rheard/quatint

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