Skip to main content

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)

New helper methods on every Hurwitz integer value:

  • x.content() — largest positive integer n such that x = n*y for another Hurwitz integer y.
  • x.factor_right() — a plain ordered tuple of factors whose product via prod_right(...) is exactly x.
  • x.factor_left() — a plain ordered tuple of factors whose product via prod_left(...) is exactly x.
  • x.factor_right_detail() — structured right factorization as a NonCommutativeFactorization.
  • x.factor_left_detail() — structured left factorization as a NonCommutativeFactorization.

Installation

python -m pip install quatint

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

Quick start

from quatint import hurwitzint

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

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

Half-integers (Hurwitz elements)

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

from quatint import hurwitzint

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

Division (left-quotient)

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

from quatint import hurwitzint

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

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

Right-division (right-quotient)

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

from quatint import hurwitzint, rdivmod

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

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

GCD (left and right)

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

from quatint import hurwitzint

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

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

Factorization

quatint exposes two levels of factorization API:

  • factor_right() / factor_left() return a simple ordered tuple of factors.
  • factor_right_detail() / factor_left_detail() return a structured NonCommutativeFactorization with metadata.

Use the plain methods when you just want factors that multiply back to the original value. Use the detailed methods when you care about the separated integer content, unit, normalized prime factors, or canonical ordering.

Plain factorization

The flat factorization methods return a tuple of hurwitzint factors. Because multiplication is non-commutative, the order and direction matter.

from quatint import hurwitzint, prod_left, prod_right

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

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

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

For factor_right(), multiply the returned factors using prod_right(...), which behaves like ordinary left-to-right multiplication:

assert prod_right((a, b, c)) == a * b * c

For factor_left(), multiply the returned factors using prod_left(...), which multiplies each new factor on the left:

assert prod_left((a, b, c)) == c * b * a

Detailed factorization

The detailed methods return a compact normal form, in a class called NonCommutativeFactorization with these properties:

  • 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

NonCommutativeFactorization also exposes some utility methods for convenience, such as:

from quatint import hurwitzint

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

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

fl = n.factor_left_detail()
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_detail() / a.factor_right_detail() → NonCommutativeFactorization
  • NonCommutativeFactorization.prod_left() / .prod_right() / .prod()

Release files for quatint 0.0.9

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for quatint 0.0.9
File
quatint-0.0.9-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
quatint-0.0.9-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
quatint-0.0.9-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
quatint-0.0.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
quatint-0.0.9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
quatint-0.0.9-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
quatint-0.0.9-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
quatint-0.0.9-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
quatint-0.0.9-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
quatint-0.0.9-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
quatint-0.0.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
quatint-0.0.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
quatint-0.0.9-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
quatint-0.0.9-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
quatint-0.0.9-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
quatint-0.0.9-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
quatint-0.0.9-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
quatint-0.0.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
quatint-0.0.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
quatint-0.0.9-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
quatint-0.0.9-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
quatint-0.0.9-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
quatint-0.0.9-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
quatint-0.0.9-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
quatint-0.0.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
quatint-0.0.9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
quatint-0.0.9-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
quatint-0.0.9-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
quatint-0.0.9-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
quatint-0.0.9-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
quatint-0.0.9-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
quatint-0.0.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
quatint-0.0.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
quatint-0.0.9-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
quatint-0.0.9-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
quatint-0.0.9-cp39-cp39-win_arm64.whl CPython 3.9 CPython 3.9 Windows ARM64 Details
quatint-0.0.9-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
quatint-0.0.9-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
quatint-0.0.9-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
quatint-0.0.9-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
quatint-0.0.9-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
quatint-0.0.9-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details

Total release size: 8.4 MB

Release files / quatint-0.0.9-cp314-cp314-win_arm64.whl

Download URL quatint-0.0.9-cp314-cp314-win_arm64.whl
Size 109.2 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
5ac25acb067647245e3635ea0ba2672ddb2a40f96d632482db646fc9565e4512
BLAKE2b-256 checksum
How to use checksums
f22ae552a74282b3cb1c7f33db73b3a7cdf92245133c04b0dc61b4808e4de303
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp314-cp314-win_amd64.whl

Download URL quatint-0.0.9-cp314-cp314-win_amd64.whl
Size 125.6 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
c47df4d7792851494ad1a42d1d30011d3204c69a645f092c9f8492a898bc1472
BLAKE2b-256 checksum
How to use checksums
6d4823dedf0fdca6065d191f4eacec10e404a682a428fb6ccd2b236ca4a5a047
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp314-cp314-win32.whl

Download URL quatint-0.0.9-cp314-cp314-win32.whl
Size 107.8 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
45f18e0fa745872ba99adbcdbecf8885f873bbabca544fe23f5ac8d71a2e4cd8
BLAKE2b-256 checksum
How to use checksums
73c26e2ed997184b99ca6159ef4a2bd31dcab6ac2e5367e8ab11aa75773c81d9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL quatint-0.0.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 354.4 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
793e3aa03c90ea2dd75526ccb4755576901eda1a240e3f98a51878870dfb2756
BLAKE2b-256 checksum
How to use checksums
49878ae4e3b6098a5b7bc4bb2dc1c5f6b88ef7f2533aa674275988ee31ae27ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL quatint-0.0.9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 335.8 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
fc8b7018a79b417ecdc347d9843ce929b68202b0a8b8860f3c015ae20cd3ede1
BLAKE2b-256 checksum
How to use checksums
4fe6d5d47e14256216e9667ca6638e1fe790536e80807b51d70b0f5bb80e1760
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp314-cp314-macosx_11_0_arm64.whl

Download URL quatint-0.0.9-cp314-cp314-macosx_11_0_arm64.whl
Size 185.3 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
62ce2885567dcde6dcab26fb96428eb992c1c2945a26a4eeff09c8df9de44cb6
BLAKE2b-256 checksum
How to use checksums
6ae1215f0c1c43c2ab2e860fdc95934f5a2ad2feb2e59a9953b14643c8cec8e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp314-cp314-macosx_10_15_x86_64.whl

Download URL quatint-0.0.9-cp314-cp314-macosx_10_15_x86_64.whl
Size 196.2 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
4cec3b4057a914c7051cfe039fbac640a29952ed10cdf0109b3619e245acac23
BLAKE2b-256 checksum
How to use checksums
98a2842e0a9f171b4e1c809bef705ac5cdb34e39e59e00a6b17aa40cb3c32ef7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp313-cp313-win_arm64.whl

Download URL quatint-0.0.9-cp313-cp313-win_arm64.whl
Size 108.0 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
76543d795156c338956af11be3fc5aca951c6d65a917600f5c7c92728279c5b4
BLAKE2b-256 checksum
How to use checksums
a3cb2e4eae90f67925712065e983576f1670f27d5acd6d5c7adb1e8b5d3d110c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp313-cp313-win_amd64.whl

Download URL quatint-0.0.9-cp313-cp313-win_amd64.whl
Size 124.7 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
4b0ed23501953d8cdd6ef319163f2cedd213241dffaca16c74ef8f17877be513
BLAKE2b-256 checksum
How to use checksums
0f835e98db0244b0bfbe5671d780846d70bc2a0ea14542a023aa170b6ec1be6a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp313-cp313-win32.whl

Download URL quatint-0.0.9-cp313-cp313-win32.whl
Size 106.5 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
abb8f9251d9370f39b3dda9110fb472e7845b2eac6725245d95845bb828fc3b5
BLAKE2b-256 checksum
How to use checksums
ebc85a40b8dbd9071bd9bb45e719092a25bd3f0bd8707b22c714d561b61acff9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL quatint-0.0.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 354.1 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
c38177a7243f1fc4993f1952afc10d7c87f5ce0257ea6a83b39e5223df3d5dbf
BLAKE2b-256 checksum
How to use checksums
87729a6e67aac8479641a63c8f9388b740a9a963de826c393be3c1da4681ac80
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL quatint-0.0.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 334.9 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
d990a02d95a3249e1bceedfd9b93f1c538aaf0e421b4bf080fd4ebbc019d5f0b
BLAKE2b-256 checksum
How to use checksums
e8ec499ef7851d9b85c06f75b382d014f7aa51c20de497f2e7da6ec52494ceeb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp313-cp313-macosx_11_0_arm64.whl

Download URL quatint-0.0.9-cp313-cp313-macosx_11_0_arm64.whl
Size 185.7 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
69a0ea1191dcb49950195dde127b11195de36cffd932fbb96ee0aa19e8ee2deb
BLAKE2b-256 checksum
How to use checksums
2ee3c7b6798f7db66eb108086fffc703515f58c428cc1228152134f53819f054
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp313-cp313-macosx_10_13_x86_64.whl

Download URL quatint-0.0.9-cp313-cp313-macosx_10_13_x86_64.whl
Size 197.0 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
648aecaa5f342bc6bf7a3c82079d45210f7056aceef313feabd660dfb077fe43
BLAKE2b-256 checksum
How to use checksums
7ddc21184e975273caefdc1dc932a358e509b32bddd4e2eb032f5e89e1c6d244
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp312-cp312-win_arm64.whl

Download URL quatint-0.0.9-cp312-cp312-win_arm64.whl
Size 108.3 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
c266da605ecaee392ea230d221e436f7a7a614c1d82b88061e9d545b21ab6ae6
BLAKE2b-256 checksum
How to use checksums
fc60123298ee36123e9226a4156e16eda4e0c946a552a34802b258840a1495d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp312-cp312-win_amd64.whl

Download URL quatint-0.0.9-cp312-cp312-win_amd64.whl
Size 124.8 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
69ec52d82c6a5e4a13022022517f0a45bd36bdaf6a4f3f7e71697e79a48f703d
BLAKE2b-256 checksum
How to use checksums
316c54793718994a98bc0135c17963da18d0e9fcabf78f63842521a92b8aa21f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp312-cp312-win32.whl

Download URL quatint-0.0.9-cp312-cp312-win32.whl
Size 107.1 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
8a8da87a54d4cc8349bd4b531ee38988f425092e2b62b8252a61a32e1b816c2c
BLAKE2b-256 checksum
How to use checksums
5ab939e66a2dec94f20cab9749d8503a58c450b7362a0afd47b2c400c6e081a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL quatint-0.0.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 357.9 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
aaa5988d5bbf37a727d7a11bce67b8f9a30589691c2847792d05430c1efe82e7
BLAKE2b-256 checksum
How to use checksums
7f3754c4cdd38d52df430ce526e703b949a5865afcf771b3e59f78ee44b33d3a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL quatint-0.0.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 339.2 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
224d270fed0245a881392b4d471c40ebdd02e63678711ec3ef01c37247d06152
BLAKE2b-256 checksum
How to use checksums
81280de8d8b8aa1ef556c2c383c55f7f22470336c2e53dbe810ca038e8e66b00
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp312-cp312-macosx_11_0_arm64.whl

Download URL quatint-0.0.9-cp312-cp312-macosx_11_0_arm64.whl
Size 186.6 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d2299a569e77aa41ef8c278b5dc299f10ceaafadc8f3bf0fffe5d55baf386dce
BLAKE2b-256 checksum
How to use checksums
e204e78ae52912f54cd37fbf16ca4bd7c39475a7e479ca03dfc29ca145fb2974
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp312-cp312-macosx_10_13_x86_64.whl

Download URL quatint-0.0.9-cp312-cp312-macosx_10_13_x86_64.whl
Size 198.5 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
e03c7a237b283f95686345d5c5783d459b3141bdd05cce2e5f37fdd82855fbdb
BLAKE2b-256 checksum
How to use checksums
2cb406d6dc5fbeb6a589174a30467a07093029e677d183ce65c5a4013c5cd4b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp311-cp311-win_arm64.whl

Download URL quatint-0.0.9-cp311-cp311-win_arm64.whl
Size 106.9 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
fe2252ea04e8ae291d0b3fc3a7c815f6629e8fc19704b289c7e770380feba4c5
BLAKE2b-256 checksum
How to use checksums
07a61094cc5e182c01a2b6447826be03cd164326e6d39b472072cc841999bcd6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp311-cp311-win_amd64.whl

Download URL quatint-0.0.9-cp311-cp311-win_amd64.whl
Size 124.2 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
d18db2b4eab8a26ce8e61b85734b7cf329d40c082923c4a1e0ab1bd73a9476bd
BLAKE2b-256 checksum
How to use checksums
dd91714263057cee1cda0a5c1bc142728b4f18b8eb0e210e06a8711458502366
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp311-cp311-win32.whl

Download URL quatint-0.0.9-cp311-cp311-win32.whl
Size 106.5 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
6ce36e9272e84d93faedd784c87668b802b6967bfefa7f97275128fd60f4a382
BLAKE2b-256 checksum
How to use checksums
e7853d6a7445e7209846100b879da7a4020549c406828170f94e9757683d4993
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL quatint-0.0.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 346.2 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
0ca19da1b5dc33e42240707fa1878835905a7c49f0961a3ab36605fe884b19c0
BLAKE2b-256 checksum
How to use checksums
24d7d9a8c7839e4ea547c2858f2beefd2b9ace5ad168db7cef7eb13b98fb8718
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL quatint-0.0.9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 330.9 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
e7508c0f0461e633b205e0cfc98d32561f04184dcd567b956910005144d9864e
BLAKE2b-256 checksum
How to use checksums
3b5de7b6d4a6e57dd4f0074be71d9d2d4cddaed16ee5da43d19f6639764eb516
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp311-cp311-macosx_11_0_arm64.whl

Download URL quatint-0.0.9-cp311-cp311-macosx_11_0_arm64.whl
Size 185.5 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ba09b20c615015d312241ae623051d14bda787007ef757bd8ec946508dd68d6d
BLAKE2b-256 checksum
How to use checksums
a3191d3aa444d7f311718e3d84882255fe4cc7008c8e04b2fb4fc444bd426fe9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp311-cp311-macosx_10_9_x86_64.whl

Download URL quatint-0.0.9-cp311-cp311-macosx_10_9_x86_64.whl
Size 195.4 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
2f969957285726924c87b975b9a27aaff08764b36c6906b0e36915a740bf043d
BLAKE2b-256 checksum
How to use checksums
911f51f08636aafa8bbcc6036cfce641d50dd68d3b0a126ab3f5d78dc518fd44
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp310-cp310-win_arm64.whl

Download URL quatint-0.0.9-cp310-cp310-win_arm64.whl
Size 107.3 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
f57eda2cbdb7328ada212f23f8ac89aefc64a1092458c2a6c73dfe0339cd34dd
BLAKE2b-256 checksum
How to use checksums
35dd369b6efb6ce4099067cecd9fa25ae7339f9c6e25f9f5306d306ea0e534a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp310-cp310-win_amd64.whl

Download URL quatint-0.0.9-cp310-cp310-win_amd64.whl
Size 124.3 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
538735c33157f09af3db9d36268f93ad9421225d62b77f580baaa9aa3f08d68f
BLAKE2b-256 checksum
How to use checksums
e67f26ae9ad153b869af1cdf5a860b2ce1a460a83377974d98bf455b480f05f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp310-cp310-win32.whl

Download URL quatint-0.0.9-cp310-cp310-win32.whl
Size 106.6 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
fc248daa5cf2a2747e59892232881bb3bd6cd9b066f1870ad45641845f955577
BLAKE2b-256 checksum
How to use checksums
7f7edfec158f82c4c05c84e91c1d4636c3d874416361489a21b7af1100b9db48
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL quatint-0.0.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 346.0 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
79441bf709327722153690e2db718fcc4171b1b55fce0ea2d0db39b63077c402
BLAKE2b-256 checksum
How to use checksums
8ff7f3d8ae15504574b9173011bd395d2691b3316a509057afa7d247c7732f7d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL quatint-0.0.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 331.7 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
75f73a5246055153bcdb2734125cae28988d9e912a218671bba0fdad49382af9
BLAKE2b-256 checksum
How to use checksums
263c1f053615cbb6890a80d2a1c71b26efeacf0edbafca3555dc3a263fb4d6fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp310-cp310-macosx_11_0_arm64.whl

Download URL quatint-0.0.9-cp310-cp310-macosx_11_0_arm64.whl
Size 187.4 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
65fff44ea150415c33492b08adfea8189bc796690d98d46a6dd1a97e8a0e5e3c
BLAKE2b-256 checksum
How to use checksums
dea8c01deff7acabc66b8e17df14224d56ab5ff47b0f51a4527bf68c175ae955
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp310-cp310-macosx_10_9_x86_64.whl

Download URL quatint-0.0.9-cp310-cp310-macosx_10_9_x86_64.whl
Size 197.5 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
e9a58c7ea52b9be5150b3181c72854ab5221a2f6f19631aad206f6c6f79d81a6
BLAKE2b-256 checksum
How to use checksums
1af14d4c57a79ab92a7e4cc3971311bbdeedeea6dd1a2d5f0a6b1debd4bd0fe9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp39-cp39-win_arm64.whl

Download URL quatint-0.0.9-cp39-cp39-win_arm64.whl
Size 102.6 kB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
b702084a5370bced4491f913cc57de7de2eb0e74ee86b2b495a791d48b078235
BLAKE2b-256 checksum
How to use checksums
26fed783cd9c9f194fcdc9e9628a1ec19c249e204358d1a6a70c9e2df30a4796
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp39-cp39-win_amd64.whl

Download URL quatint-0.0.9-cp39-cp39-win_amd64.whl
Size 119.4 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
8cf0cfaa1467682f5206cb7c821a278af541dd74ecf85e105e61a518166c5a25
BLAKE2b-256 checksum
How to use checksums
bf5f8a2707086d2225bcb64a2c0668bb0ecd0c6104edec99948e48e3d850f492
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp39-cp39-win32.whl

Download URL quatint-0.0.9-cp39-cp39-win32.whl
Size 102.4 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
1c4d35afc95c3991cc529dc7d220d51e42a12fefbafe1c6afe496e704e3f5168
BLAKE2b-256 checksum
How to use checksums
64163f6ef4de78e42e86338bbc7b7cfcfd00d1262e67e8b722a0cf91eefb5f14
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL quatint-0.0.9-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 327.6 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
18ab6938fe17f4cdd72ab2bc07e8b882754b2beb6e45b31705d66068c5bf5f8d
BLAKE2b-256 checksum
How to use checksums
40317a3d4d89d0823046797fd9094d5ed0d16597c83ad3a80a2904a5abc6585b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL quatint-0.0.9-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 314.0 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
79893ab5161a33148df8f37dfa7d46611c88492ca4c6334bd9f112a8e4f9e775
BLAKE2b-256 checksum
How to use checksums
05a9581f98db3a6d2f12cf86aa61298d94c40adb9ab9486c141e4de6f6d170af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp39-cp39-macosx_11_0_arm64.whl

Download URL quatint-0.0.9-cp39-cp39-macosx_11_0_arm64.whl
Size 178.2 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9ba516932ac962f0a919515c8d88ef56ef4728df681f442f229f8f9d7d941ff7
BLAKE2b-256 checksum
How to use checksums
629c28903069e3c4ab947336a8860708ddb4ceb5d7ba9f00fca844e31b58e55c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release files / quatint-0.0.9-cp39-cp39-macosx_10_9_x86_64.whl

Download URL quatint-0.0.9-cp39-cp39-macosx_10_9_x86_64.whl
Size 187.3 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
3ee13a4af6795176ef8b84791068e0b8f7b80ec1eacd8b2faeb52d38f5e0a044
BLAKE2b-256 checksum
How to use checksums
962e5351fee49edecd9e5a52cc524a8cc235cba27c9f3ea1061f4552df1e6bdd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.12

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on May 4, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.0.9 This release

42 release files

0.0.8

42 release files

0.0.7

42 release files

0.0.6

42 release files

0.0.5

42 release files

0.0.4

42 release files

0.0.3

42 release files

0.0.2

41 release files

0.0.1

35 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page