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

Uploaded CPython 3.14Windows ARM64

quatint-0.0.4-cp314-cp314-win_amd64.whl (87.5 kB view details)

Uploaded CPython 3.14Windows x86-64

quatint-0.0.4-cp314-cp314-win32.whl (76.4 kB view details)

Uploaded CPython 3.14Windows x86

quatint-0.0.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (262.1 kB view details)

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

quatint-0.0.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (249.6 kB view details)

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

quatint-0.0.4-cp314-cp314-macosx_11_0_arm64.whl (134.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

quatint-0.0.4-cp314-cp314-macosx_10_15_x86_64.whl (143.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

quatint-0.0.4-cp313-cp313-win_arm64.whl (76.8 kB view details)

Uploaded CPython 3.13Windows ARM64

quatint-0.0.4-cp313-cp313-win_amd64.whl (87.4 kB view details)

Uploaded CPython 3.13Windows x86-64

quatint-0.0.4-cp313-cp313-win32.whl (76.1 kB view details)

Uploaded CPython 3.13Windows x86

quatint-0.0.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (263.0 kB view details)

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

quatint-0.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (249.2 kB view details)

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

quatint-0.0.4-cp313-cp313-macosx_11_0_arm64.whl (134.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

quatint-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl (144.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

quatint-0.0.4-cp312-cp312-win_arm64.whl (76.7 kB view details)

Uploaded CPython 3.12Windows ARM64

quatint-0.0.4-cp312-cp312-win_amd64.whl (87.6 kB view details)

Uploaded CPython 3.12Windows x86-64

quatint-0.0.4-cp312-cp312-win32.whl (76.4 kB view details)

Uploaded CPython 3.12Windows x86

quatint-0.0.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (265.4 kB view details)

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

quatint-0.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (251.3 kB view details)

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

quatint-0.0.4-cp312-cp312-macosx_11_0_arm64.whl (134.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

quatint-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl (144.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

quatint-0.0.4-cp311-cp311-win_arm64.whl (76.1 kB view details)

Uploaded CPython 3.11Windows ARM64

quatint-0.0.4-cp311-cp311-win_amd64.whl (86.8 kB view details)

Uploaded CPython 3.11Windows x86-64

quatint-0.0.4-cp311-cp311-win32.whl (75.8 kB view details)

Uploaded CPython 3.11Windows x86

quatint-0.0.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (257.4 kB view details)

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

quatint-0.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (245.3 kB view details)

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

quatint-0.0.4-cp311-cp311-macosx_11_0_arm64.whl (134.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

quatint-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl (142.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

quatint-0.0.4-cp310-cp310-win_arm64.whl (76.3 kB view details)

Uploaded CPython 3.10Windows ARM64

quatint-0.0.4-cp310-cp310-win_amd64.whl (86.9 kB view details)

Uploaded CPython 3.10Windows x86-64

quatint-0.0.4-cp310-cp310-win32.whl (76.1 kB view details)

Uploaded CPython 3.10Windows x86

quatint-0.0.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (256.2 kB view details)

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

quatint-0.0.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (244.4 kB view details)

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

quatint-0.0.4-cp310-cp310-macosx_11_0_arm64.whl (135.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

quatint-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl (143.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

quatint-0.0.4-cp39-cp39-win_arm64.whl (76.3 kB view details)

Uploaded CPython 3.9Windows ARM64

quatint-0.0.4-cp39-cp39-win_amd64.whl (86.9 kB view details)

Uploaded CPython 3.9Windows x86-64

quatint-0.0.4-cp39-cp39-win32.whl (76.0 kB view details)

Uploaded CPython 3.9Windows x86

quatint-0.0.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (255.6 kB view details)

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

quatint-0.0.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (243.6 kB view details)

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

quatint-0.0.4-cp39-cp39-macosx_11_0_arm64.whl (135.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

quatint-0.0.4-cp39-cp39-macosx_10_9_x86_64.whl (143.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: quatint-0.0.4-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 77.5 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.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d6f49ac7077a70d821a24ddb424e5fc4dd734d2d3153f6bd2e6e69db26cf1647
MD5 2b5da22a6da809668348f0fbdab7a609
BLAKE2b-256 9972f26aac76e467cd626610cc1129928a47d2d8dd680b195c61831c68cd7cb8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 87.5 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.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cce6d27ea409d0a7dc2a25c0a626850f6b6e99a95404cfd25695d7c1eca0ace9
MD5 6b20f8461cd96bddd64ee9ac76d64954
BLAKE2b-256 1153375cf1f9c589be065392f7baf91e81ab64fcbf9819c44c651d5ed6978a27

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 76.4 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.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 05083610c8e3a7c6c4d9a7960c231d2912bf8744571336b868343da422b152fa
MD5 fa7a00610d5f1a0f95ce682385075ca9
BLAKE2b-256 32504789290929e9f8b07b10be8a5f227a9941e542849d6e5f9b6c41ef12d100

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.4-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.4-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.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d1357e8905e9b5ebee3535dfb03c63949f1f8bbf709a87cae823798808756281
MD5 4e6fb24948752e8a83651fdbd58d6577
BLAKE2b-256 c750b2251b3b0fca6bb43d8cb43a9f78a278d0cae20fd50e27fa1562e1eed15e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 108ca9ba864cead9d6f1c8ca0c7a01516c6605d02cae5c51071ac2b4dd3bd3a9
MD5 a20ea1a73eae866e94e4b20aa33fc2e0
BLAKE2b-256 d6113e899b6b53ea4c74e81047f1f3b7f543af5d23f8085d74e59b35f997f7da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d943e0891b3de71b4274cf9a62b2195b3a0ab50d900e846fe19a1fd75bea3aa3
MD5 6a912460010632b5feb7e3e4531d99bc
BLAKE2b-256 72db18f2b96425a723215383a4bc07bf223e849949a2e59beb1635d29023e5e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d99543527e0e68b2de4c104e8b71ddef62d989fcff3a4e1e6e9ea57b91e2f5b5
MD5 404c232dc5f324e8b999721f5eb0e0a2
BLAKE2b-256 bb67579087d1f38a6b891439669100b7a2129e87968139c2ae249f6beb34e36e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.4-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 76.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.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9c7c462ee57ea1801fe1f7c7acce0676c511f2f8cd64c0454c27e55b7a1879cf
MD5 966030d958842c4cac68549ebf4e68f1
BLAKE2b-256 f356bee67454119ac832ac8f3d83796d9f7b52c63ce85345311b2ba7755693ce

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 87.4 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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 23686373fdcea9f1230b40e49fcf196aefa0b70f7400a6194624413bcbd430be
MD5 002850c5d6b79edc9ae385e1a039c02c
BLAKE2b-256 ee49083bcfcea967b78495ae655e901705a501712cadfc692bbc162499646423

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 76.1 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.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 41d5a37dad68bea57f8a508d79064616840c983d7f2c9ad5e1f8a1b4ae83fb0f
MD5 8f05f09aeff14d3078394e0dec32498c
BLAKE2b-256 8c70914957c37beeb174409040b38ae376f4f4972dea39dad47d3c603b29b2f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.4-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.4-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.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 888f31282c471510153d2f9f9a43a65b115e4e27dfc577d54d34ada8990bd6f2
MD5 c53d8d59385b42aa236d49fb80d0a2b1
BLAKE2b-256 aa3a151c7c3d80af023c0bc9e6f7ef025aea876a69b4c77e284feebbfce206fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ecafd52b9d6239ba16181e5b73fe718f7fd87140870aa4739fd2bc2ad782698
MD5 26022e26bb2885cd4e981b042784d9e5
BLAKE2b-256 062fb81af9d66bae742779c98787eba22ab2aae8f339b091f66b8501338a3567

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0aa4450443a643d8e21ae0a451545eb2ed5bacac267d7c3d1f31f3877dad577
MD5 eb6f24ea8b51d9a8e5b69b548678f9c2
BLAKE2b-256 7c8bbd806461dcf1b2e21c5362898b3af1ccfae1cc3784579273061f89812e16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 681a7e1a61f89e958b018af67cfd9b0a9090ae82c2f4b0fc3500cbfa1ac1b7b4
MD5 916e26cfa1d6d40134f5e8d0f5b5f497
BLAKE2b-256 6698a92480de6d2e1a24bbe1962057e4257e36d051b13a06d494bfc39107438e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.4-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 76.7 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.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 51ee6f43c6d5b590da0b201b90d1b7b4a63402aa2e99d38c31024467dc8ede8a
MD5 5c3c29b87216940d40e9c9366ed66633
BLAKE2b-256 b27d2279026e83fc3a043ea1e746c9b5ea93d9bb49c570b271a8b4c365e05913

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 87.6 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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fe31f7ff139d198225a0244deae26d48163b76d2141ebfa132e356dffae817b8
MD5 1c56077e1700732f61da3238b91a510b
BLAKE2b-256 52ab22ad972645a399769a5ada6382a4ab9ebb22f23972aec65e939a74ad7268

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 76.4 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.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8948bb078f853c74bf429a467446de22bb9f86c98233c4655dc4a94c0b78cfc7
MD5 1ec99d0b198324e2d54d6c0b88b61ef3
BLAKE2b-256 5788ef14526763eb0648443fee434b6ae113a4281a9ade688d2c9a324e0fbf14

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.4-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.4-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.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 49a82e32648a251341a3315c4772671c8c8eef9a0bc0562ab10472d51a5cdef4
MD5 34f925545c02afcb143215e01f8f33b9
BLAKE2b-256 67a2d87f9298b6df265a060eb97d693349da8954b0fc33ede7c758cdded5408e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5dee6a6729f5eefd65b7db99a75f5b551e6bebf3490ca9950bd9a6bca7e90dbf
MD5 87f1e294a073554317dd78da227d7f43
BLAKE2b-256 2004dba8fab4a03074016d5a6e47dd777eb43fb3d640d273604eeaf85be7a445

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cffb475b456b30986db32a6cdee003f4fa2994d6ab72e28156a8d3297014109a
MD5 d93f59ec91a626e62fd0dbdf742f4a8e
BLAKE2b-256 56f980fb54f6c96634a805edadc609da86d3edd1dd5b559a3308b04819bbf84b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 052e7d211314aafc13c06678f512bbc1128579ba311003dcffb06a8bf9336691
MD5 423b5564845a04edf4e7901c4bb1b2b1
BLAKE2b-256 a873fd7dadda7602c7d0253f72be1ffcbdb2f9901484032c00081c52faef95eb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.4-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 76.1 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.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a07a534e06d55f85740c76de644c8a1151a1681e094d5224c106630be020832d
MD5 f6478b203737032d4c44633cd788ae0a
BLAKE2b-256 a19185ca86da44beebadde6519cde20a24699ae1556bef339ae1d5faf571e1e6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 86.8 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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4ebbd6ecf09abb94572a05e4bb644575946e99ccd82c078a617ce1c5c2ce58ab
MD5 21b8b6d0c88f972db005485a059a0049
BLAKE2b-256 ac1482b701e64b921018633554fd7300d97eb24b97597cd98e6eb8a9734620e5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 75.8 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.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 89c9eb9cd5da8db33951ee6bd2659088e26a66cf0910c4ddbd7a3c24ab8f981c
MD5 1d291424cd1c5217e53a0cda0291c42a
BLAKE2b-256 823056ee43949d056a3dc1f51a4be2954c29583c23354ca50f02921b52963671

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.4-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.4-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.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eee4d6f19fb7f35a71681d43039c64e55bf54e1f1efdd657ad8ca50bee3e96c8
MD5 95292b6abb54a812b75a565f4f40fff0
BLAKE2b-256 4a63b5d534ff660a23f67639c57d4155f54097f0d9f839d243c316c8fc363764

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d702de79c8942d552da2746887d22557eef803d35513d545ba2dcb781302e04c
MD5 801152de076693e38488e3e22c95a38f
BLAKE2b-256 ec248c66411406c4986d84159b8a588f0f4c338578933a7dc382e94e250bb9f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ab34853285701aeb99393b3b7b936ace10318d3724dd0dda52a8cc51279eb87
MD5 5248ab6bdacf2a70e6330b1756c93dd0
BLAKE2b-256 baa07b80470bc6fa8098f00cc3e6ffe5ee85a676b2c5e1752660db279b1fe991

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2125df30870c1f7118a5598c0c67eb9b90690b4fc0d02c2d24d528f3ddc040ba
MD5 c20197495bcd2db9a8ed460578bd56b6
BLAKE2b-256 ae6e2c1e045111b659dd71d79010c426ef4b3cd3d63b647c5baf3687f7dd350b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.4-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 76.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.4-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 150891a2448bc86a111c2f958172d5c44f1ee6fa9248db7798badee7ddd8fc87
MD5 69957194deecadc94122027024363844
BLAKE2b-256 acddf0416ebf1fbfe1085eee0033dc89855313be8570ddd7131ecae0a57970ee

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 86.9 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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e0f52f8768f80b60739d8d174a288e61f0a4e53c9d4fc4331c3b36ba3b175355
MD5 82d0a221443084aa8441cae020e0e2d5
BLAKE2b-256 b0cfdebd5da8396019439fe6541caf7174e49f64fe236992950631bc9839e1d7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 76.1 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.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 dc6890d1c8729ade630bc6c1ec9f16d7bc1f60ee050d9cad93f2cb3afa319a72
MD5 3f04d4e34fdfc3e0afbdf0f4cf5a300c
BLAKE2b-256 8016ced0ecc6b11f4c7f7f729af7bd24dea2c9791c445f8a4cca026168804e60

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.4-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.4-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.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 53e33505365b4fc8b6ff08a8f71336d0c69262db8e0e552b1612feb09d1230fa
MD5 35cd852d7113cc7eddd8ecc5d5cdc796
BLAKE2b-256 bd8d0512563b8b33040334cb7ef687f8ee065cd131e709062c5d0bbc3c93ab96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a5721ddaf3453a782b4bdf20a7b1d97040a6eeea6837ac01f130275906855696
MD5 8ce7a0e8208d4aa45c7fa0cfdaa1da9f
BLAKE2b-256 45ca743a38cbc43a00fdd1410a23d6bdce3cc6131264099dc676c9ef25d68e54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 067a0f8278a51b5d6469e5c827a04d3fb3cb2df78b4f327e5f805a90259b3d7a
MD5 70de9285e45f21e44c5d62b1f8b55a60
BLAKE2b-256 918eb88a4871cd0e01b48fb3c2e30fd2386d1369b3cf0bd6ae7915ae04c65b14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e3d00e2517baa662e21e5ce7a38ad9e7bb0c2d18c61d6db17b71c9a85be7876a
MD5 8ca4d2ebc09450a852f7efcb4493812f
BLAKE2b-256 23df72d712750d5d6e68efcedd87c96b56e084b42866bbbfad5d43c8894f5235

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.4-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 76.3 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.4-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 0dfca19993c484b0b6250ed6b9af6ba1cebff4954f260d7e5498db45b429e4c0
MD5 f5974c20be9567d1325860e22a8f3a08
BLAKE2b-256 b526a7a33aeba08a5f4d91a466f9c1d2f7caa1fd0106c3055bf2e970c71aac0a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 86.9 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.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 facc46df27a34d8e4f03ce409ad2c730628ab20242d4ffdabb3d4b0c1c82fdcc
MD5 9baa5161093f321d3b507e20689559ec
BLAKE2b-256 85d103520f601d3ce1426aacbef80e993f07eda8c457e6358d3b662947b9d6d6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 76.0 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.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fefb38168abfc42c3df73d306897e19676e82330fa4d32f9a80c43c97d9414c6
MD5 ae29a454f7871953a77b66316c514831
BLAKE2b-256 c4b9070c7a86da0a706466c3e2dcffa7f39ec4fccdb798144a7cb6fd1b35ab93

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.4-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.4-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.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 905f9ea0068b42144ac093ae7853648e5a9dfffa224e7ff972b0a3a98592f4a2
MD5 f53b3c66a790664de9fd5ff5e18034fc
BLAKE2b-256 fd6814ddfbabd30a11d7ddf29d87faa4ffd71865c5c0581b932bc80e58ad46cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9a52fe4d568bf984ffebd3fc3fa02685ab910a15bf11738d632f3a492c36eb8f
MD5 9ef813b9675f36488a696a380dc71fe0
BLAKE2b-256 ea76c64e4afcf90de1d088e6b3cf7967b92ccce892b929569b13a87b014c6801

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 200c86e6a02dc70d7c0d5a72831544c34c72a2319bbc976e5373abd3441e7dd8
MD5 0e7b3e199c8648b4e60c3a79600eda52
BLAKE2b-256 6d2b240e2d46540d97a87a92e3580939042b4d0213a2d237f2615b410510ac37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ffe5ecb1df86b105db0fcf30620adf3952941ad75b5502b8ace4fbd0c51f7af6
MD5 0fdce3187b6c1d2404c3204813e720df
BLAKE2b-256 0f3c876569fd8fb1c4f104ce9c729cdd22b6c5c6347938d98bae554883322116

See more details on using hashes here.

Provenance

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