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 (useful for exact first-order / automatic-differentiation-style arithmetic).

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.


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ω
  • 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.11-cp314-cp314-win_arm64.whl (77.3 kB view details)

Uploaded CPython 3.14Windows ARM64

quadint-0.0.11-cp314-cp314-win_amd64.whl (90.0 kB view details)

Uploaded CPython 3.14Windows x86-64

quadint-0.0.11-cp314-cp314-win32.whl (78.9 kB view details)

Uploaded CPython 3.14Windows x86

quadint-0.0.11-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (228.2 kB view details)

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

quadint-0.0.11-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (221.3 kB view details)

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

quadint-0.0.11-cp314-cp314-macosx_11_0_arm64.whl (120.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

quadint-0.0.11-cp314-cp314-macosx_10_15_x86_64.whl (123.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

quadint-0.0.11-cp313-cp313-win_arm64.whl (76.4 kB view details)

Uploaded CPython 3.13Windows ARM64

quadint-0.0.11-cp313-cp313-win_amd64.whl (89.7 kB view details)

Uploaded CPython 3.13Windows x86-64

quadint-0.0.11-cp313-cp313-win32.whl (78.6 kB view details)

Uploaded CPython 3.13Windows x86

quadint-0.0.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (229.1 kB view details)

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

quadint-0.0.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (221.6 kB view details)

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

quadint-0.0.11-cp313-cp313-macosx_11_0_arm64.whl (120.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

quadint-0.0.11-cp313-cp313-macosx_10_13_x86_64.whl (123.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

quadint-0.0.11-cp312-cp312-win_arm64.whl (76.3 kB view details)

Uploaded CPython 3.12Windows ARM64

quadint-0.0.11-cp312-cp312-win_amd64.whl (89.7 kB view details)

Uploaded CPython 3.12Windows x86-64

quadint-0.0.11-cp312-cp312-win32.whl (78.9 kB view details)

Uploaded CPython 3.12Windows x86

quadint-0.0.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (230.7 kB view details)

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

quadint-0.0.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (222.7 kB view details)

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

quadint-0.0.11-cp312-cp312-macosx_11_0_arm64.whl (121.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

quadint-0.0.11-cp312-cp312-macosx_10_13_x86_64.whl (124.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

quadint-0.0.11-cp311-cp311-win_arm64.whl (76.0 kB view details)

Uploaded CPython 3.11Windows ARM64

quadint-0.0.11-cp311-cp311-win_amd64.whl (89.3 kB view details)

Uploaded CPython 3.11Windows x86-64

quadint-0.0.11-cp311-cp311-win32.whl (78.0 kB view details)

Uploaded CPython 3.11Windows x86

quadint-0.0.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (223.8 kB view details)

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

quadint-0.0.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (218.9 kB view details)

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

quadint-0.0.11-cp311-cp311-macosx_11_0_arm64.whl (120.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

quadint-0.0.11-cp311-cp311-macosx_10_9_x86_64.whl (122.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

quadint-0.0.11-cp310-cp310-win_arm64.whl (76.2 kB view details)

Uploaded CPython 3.10Windows ARM64

quadint-0.0.11-cp310-cp310-win_amd64.whl (89.6 kB view details)

Uploaded CPython 3.10Windows x86-64

quadint-0.0.11-cp310-cp310-win32.whl (78.3 kB view details)

Uploaded CPython 3.10Windows x86

quadint-0.0.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (221.2 kB view details)

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

quadint-0.0.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (217.8 kB view details)

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

quadint-0.0.11-cp310-cp310-macosx_11_0_arm64.whl (120.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

quadint-0.0.11-cp310-cp310-macosx_10_9_x86_64.whl (123.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

quadint-0.0.11-cp39-cp39-win_arm64.whl (76.1 kB view details)

Uploaded CPython 3.9Windows ARM64

quadint-0.0.11-cp39-cp39-win_amd64.whl (89.6 kB view details)

Uploaded CPython 3.9Windows x86-64

quadint-0.0.11-cp39-cp39-win32.whl (78.3 kB view details)

Uploaded CPython 3.9Windows x86

quadint-0.0.11-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (219.3 kB view details)

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

quadint-0.0.11-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (215.9 kB view details)

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

quadint-0.0.11-cp39-cp39-macosx_11_0_arm64.whl (120.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

quadint-0.0.11-cp39-cp39-macosx_10_9_x86_64.whl (122.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

quadint-0.0.11-cp38-cp38-win_amd64.whl (86.2 kB view details)

Uploaded CPython 3.8Windows x86-64

quadint-0.0.11-cp38-cp38-win32.whl (75.6 kB view details)

Uploaded CPython 3.8Windows x86

quadint-0.0.11-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (204.4 kB view details)

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

quadint-0.0.11-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (198.7 kB view details)

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

quadint-0.0.11-cp38-cp38-macosx_11_0_arm64.whl (114.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

quadint-0.0.11-cp38-cp38-macosx_10_9_x86_64.whl (115.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: quadint-0.0.11-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 77.3 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.11-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c0963fe41af0a769a4129ae24b5dbc711e47c9de3698d56d79dc4f84e0a39390
MD5 25432a5ae1fce055de33e8e4089d35f9
BLAKE2b-256 6d58de427068d4f1293ea37b31557a35890688e82bb88f4a9e6ca6f4ff14dd6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: quadint-0.0.11-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 90.0 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.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 61447ae4ceff1ca6fc2b3bfe6b55a8fe6799be6933108d1c57c25cc8b33a35de
MD5 33be096473485b98f9dd07dd2f01870d
BLAKE2b-256 7ea74d5fe5bcd6a361a5546a379b58bff8804a6f7d6ccf92f3251e9576195398

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp314-cp314-win32.whl.

File metadata

  • Download URL: quadint-0.0.11-cp314-cp314-win32.whl
  • Upload date:
  • Size: 78.9 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quadint-0.0.11-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cc7e999b2b87eee8b73fc8e2e1646bf8bc5f89c7349bd0bb6d4385e5fa3e638a
MD5 22ec8f4f54068cfccb5e54c356c33454
BLAKE2b-256 9313a5dd8e741b43588c2cfbb4d21c815a18852deedf778ad8c5c830185df32d

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-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.11-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4278f53736f01772178c49db4461e303f32bb732ebef9d8b17b9dc5f6e5c04af
MD5 9d8c61f5224781e66871b0077f58be8a
BLAKE2b-256 09910f7fea57e5c49c8903084523cab67c95711658205f9e5b06ba0e6d903ebf

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b43ee81931c5e51947c5295873996a169c260788b506d447cc6a3b7ac6de296
MD5 ab358f2a811af3a1a1304dacc13b4b69
BLAKE2b-256 7b4482888c97fd7ddb048b440c36ec9efb9d6715b2dcd0b02d3ffa9fb5834e20

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 362dd672b49480a1a0f42ed542ce10b295cfcb03cb07f87583f247da46abbcc5
MD5 02cc1bd1b5d332e8bb5f3965a17fd338
BLAKE2b-256 2ab82ba1db8a3b4028a2bbf5ab8b6763f2c898f832e0c3f4b105f0c47dbd0a96

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 25dd35cbe3d7c9a60b3eb9bbf65a873b7228751f620a1c319630050aa8f7da88
MD5 a03ca8fb11d9ae8277090322c777c550
BLAKE2b-256 348ee51ed26e30e6f1e5d60dde704cf7c1978c856ae15b521c762cf39b011e6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: quadint-0.0.11-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 76.4 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.11-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a8fba042a1a01e76d98d245aefd5d26d739d0ddba8e5eff9b03b175f819bbf09
MD5 30ff1edcb8e8213ef55fb7c92f4cfd84
BLAKE2b-256 df9aadf4f504c24a6a4eca672843032f8bb2a746a6613532920e171ea4fa42f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: quadint-0.0.11-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 89.7 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.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a3c95da291885c15faf89c2556a1c9c7db4e40ada10f6d9ff5c98abe7320e569
MD5 2ae1784739633a01b4926b57eccbbad8
BLAKE2b-256 a31240feade492a002c8268d4f7b0fc674c2b7c8024a591ce23e11fa9a381efe

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp313-cp313-win32.whl.

File metadata

  • Download URL: quadint-0.0.11-cp313-cp313-win32.whl
  • Upload date:
  • Size: 78.6 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.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 57a7b12c8e7cf578f5c938817f1b40078a322331f5bec4c72de7fbecc32e76f4
MD5 911d92c0b1376289b5bb25dbb0bfb9bb
BLAKE2b-256 61f5f8d773bb54afa1689f1bf005e2e225e23bcb83034f35b9ae60db9f2e20ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-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.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32718e4ccf4847dce7584eb339048a216fd6209c873a64b1052f1433026e4f62
MD5 d7ca7e4a4e4f5804e77ae75490ed29ef
BLAKE2b-256 21e74970332d952cdd09934e1625fa20e6713e6faf3953031e4b7f2ec70747d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5bc46884c80f9cfaa9fe3571908460c2a8fa8b066591b729089428e8d9e8a92e
MD5 39aa4e1f883e2dd41315b2ee788ec6e5
BLAKE2b-256 4955a98994940f52f703edd79a635bcc122462873e3cd75d8e3c0b73a827529d

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e81d0aabfe09009bedc0e9a36c64631ae1b29c40c7e3c9cccf83c12a984bd3e4
MD5 459d1cdafffb399fbe71542a282b0e29
BLAKE2b-256 6823468e21f95c18e5ff3caf97e3df443437d4e7b20e5640bef743294d7de9d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8b44b53bf09546630e7421acc21137586140440f23d678e811d82d718e8d2d70
MD5 ceb332b0e4730ef1ac9f6fdb586b1ecb
BLAKE2b-256 c7d13219f1022d9ab68e5bf3ef46e2b608f09de9ad9dc879de1b2854095dfedd

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: quadint-0.0.11-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 76.3 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.11-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 44d357faee484716fa617bce81364d06eb538de6a41e1a7506dffd9f194e1dfc
MD5 fc17b79a787e74eb23c0f1dce41697eb
BLAKE2b-256 65b579c0425b35a969349fa1d3b57797741e8a9988ab89e42caec1924adb4d38

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for quadint-0.0.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 da639a2d8ca76de9ba79bfb464d3a707921ed22ee5556d25a39ea7cf7453bbd9
MD5 3cf6d09d18a0bd18695a21d0ac268648
BLAKE2b-256 9ce8adec6c617b833c5fdf355745f5799cd724b33e7c61ee55d7ea6755dfc8ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp312-cp312-win32.whl.

File metadata

  • Download URL: quadint-0.0.11-cp312-cp312-win32.whl
  • Upload date:
  • Size: 78.9 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.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ac10488466f9a40cb6cc1deb94fc6893ab3d02130badbc92910517eda39f3766
MD5 13bb1a8073525a9f2b0355a020035562
BLAKE2b-256 6042840b229ff22ef29ca88195c0cc847fef71b9e23134183abeb991cb5a9a7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-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.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1bddfef608e2457094c175ba469c1541b6e775189418e86e47fb81275229e32f
MD5 7ed4aa732befc59c49f22d1ac0ebd829
BLAKE2b-256 2ced4ee60850b2fd205776895e96b7129d77e88c02fab8dcbaaf4ecb672d952a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03057c54b4de9f05c8982f57e825b42c45b9d5624fd249de98e0a500f872bc47
MD5 ff9c7a546175e764f4312846b4337ea2
BLAKE2b-256 5375f2279cfbd2a8c0b902523dc7c4ebcfae6377aafafb9932f914269cb467c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8842ec810f868280afbc97c9b911802c59315d7d4917cfeaca63904c2a21954
MD5 a643d56b871a86be4621cf542af4b8c3
BLAKE2b-256 e5f27dbb0b42676f23e5c731054d5c849c2a5fb7e0fb7bd95362474b24f177eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 48e074681b31e469cd085f9519d3727adac22e08b657ba15db5f5620f6c245af
MD5 037fff14663dbea168950c36c8ca6bec
BLAKE2b-256 ca75107ed15747939b7341c5e0833fc4c6bbe47576c1536909379f5cab7493c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: quadint-0.0.11-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 76.0 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.11-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 5fb18deca567ff7eff36e388bca724f0947d6553b1de13ca22d64d0c9c0168c8
MD5 60b8fb66e3109d7574b3f118a565f508
BLAKE2b-256 ff0123f80795427cd00711555dfffc76b91786e6469db831b4274b3838448720

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: quadint-0.0.11-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 89.3 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.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 879926e8275320c5206505d6ce30d042c42314f2d722510b4198c174da8d7f5a
MD5 4bc68530bcc16788b875cff76e941df6
BLAKE2b-256 ff0afa525503d9aa54e798e5c10d604f92809168ee23e52fc64bd4c7f82dc611

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp311-cp311-win32.whl.

File metadata

  • Download URL: quadint-0.0.11-cp311-cp311-win32.whl
  • Upload date:
  • Size: 78.0 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.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ddd728325677d7285c20e6a0e476e6a106ab1cdef959d883f8856d5e20febeaf
MD5 55d746f587321134d1bfade811ae01b7
BLAKE2b-256 8bb5fcc11d4c41a0439cbb70a7dfc7513769a19fc6211988abc711a4278f209c

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-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.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 046d7564e7f7527f7d6f41ca8303242f6e3901808f2f72d6b17fd42445db067a
MD5 6f18982dd449fd0f49263e06107d0bb7
BLAKE2b-256 1997482540ea93c8103e4c213d1c520fef61dabc4d60b9adcc1cd2acafdfbd11

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 623a5a6a0580d2b3bc08aaf5827eb6d193383437166089e00c25e2ba6d79ad09
MD5 38d8ae62a3ad60915ff5241aeb347bd8
BLAKE2b-256 24c70f8e3f2c82177fbe48dac70761a1af04b9a3c80d33a57621e15bcedc0064

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22c540dff91099ee405ea191c7bb3f825fc49d7b775048a37cfff06ec73bd218
MD5 38263fd0327b1f3dd6b8e822cf917153
BLAKE2b-256 d09571b2e811c9b5b5cf2a0e357ead2c9726cf6cc5eb66ec16f55a50613841c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 63aee0fdbadc25ac15cd5438f2d15469afe51a915ebe84e1f8527916eed0f44f
MD5 e95b26373bc85204cb2dc470932f9cf6
BLAKE2b-256 2d4eaa4e4a89860052071726925cdc3b5334ba80fe4672157986ae416df76301

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: quadint-0.0.11-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 76.2 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quadint-0.0.11-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 d7617c3ca28f06a2f77a9c919fcccd56220bdba5e3ec452c9c892f426a0d2762
MD5 9892c14b6af6aca13b1919de91791262
BLAKE2b-256 3e4b7766f77da630b3c939d3743d76d23649bedb215be22f7089e262bb385dbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: quadint-0.0.11-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 89.6 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.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7fff67bffdc164b476a65d8a004b09f8c5c0473d46f966222d2f47b735193288
MD5 219a63b74daaa2a2031f9b9c45ed1eeb
BLAKE2b-256 292870a45e3c76448360f26e847499c8347397f2b4552aec1f19daddea752c08

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp310-cp310-win32.whl.

File metadata

  • Download URL: quadint-0.0.11-cp310-cp310-win32.whl
  • Upload date:
  • Size: 78.3 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.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fe76c4746fa119f9ddafc326c3406c2a117bda83dfe75072a8b1e10d25a539be
MD5 35c83ff16247eef4528538d76c408a9a
BLAKE2b-256 07391e5214da9d7eb1b320a1d2f2f1a0df769f32476a1905e4daf2d72f0250e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-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.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d5f6a6e8b7b2623ad6cdde782ee4ed65d2fb8cb0cb45984ed793d2fe2710f26f
MD5 7f9dc991ce77bda253e25a880d098aee
BLAKE2b-256 66494001b7cb5894f44cf0c00e837bf5fc5ef0cb432f55d2b00e5beccc1bc8be

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a18aba5353d61db612448e9041cb065b9864bb04112956e4e2d4633ac0f9cdef
MD5 377782e55e597adaf6f49ec50b1a88b1
BLAKE2b-256 beeafc233957d5865fa4b4608303c5230edfd28d0aade003c3e907b5880d0176

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0998871b944f61f03c207a509d48b30b0f649c4713a7db465f27cc710b3e5ed
MD5 b5bc3b158d64f16de3bf56528413c090
BLAKE2b-256 2d58d38851b7f73dc5472b3570021266d32a05d6f666042c1f3af4697459478e

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eee1d6bcbfe0b6d5150b8a109298b6c048326d2976c25a2dc6e386ea496e8375
MD5 dded081e45f30cfaf2c536245bc10d85
BLAKE2b-256 7a1c47b9159be052d2effcf9e0cbfe0b3a1659187f11c6a7fe7d888a5ea19196

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: quadint-0.0.11-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 76.1 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.11-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 ebbb9d5e683ed8bf64ffc239f2afc4f93c93aad1df7820bb3c6aada32557c907
MD5 429826830fa41708b59b77632c6fba9d
BLAKE2b-256 e26d0ded25e5bf818d538da1c279e96281a51a110e9b8f68353c318cf1dc0742

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: quadint-0.0.11-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 89.6 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.11-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1409796485b2ba2b200a9cee91622488890c6bcdb540a9c21ac14ad5b47ec10d
MD5 8498ebb52db33ad6d53a0729f34084eb
BLAKE2b-256 b438eda3dd12235bedc75d7213522369a5fcaf139aa0d25fe47d776ef9ea03f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp39-cp39-win32.whl.

File metadata

  • Download URL: quadint-0.0.11-cp39-cp39-win32.whl
  • Upload date:
  • Size: 78.3 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.11-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 565ef097cdbdaaac21a787cb4e9b550431ffa91825de4565f7c003d8ab8ded50
MD5 1c4adbccecdd8453ad38c0eccce6ab6b
BLAKE2b-256 c99387767870bb14a86f11c667ce99b5319c7991bb9262b699b8d3efda8aebe0

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-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.11-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 49831306fc7362a842b68068ae7771a8c1758e365208d67c71f547b1caa11874
MD5 4c3359c6e673d34c6b1ffeee92ffebb1
BLAKE2b-256 22a1ff96268c8a348eb89e199bd623ddfee2dab66eeca6a60dd1563cffadb6a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba525e50845127a45d707edcb98afc35b616e7bd99851eadb52442bf3e941ffc
MD5 dff04a6960e14af153f45bba1415f8f1
BLAKE2b-256 13f378ded1298dba8016f6f03502f361166b563231e23f78e5bfab8be08856e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30a117b748fc7434af35f7bf53ced4511f1b7193f02e65d8052ae7f41f92de8c
MD5 69478c8553d38f1d187f6b79d4e8cebb
BLAKE2b-256 8a23775e1ada40c815c1a3e0dc85b9618a51d92d25aa7566bbc6a9b76b90c324

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.11-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3c71a049d62e028e632e35698d2382fd4408e89b371705dc519ea501b07c4e83
MD5 75fb723f9ef1ad88a437a2236f3a3de3
BLAKE2b-256 cb1c89d717a7266b52e41e04f8d143467f3acdb3fa9ce13d58b5ef115878d6bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-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.

File details

Details for the file quadint-0.0.11-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: quadint-0.0.11-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 86.2 kB
  • Tags: CPython 3.8, 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.11-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 73d194ef29dab12e6c357c670a15fac82c0b2c8100b9ef3377f3d8988d6195e1
MD5 c83d4e4e30997a08c45732327001094e
BLAKE2b-256 4639e8c408a2f4c8d9f4c369fdbb33c7524f40042bdccd0b67859eaba9d5b473

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-cp38-cp38-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.11-cp38-cp38-win32.whl.

File metadata

  • Download URL: quadint-0.0.11-cp38-cp38-win32.whl
  • Upload date:
  • Size: 75.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quadint-0.0.11-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 722e8f80e08252cc4114f21ec03afa619efa741551bb54e7edddfd90abe1cc22
MD5 4d3c05ca63ae8a3988c4c6e3b09c89e9
BLAKE2b-256 89300dd36c7f722a1baadbcca9182d62b0d994c4bd8172f8dda0dca96baf733c

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-cp38-cp38-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.11-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b5fb8201e1fd6fc276bf44bcd82619e1d11fc91c4c32a660476e4ecb4ee5af0
MD5 b0c2d63e4a5ef1b385a8017c4a77898d
BLAKE2b-256 25a2d0e2c1848675d2eb15e9503462957b7e29bd74ec528d05b93c74936cb3a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-cp38-cp38-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.11-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e14f69954721e908fcde4bd5240936e55eb330b12f36bc37020ee4742374ee1
MD5 7474eb0a35d665c820c987b6f34c4d69
BLAKE2b-256 292bac29da3e960233624004dc7c6791170101c5c0d4fee0863d1e0768837a37

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-cp38-cp38-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.11-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e92ee9c3bbbe64fd45007a5cf8eafbf2836215389e00b10e56775f6a89c8bbb9
MD5 084f474ab870f1d2cb5b2f19ca616d67
BLAKE2b-256 1d8cb6b4202106a5db0f46931f3e087016754f5483d537def3df6019535d33af

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-cp38-cp38-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.11-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for quadint-0.0.11-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e4033ab171708946646eb9caf6a66c4657c0c0d38cb0760d11317100c7df6371
MD5 d915307152e7a7695fa5f857a568dec5
BLAKE2b-256 f77425c9bcc34ef4deba96f35e513ad32f26d04159d8d3863972ddb87d5728cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.11-cp38-cp38-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