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

Uploaded CPython 3.14Windows ARM64

quatint-0.0.5-cp314-cp314-win_amd64.whl (87.6 kB view details)

Uploaded CPython 3.14Windows x86-64

quatint-0.0.5-cp314-cp314-win32.whl (76.5 kB view details)

Uploaded CPython 3.14Windows x86

quatint-0.0.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (262.2 kB view details)

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

quatint-0.0.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (249.7 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

quatint-0.0.5-cp314-cp314-macosx_10_15_x86_64.whl (144.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

quatint-0.0.5-cp313-cp313-win_arm64.whl (76.9 kB view details)

Uploaded CPython 3.13Windows ARM64

quatint-0.0.5-cp313-cp313-win_amd64.whl (87.5 kB view details)

Uploaded CPython 3.13Windows x86-64

quatint-0.0.5-cp313-cp313-win32.whl (76.2 kB view details)

Uploaded CPython 3.13Windows x86

quatint-0.0.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (263.1 kB view details)

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

quatint-0.0.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (249.3 kB view details)

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

quatint-0.0.5-cp313-cp313-macosx_11_0_arm64.whl (134.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

quatint-0.0.5-cp313-cp313-macosx_10_13_x86_64.whl (144.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

quatint-0.0.5-cp312-cp312-win_arm64.whl (76.8 kB view details)

Uploaded CPython 3.12Windows ARM64

quatint-0.0.5-cp312-cp312-win_amd64.whl (87.7 kB view details)

Uploaded CPython 3.12Windows x86-64

quatint-0.0.5-cp312-cp312-win32.whl (76.5 kB view details)

Uploaded CPython 3.12Windows x86

quatint-0.0.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (265.5 kB view details)

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

quatint-0.0.5-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.5-cp312-cp312-macosx_11_0_arm64.whl (135.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

quatint-0.0.5-cp312-cp312-macosx_10_13_x86_64.whl (144.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

quatint-0.0.5-cp311-cp311-win_arm64.whl (76.2 kB view details)

Uploaded CPython 3.11Windows ARM64

quatint-0.0.5-cp311-cp311-win_amd64.whl (86.9 kB view details)

Uploaded CPython 3.11Windows x86-64

quatint-0.0.5-cp311-cp311-win32.whl (75.9 kB view details)

Uploaded CPython 3.11Windows x86

quatint-0.0.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (257.5 kB view details)

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

quatint-0.0.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (245.4 kB view details)

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

quatint-0.0.5-cp311-cp311-macosx_11_0_arm64.whl (134.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

quatint-0.0.5-cp311-cp311-macosx_10_9_x86_64.whl (142.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

quatint-0.0.5-cp310-cp310-win_arm64.whl (76.4 kB view details)

Uploaded CPython 3.10Windows ARM64

quatint-0.0.5-cp310-cp310-win_amd64.whl (87.0 kB view details)

Uploaded CPython 3.10Windows x86-64

quatint-0.0.5-cp310-cp310-win32.whl (76.2 kB view details)

Uploaded CPython 3.10Windows x86

quatint-0.0.5-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.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (244.5 kB view details)

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

quatint-0.0.5-cp310-cp310-macosx_11_0_arm64.whl (135.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

quatint-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl (143.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

quatint-0.0.5-cp39-cp39-win_arm64.whl (76.4 kB view details)

Uploaded CPython 3.9Windows ARM64

quatint-0.0.5-cp39-cp39-win_amd64.whl (87.0 kB view details)

Uploaded CPython 3.9Windows x86-64

quatint-0.0.5-cp39-cp39-win32.whl (76.1 kB view details)

Uploaded CPython 3.9Windows x86

quatint-0.0.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (255.7 kB view details)

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

quatint-0.0.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (243.7 kB view details)

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

quatint-0.0.5-cp39-cp39-macosx_11_0_arm64.whl (135.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

quatint-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl (143.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: quatint-0.0.5-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 77.6 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.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c491d1c7786e5db2c60c79681b1918294babdd7ad454854bca22f72bb6c25345
MD5 ecc7c6663c17ebeeb3a8f31b65e1ef76
BLAKE2b-256 c6fa69624b36edfdfd8be90f558518dea6df2ceca3edfcb4a635400ceac1d588

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 87.6 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.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ee3cc9c951b3ec5840ed4bf5014baffc3a29fb65f51d3e7f4e194b4142863397
MD5 948e44f545b4f1782d15866c33c2bbdd
BLAKE2b-256 67df98838d236cce6dc4139d9f5dfba14a515ae8ad9ae3640cc92d34ecb47c8e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.5-cp314-cp314-win32.whl
  • Upload date:
  • Size: 76.5 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.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 aa9f3f99d34e7eb996384bcbe33e31b61e49c7caf9752a60e9aa5524ff64717f
MD5 a438c3c28b59d375878927af8873ef0c
BLAKE2b-256 7d463a2277bd3758d19eb76a97d0936334f78d234f6f758b10d77eadf6fb4a18

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.5-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.5-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.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0950a2156ef462f0b5bb56c7ccb386b145b85da9aeba56fca886ea393b3092d7
MD5 ec034f19da64f1a19ea33da046db0872
BLAKE2b-256 cf98d046c349a30341dd402e434f4deb0094d53b06bbfe5f159c46f9190337e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 588bc28ff015751be7c53a3b4aa97908a00c604b84584d9a784228e75ab8d78e
MD5 b6e45e58cd43a8e1d59f44379d640364
BLAKE2b-256 3f318d12da79f9eda07df31fca3d45d96ab8efbf055dc347bf0ee6355442fe41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d19c7794361c35793aafa310e0221f10810c243fb58cf6d817b2795194373873
MD5 5b86adfc1078a07bc75798b5d617d009
BLAKE2b-256 fecf26141051d29aa22db64ab23ba7707523daccd7aec270f99b8088ad70ec6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.5-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a7eaec02ef5f49f4954770ca017eb2f374335f2fc339c4f34cbfd4b9104e9728
MD5 6353f04905c0523f3b3533610c25a8ec
BLAKE2b-256 18d111ff577fa52338828b7315fc54d47a33a270640abb2e22d418088e556564

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.5-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 76.9 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.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 1a556ff146c599c7bd8661b62fca00d548e8f57ff89458dc5e1ec4659d1cf824
MD5 d7e91023140b7dc3908784bcce96f0aa
BLAKE2b-256 fcbb0589cf08de3cab1997bda53c7afd9e58dfde2af933e135fee10f8f8e99da

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 87.5 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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 93a207433fc5b322449768e8fc13be90e9df40b84947025819e9e50be918546f
MD5 d794fe5c26f0a547a118d4c0042c7ace
BLAKE2b-256 43a9747deb64819aede2747138e01f6479aef835806dd087a80eacdeab3fa770

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 76.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.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 accd80b2ed381d1e33218c1d8de3eca29facb7224bd587947d9dec9c5b5d3c92
MD5 f2ca8f01a457f70b9a7fe82277467a77
BLAKE2b-256 22fc7676617f4516569c26d4e71d1c6345512f25037c9481d2ea635bc20e25f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.5-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.5-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.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b9fd517f2635a26b7ebce4d5af93602d113dc73fa4ca4c54cd6e73fd41cac472
MD5 9b2c68437b4a6e712bf4ab05e1fad295
BLAKE2b-256 13e439d195673b63118051aca4cd75008c02c380ce105df68e45c39680d65883

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7f781b4f71b81365cfde191e0622fb42e1a414d829042ce701ed23e982bbacec
MD5 5e9952a48501a7151a4e30e375cb33cd
BLAKE2b-256 aabd1e605c175408bfa27f54a974b1ddba3022c891319a18a7258e198d450fef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9cb5ec1dc946a9afbea97cbd8624a768d1990d2ff8be62976c11aa1508c8bcfb
MD5 d7190823be7af9e5839dfee2299d4665
BLAKE2b-256 a330ab8c6ff0aff6d5864bdd6a7537e2346c40eb3fbe4b3e5d73c137c9b8c579

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1607d9b8cc5112234ec9b1c8cca4aef045f6e73f7fb672ab2f89168bb485da3b
MD5 a9db2cb3a5931887cb24927006a22219
BLAKE2b-256 9513d9d251f62b714773bcdaeef1d246f7a614154c4e00ae119d0b5b91963e3b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.5-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 76.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.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e174cba41046ff92bf9b5cba4c1182ec7d6c54ebdcaa8f7633fb1ccc4e6c8e0f
MD5 01263325a4d85573837c5eda388829ef
BLAKE2b-256 8c560ca4182970b45cbe88618853462231efdf51a55a02b899a62e886cfe5473

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 87.7 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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 05a9617ac4aa0409e6746a0d6cc924fc743acbe766a23d88f49181fefc77de5b
MD5 089876b3e2c82d695b42c2e50ece8f05
BLAKE2b-256 28a9788e494bbaf573487d783c1a603df1d7f28fc30e1c825072e4d59b312987

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 76.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.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 296636b09d141203ded2ea2437b888a9e659a5d629b5e57d96c43d7732a52bc1
MD5 6edb442f20eec0e46078997606485d50
BLAKE2b-256 1069e4bb851f9b3950befffb3921a57030648f1c6f90c2406a8a01c72ab329a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.5-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.5-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.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7e793b351b919bd0a29ac8c54b13a6e03e4f43e9276a447cebc752ac90b17b8d
MD5 0768072ffeba6fe0879357decf37c014
BLAKE2b-256 36dad6426d7457e3daed3d61e5e4e3d758cc75f14736fb039e215aad0ca14c75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f2a5011cb5c84bdfa751a5ab747d86e9e4e49e267fa1ed2a7da9a4ca2594715a
MD5 4ed8b6a78175a36bbf426d80ca137359
BLAKE2b-256 86a2099c01a5c97537026e41f71f676c1fad4293e9cd44ee2d8cf6e083ef4846

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae36ced4743111c89559ef99ae33f98c83cd36cb348a1dcbe1df415fed9c55c4
MD5 33888ffa3289eab7fe5c37b23e201e29
BLAKE2b-256 b68efa96087c10797ccc0fc5f3e0c912076314aa86b1b5efa38f548cff25be3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 952642656deccb1806bb53d076dd791fd41572ac649bcf4e4e193d7fd8cab450
MD5 d22124d60cf39e7ad097eee8073f89b4
BLAKE2b-256 021fe145773d96d6f1ebacbd28c95877119a2b5eab54634fc9ec35f4cdca972e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.5-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 76.2 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.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c51f53f0fbe87948d4940ab6456ebff37c334de05ebdf5295b747ba994f02f2a
MD5 88aa6d37d2f483ddbaa16e7c883bc55a
BLAKE2b-256 25dcf78fb67a21d8759578e9df9c028002c7344c281408a6e2f050c5852a2f80

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 86.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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 18bb641259fee3c5ce60a01bbda62915050f3ae5da04dc1fa614bc6a2c33a34f
MD5 08c9dbe9054625075a7ccfa18da249e9
BLAKE2b-256 318091861eff2990c366331bb5be1e51f56a37ce3f8cb0363004a6661cf2372a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 75.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.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 430afa5da646f0e0a8d3e7d7186b65d7d694f7d1678ecc8d635264c61381e977
MD5 66ef476d246f2c0e5d829298dac6c8ab
BLAKE2b-256 cf8d1af10e88d1248f066819dd57324bea6fb91fd46ec5cdafef47a376bcc0f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.5-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.5-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.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c889489c3d76dd039f57fc8260cc6e96bed2572ad855186f3d3aff541f65fe7d
MD5 76a719329dfc376c04739a6bfb8a4c83
BLAKE2b-256 91c120ba7e475e9e2e7749acc7b87763cf6666c8bd2d98251ba60ecd1e8239d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26f4799032c6ef664a0ed13fb1189a4f4d0ba4dfd9f9dbdf9669ad182feb5610
MD5 cbc07bd006273029b16a97b16d2cd438
BLAKE2b-256 d8b681319cdfec9a0bf698bc4613a3b979c540682ded586e84a0b7a56247634a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32577d60b4d782b135b2c1e241d51c21f8a68721d5405985576e977a88b51082
MD5 3c5a6e9ced5d4cd2eba9df92736cb4cc
BLAKE2b-256 709aa932035cce6eba366c11a90b061a2812842ce319addacf1d1e9d054b2038

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f9d4d5d4af8b464d0d8520b235401e22752825614bcd8b146b0464214a4d75bf
MD5 25f4ebc2f2ba2e72719603425fb2ebf4
BLAKE2b-256 80deb588d0c019e8d224e185efdd85bf90d0e677d48d99f6c74e66db17a8efe2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.5-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 76.4 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.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 3753d2c4833a1f2d5b03da7e7b1b7a36629600c0d76a5974f244bdc1a7c049cd
MD5 fb4f129c31b3ecb54c812d1b7c00b100
BLAKE2b-256 6696d2fa17c94db4338ced3d0a84ed10ace507d5d74fd6531761a9c5d1938f7f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 87.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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 90e8263a9f805c716aaf5a3624256d4fcdd2e07252b63d2337e390d6669be248
MD5 2784c45121b2b686dcad32b21126ebd7
BLAKE2b-256 ff18a0c87b3c2c76ca769199e6a771a2c916fa9a3c61f04e33f45e6c474c4085

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 76.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.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 77590e3e028ccbc33b8847e0b53ef9d56e5ca752b880a5ad55f6a31274fea2d2
MD5 460f362beddcd1fb831c94c8539763e3
BLAKE2b-256 22933aaf2367dc3531529fda459d3a94e3794720ae57d89d2f8dc71f6af123ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.5-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.5-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.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b5052ae4f87171e1f98befca7b476ebfd9ac5b15e035fb2d23011c2eb521d08
MD5 dd8eded3f02f2cca88935f30f8f31f4a
BLAKE2b-256 ce66f842883a3462ad224a59222af428b67756441cf6a71a8f87dfd9dc805c70

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 878c30bee1ee5f37ec4e0b6391a5fbd431af74306095554bdff7854397406a7c
MD5 b715ff15ab55fc181d79eb90ad9e6858
BLAKE2b-256 85442d36766310d77be7479b969f59edbc809ae5dd88801771147152d6291684

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbf0d1c26755d7deed5204724c6ed7696c10c8a37e79f82e21b812d3855c628f
MD5 42c5e0f683c5dd563bd01622d58d9dcb
BLAKE2b-256 a57c61d7a67bb38b14ad31041a5afd98a606c43b0ad99cbae5f82cf909922bc4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 914b60e0c6c0cae543a630a57d44169e82baac62b702c3fad78371e95b977e2e
MD5 5d3bc9daf32ad23e5f2b805b92be1a4a
BLAKE2b-256 5424430a7b1ff24a8abf4824ed3f6848c629505aca9ef0c5c2a103e79b92e7ae

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.5-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 76.4 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.5-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 a6fdf20ce5e1a01ce36a8aadf13fff542789b41ab9654ab31f9a3c4f2657fa41
MD5 416ff3c277f2d2414508ac39e3f48fb3
BLAKE2b-256 5ceb8f976d3e87b4914f4666dd6983dcdc8dd4d0a9f48df798c180691a91e3ca

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 87.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.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 afabf06a975121abd53a552da452ac510f2a2ea90e931e729d313f6503f1227c
MD5 8a9454cec80baa2bae31b93d7fc80a69
BLAKE2b-256 22f28fa37a01cc8f8d9b7b066cace2065de2a0794a543d22a85518e7cba36c7e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quatint-0.0.5-cp39-cp39-win32.whl
  • Upload date:
  • Size: 76.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.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 393a2822815a740e3a75f134bf321cbc025cb910732e8099678fec9428d37207
MD5 271122fbe9b619a402592299924ae9cd
BLAKE2b-256 1d75565c088de0067086999dbaadeecda291c177cbc617829477df5076bc2b4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for quatint-0.0.5-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.5-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.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98d7b01380165dde4ec56d00ab45484cbbe23eeeb2063c815cf132836c04f9f4
MD5 42a7e0f18a2f236ad9d80f2edfd347d6
BLAKE2b-256 dba354b8be9f404841a7bcd01a8fde4a1b68121ef2afd03d928d45098c08f7a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b186d9fe42f1e42075b9880ae58b42ffdf79d06d8b1e490d1b2a578db82e5203
MD5 c0021e5a64f4f921a074c691e573eb4e
BLAKE2b-256 2434820fade0eac3062a1bb94ecc924876efca5a37f435b0f2caa1cbe9f61a5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ab8767fb5c058ee66c6db70bc31294a073bdf34a5a783162a50769e22822dfa
MD5 7e266e3a8291b928bc7d22086e1285b1
BLAKE2b-256 51f0903780b148c9126206812d7e3d2e564531b7ca7cf8faedc161f03f9aaf6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quatint-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 28acbb4f73b9ad98157e3b0f4f8f4099fd33e9a3acceb1cbac8037cd90087d73
MD5 1581149a049963cab683438b15c0317d
BLAKE2b-256 e3c21dd69645f0b6b38a6732fc7f960a6d883ab9e519127e641877edef679658

See more details on using hashes here.

Provenance

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