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, 2, 3, 4)
b = hurwitzint(2, 3, 4, 5)

print(a)         # (1+2i+3j+4k)
print(a * b)     # quaternion product (non-commutative)
print(b * a)     # generally different

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

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.6-cp314-cp314-win_arm64.whl (82.9 kB view details)

Uploaded CPython 3.14Windows ARM64

quatint-0.0.6-cp314-cp314-win_amd64.whl (93.8 kB view details)

Uploaded CPython 3.14Windows x86-64

quatint-0.0.6-cp314-cp314-win32.whl (81.9 kB view details)

Uploaded CPython 3.14Windows x86

quatint-0.0.6-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (275.3 kB view details)

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

quatint-0.0.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (259.5 kB view details)

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

quatint-0.0.6-cp314-cp314-macosx_11_0_arm64.whl (142.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

quatint-0.0.6-cp314-cp314-macosx_10_15_x86_64.whl (151.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

quatint-0.0.6-cp313-cp313-win_arm64.whl (81.8 kB view details)

Uploaded CPython 3.13Windows ARM64

quatint-0.0.6-cp313-cp313-win_amd64.whl (93.3 kB view details)

Uploaded CPython 3.13Windows x86-64

quatint-0.0.6-cp313-cp313-win32.whl (81.2 kB view details)

Uploaded CPython 3.13Windows x86

quatint-0.0.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (275.8 kB view details)

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

quatint-0.0.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (259.0 kB view details)

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

quatint-0.0.6-cp313-cp313-macosx_11_0_arm64.whl (143.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

quatint-0.0.6-cp313-cp313-macosx_10_13_x86_64.whl (151.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

quatint-0.0.6-cp312-cp312-win_arm64.whl (81.8 kB view details)

Uploaded CPython 3.12Windows ARM64

quatint-0.0.6-cp312-cp312-win_amd64.whl (93.4 kB view details)

Uploaded CPython 3.12Windows x86-64

quatint-0.0.6-cp312-cp312-win32.whl (81.5 kB view details)

Uploaded CPython 3.12Windows x86

quatint-0.0.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (277.5 kB view details)

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

quatint-0.0.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (260.7 kB view details)

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

quatint-0.0.6-cp312-cp312-macosx_11_0_arm64.whl (143.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

quatint-0.0.6-cp312-cp312-macosx_10_13_x86_64.whl (152.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

quatint-0.0.6-cp311-cp311-win_arm64.whl (80.9 kB view details)

Uploaded CPython 3.11Windows ARM64

quatint-0.0.6-cp311-cp311-win_amd64.whl (92.9 kB view details)

Uploaded CPython 3.11Windows x86-64

quatint-0.0.6-cp311-cp311-win32.whl (80.9 kB view details)

Uploaded CPython 3.11Windows x86

quatint-0.0.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (269.5 kB view details)

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

quatint-0.0.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (255.6 kB view details)

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

quatint-0.0.6-cp311-cp311-macosx_11_0_arm64.whl (142.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

quatint-0.0.6-cp311-cp311-macosx_10_9_x86_64.whl (150.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

quatint-0.0.6-cp310-cp310-win_arm64.whl (81.2 kB view details)

Uploaded CPython 3.10Windows ARM64

quatint-0.0.6-cp310-cp310-win_amd64.whl (93.0 kB view details)

Uploaded CPython 3.10Windows x86-64

quatint-0.0.6-cp310-cp310-win32.whl (81.2 kB view details)

Uploaded CPython 3.10Windows x86

quatint-0.0.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (268.0 kB view details)

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

quatint-0.0.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (254.7 kB view details)

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

quatint-0.0.6-cp310-cp310-macosx_11_0_arm64.whl (143.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

quatint-0.0.6-cp310-cp310-macosx_10_9_x86_64.whl (151.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

quatint-0.0.6-cp39-cp39-win_arm64.whl (81.2 kB view details)

Uploaded CPython 3.9Windows ARM64

quatint-0.0.6-cp39-cp39-win_amd64.whl (93.0 kB view details)

Uploaded CPython 3.9Windows x86-64

quatint-0.0.6-cp39-cp39-win32.whl (81.1 kB view details)

Uploaded CPython 3.9Windows x86

quatint-0.0.6-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (267.6 kB view details)

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

quatint-0.0.6-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (254.3 kB view details)

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

quatint-0.0.6-cp39-cp39-macosx_11_0_arm64.whl (143.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

quatint-0.0.6-cp39-cp39-macosx_10_9_x86_64.whl (151.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: quatint-0.0.6-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 82.9 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.6-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 69ddd777638de98c38cc1f7132bc0d73d42bf428cf61179a4238f2cf92ff69e6
MD5 7b4064f55c3746aefe4f7a19aa09b884
BLAKE2b-256 db037bd055368c61b35113d1d04a371c65f0d26e3e48c68b04c8d6c90537a5d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: quatint-0.0.6-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 93.8 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.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e82802fd2c24d337391604303d2fda27064c3817790eed6c9abd299e30301af2
MD5 a784fbaa3980c3c4e22104cd3d5087fe
BLAKE2b-256 53bb563d868192e770a4e329387177f1d2bbbc8b9263ff5dee82950595c79520

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp314-cp314-win32.whl.

File metadata

  • Download URL: quatint-0.0.6-cp314-cp314-win32.whl
  • Upload date:
  • Size: 81.9 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.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d96acf6bdec5e84e5eeb9fb5a2e2bf04d6e372ecb3b1ad0e568bbea23b56a7a4
MD5 63c66c07972a3bd9b00470a952430cb2
BLAKE2b-256 d96a35203c3704abf5c31894c41e5eb9f105eab61a5d8b74bb5bf0e01c402916

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-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.6-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d9ddada9317ae0b950e099f77b90244411cdf5bb7843069dabdf5e7b8384db6
MD5 b929e8180c78dca15c7ae9667dc98d60
BLAKE2b-256 191ce1c28df92862ded440e6a33ea47c8f7f75a363d3e3f4743e4ab4556410ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quatint-0.0.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 59cacd655df353af93325093f12ca6facc7328cefac5b5152002791cad3cd34c
MD5 3b91983a533420613b72b74cef451d1e
BLAKE2b-256 ccf63931a3b229d74ce3ee4fa5befae39e94ffa4f1f758c529508c2b662289dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quatint-0.0.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41ed7747cd735bc35e8879a522b077bd2e4239b1143748ed0e8ce692ad59efca
MD5 0999ec82d55fccf2f3447114b8e6ffed
BLAKE2b-256 658c2036196b89df5e1da60374697e89c12fc76f7719969bf030c1598ba395c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.6-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 444188c586be7e46924985f0960c7e9be9d57ca60550cd4f00bab92d279a7190
MD5 3c8405a255eb7665f8e29e48b41221f3
BLAKE2b-256 4092bf10525313ab1f858ec6a6f26a294d8f9b85d0f0b5f021bd8a4ebda4e441

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: quatint-0.0.6-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 81.8 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.6-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d9ce2a7d85cdc6bfc36819a69307f87e0fd5d8f531c47b6c7fe64b86a30da228
MD5 e71265d1fff1c8f42bee0056697f94be
BLAKE2b-256 51a6a9c2b4bd768d7c709cc2bfc7150e74048a80a661fd2407b415e0f7ab87b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: quatint-0.0.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 93.3 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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f92ffc9a391183a328d81c626d32155a390a82bd0d571670909d6f889424aedb
MD5 6499892af6521581f83e1aa00fc83ff5
BLAKE2b-256 11f13fd83b3335d4f5726ac01fc152519477d5b34638865346ffc123a58600b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp313-cp313-win32.whl.

File metadata

  • Download URL: quatint-0.0.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 81.2 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.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 75064f9f912b471edc1eefc5d1bb2296172c4ec57316a027b32f7a10845cf661
MD5 620af486bba805278e5ef0dc6203505b
BLAKE2b-256 509e2c48ccac2062e0dc357eaaf75c1e6d96a50ae6e5103ab254c1ac025e0540

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-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.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f64140f562db6ad2326e6a7d47ef8be923bbd8a5a204bf0bfd5d8eccbecd843d
MD5 4516224914fd537e1de088de3ab112b4
BLAKE2b-256 48573f967eb417b2f1b00ce284539e7e2f5de2fdb4e7cb6c0ce9d62f4e32d37c

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quatint-0.0.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9b86659108cda714c8cd7d4a02bd77e1433c553cc020c7f66ab7e7efabef6af4
MD5 9ac3f0d0293402494e784d0cc11076d4
BLAKE2b-256 ad6616b4d3bfa99e78eb273a94a96a4586f4fbf0770ca6def0e5717c4ebae4bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quatint-0.0.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6573fbce3fc00becada02257a2c6264ebd2d5e6856afc6b02ca5233d8184451
MD5 f216b72f28f0d92d0517f439cb779f38
BLAKE2b-256 a249c1e8440df402eca7c36b522cf2faf662e8c73491e26de4306e653af6354b

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cb372dddfb6b1716dc5d8ca02b510cabf30fa9e1b9bb6bac6196010fc7a9d82e
MD5 c97dbdb712d5b41fd82eb868b76bbaae
BLAKE2b-256 fa24ffeaec6ea07aabd6b3eeedd9513f316a52b1d2b7fc5fa9726b7abb1b7530

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: quatint-0.0.6-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 81.8 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.6-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 5c91015402f129b060a6842d6817e85e1baf77eaa29411dd25e74efb5254cc70
MD5 f3d0f916e77df6b0a73e61cfad967718
BLAKE2b-256 ae128d4a165628f8c677499ed19a7e6e871de5357c7ab8d55fb880d36b1eddd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: quatint-0.0.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 93.4 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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9f63a298835507eac6a3143ae0dcf41953e6796c538f188a59af09efbe1f9ec7
MD5 669eac68b2455f5d6fde55535c3bc041
BLAKE2b-256 aff3d8cef82660d70ada4a6d6a66c61593ef7060a1d761923cbc053ff653ac36

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp312-cp312-win32.whl.

File metadata

  • Download URL: quatint-0.0.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 81.5 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.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 244725ba4baf643ae6df811dd17270045cb8c21bf0add95a43587aa01b93d4a6
MD5 5839e6e7c7cbbfd3637a6d20e0a47ce8
BLAKE2b-256 21d1c96c7f316200977d6843e51ab962c52873d8a37d33e43b6b27752bc1a8fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-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.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 66add7c099df443cbe5fccfcf2b495ce647a2ed4577e4e9f842135fa463919cb
MD5 b283d2aa75b232258931e47a2cc86895
BLAKE2b-256 3e30e53f50cad6d7fecb0bf2ea4bf35e5106aac767ac809ee9676e87178d442d

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quatint-0.0.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48b01352ecacfba918dbc206d15e8f67f06f36bdd1ff21b59fc791e1e67fbae1
MD5 7ce99412e28d5c38873e1fc4c8101155
BLAKE2b-256 93cfd55e1697fa7fea78bb2f60c6cfb4987da379e61f285f14a4c7f35d0c1f3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quatint-0.0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5222a32883991b8ed3a01aa7e85be1f3bce8f9a6c1e8c9085a47e2db8fb9bf12
MD5 ae6ac5a9a5847db1417ed256b588dccd
BLAKE2b-256 29f3656842a4fa6c994a08b3236ed14593ee8e9375f303f2b9e56cc2135e5c06

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.6-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c161745ca2cd37f9949f4899c6d7779d91bdf40c9c31fd5be77fa0659dbc82f5
MD5 92339c7511f479129407f2aaed747621
BLAKE2b-256 9f89418588327cc9c7a805d38f88f76f3f5ccb6a7a8ca3aca64ccfbdeaf18e27

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: quatint-0.0.6-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 80.9 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.6-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 36d61057e24b05cf0cc3b1585833d953fcc00381fc7303b69481d5991be4a6a8
MD5 452dc58e6cbf6d7b0584bab42a51afac
BLAKE2b-256 61f3f0eadb84be36549e3c5b4782f4d42490efdaa8fb1654df439ae5de48b851

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: quatint-0.0.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 92.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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4ddce504717d3e0096dbdac43307224aadf4ba1723d8ee94eed6bc98d7979ba6
MD5 59069b1bfe6a3051994de7c8cee25935
BLAKE2b-256 511e4f51e587429dc1e89844b7dd139e369833d22773157acf7a781c67543180

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp311-cp311-win32.whl.

File metadata

  • Download URL: quatint-0.0.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 80.9 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.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8628671710a592c7152abd98627ce168c6d9834203ac94b771a391af34bf5cbe
MD5 79af4bfeee70ac409ed737232f26429e
BLAKE2b-256 7596f65459a5eb22e1c383833c129b8d8b137cdec2f1d2db559043d361037fa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-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.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f0612273fd01274f42c7d45be3286310ecdae5ebb9c76337a2e93ecfa8485ed4
MD5 eadfc6614ba37f0e83c8ac0f1f5172c7
BLAKE2b-256 983a963d302e2bfa989bd620af10cea5a87ed50080b3b5eb8a35cbc030e2fe34

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quatint-0.0.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e24fb04a03ad4f0906ef5c761d340724ef2078e533ec87ddbde722b1b98f9fe7
MD5 e814063d7ecfe25d07427acb8880d961
BLAKE2b-256 3468048bbd96839449d6c74ef602db901d9a78d4327f0c188e58b92c81647aa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quatint-0.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0bf61a48b16b93b4042ae8f122897a752154dce85ac638a715d4afaef385ca5
MD5 dcf14820cebf5b5429333288cc1eac97
BLAKE2b-256 2a1446b5a3c1f64659ed4e624e650a5e9deb8cb9da550d3e8e1ba671dbdbbf1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8da7873c0392f2b49061f84b9a8a2a39e4ffa82abfaf9b73e78977f918fc3381
MD5 253f7b725bef1f5a9782deb00b2533d6
BLAKE2b-256 5b36fcc9c2de229a83b4b22cac0f9ba7685cdf40d6e8f76ed78097600d852bf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: quatint-0.0.6-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 81.2 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.6-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 7463007de29cbb5036c161cf96f1bdf31c398345aca1d4a43bacff6ee769663d
MD5 a3a3598e3e8bfcc3c6e66123e2c9ae6e
BLAKE2b-256 b3ea40c3eb95843655d731b5fd1f45e2aadce205e9ca3e81aec24e5087cdc4ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: quatint-0.0.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 93.0 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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 60fd3832603697d39c74d528e51c3e87418cd6915369d576d5ed1499dc1273ca
MD5 0656eebd5e403d666bfa71a0952148a7
BLAKE2b-256 747788ec75fcd554580a631ec43d2c812cddeeb4ef53f6036ae0cc3d2667d991

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp310-cp310-win32.whl.

File metadata

  • Download URL: quatint-0.0.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 81.2 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.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 451bc7e88f81d9a5d636633b9f9db0a16baafb9f02e872679b7aa96e867a6eff
MD5 f7806a34f5a728c9af3c620088a36cda
BLAKE2b-256 3f286a99064cc4a43965a258723f45392e1a5039bee692a66a13c8f9f005ecd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-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.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9e02281c6b67eb67828b2d603520e348a6398912eebde56fb9b51bfc70ba11ea
MD5 d8d7ce2fc3f7fd2038c6f6991e98b85f
BLAKE2b-256 889929821bcd457eb6fad204594e1796765b5895ae305bfa95b633b00396fcd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quatint-0.0.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 53585ca166d5c11d8c6d02ea3e8cb143a00ce86dab2d01c92ef7b6672be858e4
MD5 18abca54cf058b20d991dcaa24bacc76
BLAKE2b-256 8a9d790db10118eb6a0ab113e9b9bdbfaacb328493bae8c15e389b558f1eb46a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quatint-0.0.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1d855d1bbeffa810ce88e14e5e512f46381f6942df9991042de67dd705fa8d9
MD5 9b50020c9b2c81a6194440cb4783de0e
BLAKE2b-256 6799c60dcf09976484d83d601718aaff1418a5453a96fd85d4c0b8056fba9e3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8726f9619488fdcd55f05265a3935dbfe746175210dafd88941bb377d6807566
MD5 c7ba41fa5c5ef67d38e5f566b47b9b33
BLAKE2b-256 b48e87298e6a455255d73fe08aec6e43fef6891e8e4c2c416f9b1238e4aa0acf

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: quatint-0.0.6-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 81.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.6-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 ca3a8d69e7396be5ca4e7c0ff20fc96dc9f438fffe10c1907032e19e2fd463fd
MD5 09075f7dacde611539a5fbf95f1d36bd
BLAKE2b-256 b4c1c037c6571dad2b84e832d307a02d2f35e2e15061ddd3fcda4e34de0fe6d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: quatint-0.0.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 93.0 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.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 39c861b501803278ebf8206d59dae505c8b86ccc7e4789546050135d437b65b8
MD5 a187b29287001968f1b7c420ff0f71f3
BLAKE2b-256 0c905e3ea48cd29887edc7ee8908f48724ac32361d44590bf4a8732655e514fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp39-cp39-win32.whl.

File metadata

  • Download URL: quatint-0.0.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 81.1 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.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 96d0290fd529526011fb94a3a819c9e03ccb541d24f0c0f5f249f259180d298c
MD5 0e7d7f1f2ee183ec598de133b1ee5cbd
BLAKE2b-256 e9ee94ac150eab6f2897be619765c00cd5d0717ab3ef722ba9d9d10c53964930

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-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.6-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 52455b329e87bc4c7357a72f24bf98917eb51c30c48936ff2c3908003a1ca07e
MD5 e5ccc6acffce54ef4c36e8b110038a2e
BLAKE2b-256 e3fafc11cf446fea07a8ab1d63f9c5c549d9c91f05f772fa4df3da51b8f5961a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quatint-0.0.6-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6f19d6941ebc75d69584329a61a811c6bdddff88a2813cc18b20c765538fd2b1
MD5 409ac983838345db37613e8795625450
BLAKE2b-256 0db2f9f3a75f7145f6fac61ae6ae6919d38d0c00d1faf6e0f904a90061869c9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quatint-0.0.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5f3d411fc9d0b8e951f4482802e5f5cf794d10e5210cfe8b4c22fdf4b0d0032
MD5 86a90af3f46748c863be5419d5c780bf
BLAKE2b-256 2055a13ded3d4d39ea7d6f7009418433fbbd82aceb73ef54b7b6806df518f82e

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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.6-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quatint-0.0.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4919768cb2465e1d3dbb93ba9d8bcdce31018f5350ea669b0d0f64d8bbbc625
MD5 202c39161a66a77b0fead21f20087ed0
BLAKE2b-256 4fa53f2e21968a41e18d1485486be4ba4b4f39d0d4abdb3476cb9079c1de0622

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.6-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