Skip to main content

A quadint class, for using quadratic integers.

Project description

quadint

Fast, integer-backed algebraic number types for exact arithmetic in imaginary quadratic integer rings.

  • complexint: a Gaussian integer type that mirrors Python’s complex, but stores int components (no floating-point drift).
  • QuadInt / QuadraticRing: a general quadratic-integer implementation for elements of the form
    $(a + b\sqrt{D}) / \mathrm{den}$ with $den ∈ {1,2}$.
  • eisensteinint: Eisenstein integers in the ω-basis (a + bω, where ω = (-1 + √-3)/2).
  • dualint: dual integers of the form a + bε where ε² = 0 and ε != 0.
  • splitint: split-complex (hyperbolic) integers of the form a + bj where j² = 1 and j != 1.

Designed for discrete math, number theory tooling, and high-throughput exact computations (this project is built to compile cleanly with mypyc).


Installation

python -m pip install quadint

Quickstart (recommended): complexint

from quadint import complexint

a = complexint(1, 2)
b = complexint(3, 6)

c = a * b
print(c)          # "(-9+12j)"  (exact, integer-backed)
print(c.real)     # -9
print(c.imag)     # 12
print(type(c.real))  # <class 'int'>

print(abs(a))     # 1^2 + 2^2 = 5  (norm)

complexint is ideal when you want something that feels like complex, but with infinite-precision integer components.


Quadratic integers: make_quadint

Create a ring instance for a chosen discriminant parameter D, then construct values in that ring:

from quadint import make_quadint

Q2 = make_quadint(-2)  # Z[√-2]

x = Q2(1, 2)           # (1 + 2*sqrt(-2))
y = Q2(3, 6)

print(x * y)           # "(-21+12*sqrt(-2))"
print(abs(x))          # norm: 1^2 - (-2)*2^2 = 9

Common operations include +, -, *, ** (non-negative powers), conjugate(), and abs() (the norm).


Eisenstein integers: eisensteinint

from quadint.eisenstein import eisensteinint

z = eisensteinint(2, 3)   # 2 + 3ω
w = eisensteinint(1, -1)  # 1 - ω

print(z)
print(z * w)              # exact product in Z[ω]
print(abs(z))             # norm (integer)

Use real and omega to access the ω-basis components.


Dual integers: dualint

from quadint import dualint

z = dualint(2, 3)   # 2 + 3ε
w = dualint(1, -1)  # 1 - ε

print(z)
print(z * w)              # (2+1ε)

Use real and dual (or epsilon) to access the ε-basis components.


Split-complex integers: splitint

Split-complex (a.k.a. hyperbolic) integers behave like complexint, except the generator satisfies j² = 1 instead of j² = -1.

Unlike complex numbers, split-complex numbers have an indefinite norm and zero divisors (e.g. (1+j)*(1-j) == 0).

from quadint.split import splitint

z = splitint(1, 1)    # 1 + 1j
w = splitint(1, -1)   # 1 - 1j

print(z * w)          # 0j   (zero divisor behavior)

Division & interoperability notes

  • This package is primarily intended for exact, discrete arithmetic (+, -, *, **, conjugation, norms).
  • Some division helpers exist (e.g. divmod, //, %) for imaginary quadratic rings, using a nearest-lattice approach; it may be NotImplemented for D ≥ 0, and behavior depends on the ring being Euclidean enough for your use case.
  • **Floats and Python complex are accepted in some operations but are converted via int(...), which truncates toward zero. If you care about rationals, avoid mixing in float.

Example of truncation behavior:

from quadint import complexint

a = complexint(3, 6)

print(a / 3)     # "(1+2j)"
print(a / 3.5)   # "(1+2j)"  (3.5 -> 3 by int(...) conversion)

print(a + 1)     # "(4+6j)"
print(a + 1.5)   # "(4+6j)"  (1.5 -> 1)

Minimal API overview

Constructors

  • complexint(a: int = 0, b: int = 0)
  • eisensteinint(a: int = 0, b: int = 0) where a + bω
  • dualint(a: int = 0, b: int = 0)
  • splitint(a: int = 0, b: int = 0)
  • make_quadint(D: int) -> QuadraticRing

Ring instance (QuadraticRing)

  • Q(a: int = 0, b: int = 0) -> QuadInt (constructs using the ring’s internal basis)
  • Q.from_ab(a: int, b: int) -> QuadInt (construct with user coords, respecting den)
  • Q.from_obj(x) -> QuadInt (embed int/float, and complex only when D == -1)

Value type (QuadInt)

  • x.conjugate()
  • abs(x) (norm)
  • divmod(x, y), x // y, x % y (where supported)
  • Iteration/indexing over the stored coefficients: list(x), x[0], x[1]

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.

quadint-0.0.13-cp314-cp314-win_arm64.whl (90.8 kB view details)

Uploaded CPython 3.14Windows ARM64

quadint-0.0.13-cp314-cp314-win_amd64.whl (107.3 kB view details)

Uploaded CPython 3.14Windows x86-64

quadint-0.0.13-cp314-cp314-win32.whl (93.3 kB view details)

Uploaded CPython 3.14Windows x86

quadint-0.0.13-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (261.2 kB view details)

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

quadint-0.0.13-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (252.3 kB view details)

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

quadint-0.0.13-cp314-cp314-macosx_11_0_arm64.whl (139.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

quadint-0.0.13-cp314-cp314-macosx_10_15_x86_64.whl (140.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

quadint-0.0.13-cp313-cp313-win_arm64.whl (89.7 kB view details)

Uploaded CPython 3.13Windows ARM64

quadint-0.0.13-cp313-cp313-win_amd64.whl (106.3 kB view details)

Uploaded CPython 3.13Windows x86-64

quadint-0.0.13-cp313-cp313-win32.whl (92.0 kB view details)

Uploaded CPython 3.13Windows x86

quadint-0.0.13-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (262.1 kB view details)

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

quadint-0.0.13-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (252.7 kB view details)

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

quadint-0.0.13-cp313-cp313-macosx_11_0_arm64.whl (139.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

quadint-0.0.13-cp313-cp313-macosx_10_13_x86_64.whl (141.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

quadint-0.0.13-cp312-cp312-win_arm64.whl (89.5 kB view details)

Uploaded CPython 3.12Windows ARM64

quadint-0.0.13-cp312-cp312-win_amd64.whl (106.4 kB view details)

Uploaded CPython 3.12Windows x86-64

quadint-0.0.13-cp312-cp312-win32.whl (92.4 kB view details)

Uploaded CPython 3.12Windows x86

quadint-0.0.13-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (263.9 kB view details)

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

quadint-0.0.13-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (254.2 kB view details)

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

quadint-0.0.13-cp312-cp312-macosx_11_0_arm64.whl (139.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

quadint-0.0.13-cp312-cp312-macosx_10_13_x86_64.whl (142.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

quadint-0.0.13-cp311-cp311-win_arm64.whl (89.3 kB view details)

Uploaded CPython 3.11Windows ARM64

quadint-0.0.13-cp311-cp311-win_amd64.whl (106.0 kB view details)

Uploaded CPython 3.11Windows x86-64

quadint-0.0.13-cp311-cp311-win32.whl (91.3 kB view details)

Uploaded CPython 3.11Windows x86

quadint-0.0.13-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (255.9 kB view details)

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

quadint-0.0.13-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (249.7 kB view details)

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

quadint-0.0.13-cp311-cp311-macosx_11_0_arm64.whl (138.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

quadint-0.0.13-cp311-cp311-macosx_10_9_x86_64.whl (140.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

quadint-0.0.13-cp310-cp310-win_arm64.whl (89.5 kB view details)

Uploaded CPython 3.10Windows ARM64

quadint-0.0.13-cp310-cp310-win_amd64.whl (106.2 kB view details)

Uploaded CPython 3.10Windows x86-64

quadint-0.0.13-cp310-cp310-win32.whl (91.5 kB view details)

Uploaded CPython 3.10Windows x86

quadint-0.0.13-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (253.4 kB view details)

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

quadint-0.0.13-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (248.5 kB view details)

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

quadint-0.0.13-cp310-cp310-macosx_11_0_arm64.whl (139.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

quadint-0.0.13-cp310-cp310-macosx_10_9_x86_64.whl (140.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

quadint-0.0.13-cp39-cp39-win_arm64.whl (89.4 kB view details)

Uploaded CPython 3.9Windows ARM64

quadint-0.0.13-cp39-cp39-win_amd64.whl (106.3 kB view details)

Uploaded CPython 3.9Windows x86-64

quadint-0.0.13-cp39-cp39-win32.whl (91.6 kB view details)

Uploaded CPython 3.9Windows x86

quadint-0.0.13-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (251.5 kB view details)

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

quadint-0.0.13-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (247.3 kB view details)

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

quadint-0.0.13-cp39-cp39-macosx_11_0_arm64.whl (139.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

quadint-0.0.13-cp39-cp39-macosx_10_9_x86_64.whl (140.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file quadint-0.0.13-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: quadint-0.0.13-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 90.8 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 quadint-0.0.13-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 0511d048a03959e2d1033feb4953935166bb192bd492a0245a38dfb8ae9a973b
MD5 745c5432442a8752b1bdc04e9b59ebab
BLAKE2b-256 cf9d35cb6260f90f59ed6b63c577e7c1717b0c1dfa086bb46aa1c123394c46e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp314-cp314-win_arm64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: quadint-0.0.13-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 107.3 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 quadint-0.0.13-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 17edad9910d48537610345f0946e49f16173dfa8fb16157f80df2c8be5782e98
MD5 0044d3b740f42db6841f610b8d20c84b
BLAKE2b-256 3ffe77cb5d3e6a1695b5bdfbb2a4e42cdb4ba3da36be57f7d828ffb84a71149b

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp314-cp314-win_amd64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp314-cp314-win32.whl.

File metadata

  • Download URL: quadint-0.0.13-cp314-cp314-win32.whl
  • Upload date:
  • Size: 93.3 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 quadint-0.0.13-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2b4d04c37b196cd250208a74cf59e72c739bbab8d7938ea12a727170a98ba206
MD5 432d9c257bb5933bdb59169d301c164f
BLAKE2b-256 98bf9063ffdd2ed04ed5aa0ec2f6b618cf63603cd15d757db27f6ae411aa23b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp314-cp314-win32.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b7564f51514063ea1d8ee1dc4876c3a948d8305632b5a4c6afe358f2f3e8e6c4
MD5 3aeed33345fa50af7474c85ed8ff277c
BLAKE2b-256 49c587b52639dd06759e929a1dbe1dfdf318052269b4c931f6aa8260d6f82428

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4e33684850f9a1a0874ad1bb422d4cf1083e0bb334c73e0ef71ee27aebd6ece
MD5 4df541c08033ad9ef5e860d0bc8facf2
BLAKE2b-256 9168c3e72cc1fe3e77633d4470e6009126d0f7d738e06a9afc5b2432b74b6013

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bed375dc78f6e42084c9fd1afdcc66d7cb90df990643460030a27804ab22143e
MD5 3b60d687d4f36972fad6863e65fd9996
BLAKE2b-256 b491962be6c5137a0b0d9a45843070010982722c37a23cc70d407b0557a529a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c263879523b23eacf0e131b632441ff870d2ac2ccc30c6d1495c6563688ea2e9
MD5 b604ee638d3fa1db12203468f689ee5a
BLAKE2b-256 ccd4d99e6554a47ae23e741d47bc865450098e41420f544b2079a28ece1313a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: quadint-0.0.13-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 89.7 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 quadint-0.0.13-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 89de00ed6afd64c0775ad5d9f1ec351a3eb55d04e7ba1abf679ee0e02833366b
MD5 23cf3be6f83ba90105411f812e617b13
BLAKE2b-256 ec459fd10a2cce5b6a91dad8f45fb52417f9a5845f2a2156383013ce814fed8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp313-cp313-win_arm64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: quadint-0.0.13-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 106.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quadint-0.0.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c2a4b3b694b0099205843fc3e8d18a5de186806b2cfb28af998dcd124d8749af
MD5 80f4c096a9f38cc1def8d429d71deaa5
BLAKE2b-256 946bc029ac3e95618daaf4843e102832934bfad894c6d288345c95ac9ad12b99

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp313-cp313-win32.whl.

File metadata

  • Download URL: quadint-0.0.13-cp313-cp313-win32.whl
  • Upload date:
  • Size: 92.0 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 quadint-0.0.13-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c1b0ac1d9ebadbc3ce4301baecd65304bf80f3c7a469a8d7c00715b75ce35099
MD5 47416709bd601a178c81aca3e1e7b6ff
BLAKE2b-256 78f2909c5cddbf3a6d25f82f493b03889312ab71e5add9bc19e377f48d8d3e9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp313-cp313-win32.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8f28860fe3e9697bbe54994ce4e6bcdc1f48b23226e08e399aaa6f8e1d7d9636
MD5 efe99cf8ad1751ffa496ba3a1192d737
BLAKE2b-256 a789998b43e630ad7eb9f6fa7c0e52bc40da612f2a6e660598307f3cbbe9659c

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c1afb92a99e263520759c14e9f7b4843c960182bbb430c6cd477560e273c54d2
MD5 1a2147f82f719269af66b9ea9a2191f1
BLAKE2b-256 2df32735f016bea2fdbcfc876376428deb0a057fadd8f813608f247ee953f0c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13d228a70e14c2349c1cc701c742c561fa9dc8b1ccf5c0b043adc9bad5249fb4
MD5 a924389df5af285fad7f8d12c54c2ac2
BLAKE2b-256 7340994e20820e8fb8e945dbae16bee718607a6536ce3928b3850ea597a41492

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cd9b3ec569dbe32699554647b40067cf74a19e5c61d826b1142937bee459384d
MD5 c47ffabb6e14b4a417000e1e5f43b3aa
BLAKE2b-256 a69639d55958c442a3a736ed19a5f728ad7e926c799f566d1643df9eda465c18

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: quadint-0.0.13-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 89.5 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 quadint-0.0.13-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9f9d1f24b6d8a5f1c73ddf519785a655d96c3b440c7834170cc6d678d79b3640
MD5 7f7aacae2d44fc17f03e1ac38d3efbfd
BLAKE2b-256 084d77bcc9565d675efaa031e2afd8cabaa488f18df36352065aa45bddd2aab8

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp312-cp312-win_arm64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: quadint-0.0.13-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 106.4 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quadint-0.0.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0c3dcc13fb13a43434f882e92a09f6a27479b0c2ccb5fec8e5957c49fb5f4356
MD5 0287625dcf9989bd7e17869991c3caa1
BLAKE2b-256 c3a57896dab9f75866f2c37ba6def7bac8d5c8c53089d2e53b0f2e1447157344

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for quadint-0.0.13-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a29fd708af63eb6bb1453bd8be6e7324e816bb225e0df5d39869315634b77d27
MD5 1f60b101bd6b48359b77d8286d481446
BLAKE2b-256 84b60682a8124ef858c15b9bddd57fb0b13f258ec3edfe99e9a0190fc1dee2f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp312-cp312-win32.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d9c0567b7d80db7a8d70e1330fddcccbaa178ed4b0f30a7142ee43ca18cf1b2c
MD5 eed93cf43767814077f01eb7749468b4
BLAKE2b-256 646f28930114aa9948b6ac211ffd07418ffce634f3c5e0d27c8d91c780457cce

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7987bd3a735f379b0f0d7680581f54799c737805b5ab5b99b3d8ae0e7868782f
MD5 237310d5aa31f28057dd59df7f2a60b0
BLAKE2b-256 b73521ef55a10a127341d5a45feaa403dd9c70bcefb43c1ebdead8dcca7b9850

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9454536b42a23b4ea95dbc8afb68e6f35f69048688402fc79a2495117df6fca1
MD5 2ac949abb17bd0f64a3b705bec890944
BLAKE2b-256 b7e2ee4b550086171cd7ceaa1a4ce67852653dd74e598ed33c51ca5e0f6d20a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a9973612fa21f7ff13f840f2a91c33dbfb082c5bc56eea90a50dd1fef928777d
MD5 02ecadcb90a91e3aa61bfc8cd97606d1
BLAKE2b-256 5f01fbc292324ae44a90b3e0741b07d05fb796110de1e02c77047c85174e31ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: quadint-0.0.13-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 89.3 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 quadint-0.0.13-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 087ffc66ada2b150cfe22b6541eb25db9b5b6a00b4883767444ed95b98b18175
MD5 74e0d9ec434e5954ab2e78758956b689
BLAKE2b-256 48669acc0f0231495aa11a9af00fbfe508b67f4c4793eed543ea26b91ab474e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp311-cp311-win_arm64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: quadint-0.0.13-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 106.0 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 quadint-0.0.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fe3c62be426c1e8d78794811e96befc75fac7426094cbc68eae51ec529e14f62
MD5 83ce597dea3fe96f1eb81c8cb2343d96
BLAKE2b-256 5272eac686d522e1a076c05bbcf4b1cc7cbf8311808da696fdb9c0a79ecfb20e

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp311-cp311-win32.whl.

File metadata

  • Download URL: quadint-0.0.13-cp311-cp311-win32.whl
  • Upload date:
  • Size: 91.3 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 quadint-0.0.13-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8f58a9337784e76985bdc98c037142ca1c21f5f93c44d4f25cf4d70b5448eca0
MD5 0642435095da3509aa219eaf8d3721bd
BLAKE2b-256 4772234dc09655fc016bcba0af1ac588ce4fbf067c5a08550afa15a263e53522

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp311-cp311-win32.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 153542d423ede337f01486cfaaaf34fd9977f31a3649d8034ba36ab6e536c5dc
MD5 95065687dddd02dde0f5f212026c34c5
BLAKE2b-256 094d440521808300b95d9a12fd537bd6819769d686e7a63eba2c6b85a37e5c1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1ae3cb098330426c64d7b558a29cbec24e125b3e4213265ab6a5590224dccd98
MD5 be1052e719f27ee1d6fd2e77776eb429
BLAKE2b-256 4ea9a5aacdcb3be43cc114044b4ffede237fbc417203f77080a610b93357ab21

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c80ef48251f0ef5ca358a43fecfe063699b606c197c336f66c9e9a3ec477fc48
MD5 8e0ca85dccd4918998c88c304e2ab4b0
BLAKE2b-256 72aa1f446267fb5a9102250e7fa0305ad762e1cbdcfc0e7f9168f32ad8f55fc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c2e6b195118da76c584c473a790e707b7e52777d8323dd4b41595edb2f80580
MD5 7f63562924d01d649ffe54c32c9769e4
BLAKE2b-256 f8f22a0b1a46cd3be4ac39d1affd513149ccaec4648f18896db7a3f506af02c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: quadint-0.0.13-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 89.5 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 quadint-0.0.13-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 af1b567a4fab0371beb1c2b0a41451052aa1d8d9a9e9e03108930d89c6a1341a
MD5 b61b02a42d260f88327d200d64e1d302
BLAKE2b-256 86c539266618ec201614058dd098826b57e88e18e0352c704fb73c5ea2a5ecc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp310-cp310-win_arm64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: quadint-0.0.13-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 106.2 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 quadint-0.0.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c82baf24592d388a6a0675c22cb123584ea399f67c657c3bbead8147a0431fcb
MD5 16a11284b20c218e43503d6d3a945c30
BLAKE2b-256 ea5435f271e7f6d9d2fc439293a0544b18ee8c8e35fe6949abbd13a8945a4252

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp310-cp310-win_amd64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp310-cp310-win32.whl.

File metadata

  • Download URL: quadint-0.0.13-cp310-cp310-win32.whl
  • Upload date:
  • Size: 91.5 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 quadint-0.0.13-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0d698687f6053ca2c713a18292a14f2b0f6ec8fbe0ad7012d9cc31099f252602
MD5 9330faafe97dcef63d541fd6f6dfb096
BLAKE2b-256 600005962433d41d68b4e1aea01f45dbe9a927459c3dab6d4b36dee29930654c

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp310-cp310-win32.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a2176bf395cfb61d798f88ed65cce8fa726dff294ac275a9a793daaeac93f259
MD5 89262a468a626d8c61d0b5191ae369c8
BLAKE2b-256 b9f8006b780ecfb116809756316206d906ad86a1b4c7639ede926ddfa5a8f114

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 db1faef5c543473b4e22a48aff1640f153e1099d2c5920316855e0b1923ef999
MD5 e2078ede98c995376cd09705d52f2f4e
BLAKE2b-256 229effb4453e8c5c3c9a7cd99766639a7cb40c6a15c5137cb4e3d5b229f7dec0

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1df3e26d8481b773cb02e79c87748dadc8d99be413aa302efb447c75ad2ff541
MD5 1b39acdc4b313d08885b130ac53597a3
BLAKE2b-256 2dbb73725d37b7deed33c929e2dfb7a6f28eb7e809ff155d4f7b75f234fe970b

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fff346c41f32838053afc18ddedbdb72e747a93dd00b2a9af7bb7caef5e6ce37
MD5 6ddc97f746f69e2397ad1805c339aa39
BLAKE2b-256 d990dbf402d102e333c212d27f373026c64760c10aa55232fb91c839b8e881b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: quadint-0.0.13-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 89.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 quadint-0.0.13-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 b9a2933d0087cf3445ec16a641478c4efcbf64c3576943013e2edcf57316525a
MD5 3b333f89123328c01539e5be24e88070
BLAKE2b-256 a3a5f23bff5ce6e0f3ea7c82a2827cf65a05dba20f8662dd2363f4dc7a9a60bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp39-cp39-win_arm64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: quadint-0.0.13-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 106.3 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 quadint-0.0.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 34f72f8109cd146a1ef3fea6316916016c267921654a0f8fcf108eb6300a081d
MD5 f288f000b7412645aa50f948ec89d469
BLAKE2b-256 e256155f051842326a779aab4cda06e65e294e51a52800f52d2e0090dd6d28d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp39-cp39-win_amd64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp39-cp39-win32.whl.

File metadata

  • Download URL: quadint-0.0.13-cp39-cp39-win32.whl
  • Upload date:
  • Size: 91.6 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 quadint-0.0.13-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f8b43bc8a4c79bc41085ca4a3419b1dc8c9c48c6b286009e85dd76d68f810bb3
MD5 91b6f42b2493a8aa0565d33a78cd9fb7
BLAKE2b-256 77bf785ef77b89110f0043d5313f138f982d6fb4cebf53123ff79c55eea4ae9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp39-cp39-win32.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 087f899ce2d8a3e46494729bb70642cb6a78a42aa7dbf6aff66cf5b26a2ccd9a
MD5 368f4be26a14ec88ca2a567371cbb3fc
BLAKE2b-256 c2dc375175e0ee5e466a97606845113f255b2df595acd68346c8af79b3c4cb2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bf716c8c68ea4686c19c2de00e0c7ff66886345187797e04dccddba7e80a99b2
MD5 b07886b6818a4ce9a180f3667ce0a17d
BLAKE2b-256 f325523dd9eea2cd252b058e035dcac89186bb583ee61ed2726ffacd1be3ef88

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83c0b3ebdeeaea70562d0dc62e40f31af8e83462c587483e682f3ea719741e02
MD5 b69646fcca442eea736d90598c3a6732
BLAKE2b-256 23b59ebf07374b3c5f67270fc329378aa22df4b1ed4c752a75c1b4ef5e1c8ee4

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: ci.yml on rheard/quadint

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

File details

Details for the file quadint-0.0.13-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quadint-0.0.13-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e6607abb32bb324b8304a8dd590fff38edfbc0beebcc465f0922f3f5057fc65
MD5 73ca1abeeeff6059c9b368b822f2b670
BLAKE2b-256 d96f248006cb291607d261af2f3e3eae2c9c51df2607f0e14e1cfecc796490ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.13-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: ci.yml on rheard/quadint

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