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}$.
    • By default, QuadraticRing(D) chooses den = 2 when D % 4 == 1, otherwise den = 1 (and you can override with QuadraticRing(D, den=1) / den=2 to work in a non-default order).
  • 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: QuadraticRing

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

from quadint import QuadraticRing

Q2 = QuadraticRing(-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).
  • Division helpers (divmod, //, %, /) are implemented for dual numbers (D=0) and split-complex integers (D=1), and for the finite set of norm-Euclidean quadratic rings (including selected D<0 and D>0) at the default/maximal denominator; outside these cases division may raise NotImplementedError (and ZeroDivisionError for zero divisors).
  • **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)
  • QuadraticRing(D: int = 0, den: int = None)
    • If den is omitted (None), it defaults to 2 when D % 4 == 1, otherwise 1.

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

Uploaded CPython 3.14Windows ARM64

quadint-0.0.17-cp314-cp314-win_amd64.whl (158.6 kB view details)

Uploaded CPython 3.14Windows x86-64

quadint-0.0.17-cp314-cp314-win32.whl (137.5 kB view details)

Uploaded CPython 3.14Windows x86

quadint-0.0.17-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (395.9 kB view details)

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

quadint-0.0.17-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (380.9 kB view details)

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

quadint-0.0.17-cp314-cp314-macosx_11_0_arm64.whl (212.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

quadint-0.0.17-cp314-cp314-macosx_10_15_x86_64.whl (218.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

quadint-0.0.17-cp313-cp313-win_arm64.whl (132.8 kB view details)

Uploaded CPython 3.13Windows ARM64

quadint-0.0.17-cp313-cp313-win_amd64.whl (156.4 kB view details)

Uploaded CPython 3.13Windows x86-64

quadint-0.0.17-cp313-cp313-win32.whl (135.6 kB view details)

Uploaded CPython 3.13Windows x86

quadint-0.0.17-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (396.3 kB view details)

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

quadint-0.0.17-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (381.1 kB view details)

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

quadint-0.0.17-cp313-cp313-macosx_11_0_arm64.whl (213.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

quadint-0.0.17-cp313-cp313-macosx_10_13_x86_64.whl (219.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

quadint-0.0.17-cp312-cp312-win_arm64.whl (132.6 kB view details)

Uploaded CPython 3.12Windows ARM64

quadint-0.0.17-cp312-cp312-win_amd64.whl (156.3 kB view details)

Uploaded CPython 3.12Windows x86-64

quadint-0.0.17-cp312-cp312-win32.whl (136.0 kB view details)

Uploaded CPython 3.12Windows x86

quadint-0.0.17-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (397.8 kB view details)

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

quadint-0.0.17-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (382.5 kB view details)

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

quadint-0.0.17-cp312-cp312-macosx_11_0_arm64.whl (213.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

quadint-0.0.17-cp312-cp312-macosx_10_13_x86_64.whl (219.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

quadint-0.0.17-cp311-cp311-win_arm64.whl (131.1 kB view details)

Uploaded CPython 3.11Windows ARM64

quadint-0.0.17-cp311-cp311-win_amd64.whl (155.2 kB view details)

Uploaded CPython 3.11Windows x86-64

quadint-0.0.17-cp311-cp311-win32.whl (134.4 kB view details)

Uploaded CPython 3.11Windows x86

quadint-0.0.17-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (387.2 kB view details)

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

quadint-0.0.17-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (374.6 kB view details)

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

quadint-0.0.17-cp311-cp311-macosx_11_0_arm64.whl (212.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

quadint-0.0.17-cp311-cp311-macosx_10_9_x86_64.whl (217.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

quadint-0.0.17-cp310-cp310-win_arm64.whl (131.9 kB view details)

Uploaded CPython 3.10Windows ARM64

quadint-0.0.17-cp310-cp310-win_amd64.whl (155.4 kB view details)

Uploaded CPython 3.10Windows x86-64

quadint-0.0.17-cp310-cp310-win32.whl (134.7 kB view details)

Uploaded CPython 3.10Windows x86

quadint-0.0.17-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (385.5 kB view details)

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

quadint-0.0.17-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (373.8 kB view details)

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

quadint-0.0.17-cp310-cp310-macosx_11_0_arm64.whl (213.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

quadint-0.0.17-cp310-cp310-macosx_10_9_x86_64.whl (219.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

quadint-0.0.17-cp39-cp39-win_arm64.whl (132.2 kB view details)

Uploaded CPython 3.9Windows ARM64

quadint-0.0.17-cp39-cp39-win_amd64.whl (155.5 kB view details)

Uploaded CPython 3.9Windows x86-64

quadint-0.0.17-cp39-cp39-win32.whl (134.9 kB view details)

Uploaded CPython 3.9Windows x86

quadint-0.0.17-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (381.0 kB view details)

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

quadint-0.0.17-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (369.1 kB view details)

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

quadint-0.0.17-cp39-cp39-macosx_11_0_arm64.whl (213.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

quadint-0.0.17-cp39-cp39-macosx_10_9_x86_64.whl (218.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: quadint-0.0.17-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 134.1 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.17-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 6270e493057d577913782e59493670a6488fa8c8cd30f9e0518b21e4db7d4ef5
MD5 0d7e5268f93f09f3dc7e4a2dbadeec2c
BLAKE2b-256 5de02fef49d1cdb268bd966d4714977564afacf12866070bf8e51b276674c2d4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for quadint-0.0.17-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 37367ff6093a4b0fa5e819216b8758c3f0376603f40322db58c6cd5310d9ae3e
MD5 478f8ac2b7d66f8a13b0204a8e15cef0
BLAKE2b-256 84cd1636c4595f7b6a8d740904a315744d79c827d877943b56a2412e2ae054f4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for quadint-0.0.17-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 bee16c6c00cd52a6e4d7c4be7842717186f8e2cbe20c20a0d68f63034094abfb
MD5 4920dde5490399cbc2c817ebc97e5493
BLAKE2b-256 2b433a8a80af1623a381221b7896508f04ec59feec14b8f1d0e173bad2dba337

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.17-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.17-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.17-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4cbd977859029e210539e4243cbe8dc0e7e35d20b334480baa30aae9928a3484
MD5 8f330ec83dc4dbe172ec94945a6ee174
BLAKE2b-256 23156e12d69e5f200857f029c9feced0e0435597e17df00597de445b8912c5d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.17-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 625434a5ebf77f1f5c8d131e53d2f8f6f2ca3827c95068f848919255233259e5
MD5 129e244509b1608399625bf97952af83
BLAKE2b-256 46e7912f1b58c139c21e4ab74f9eac73c4fa85bf6ee0d9870fa1564c10f39505

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.17-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6e75a3f7c569806bc5d46c1c0fa7e01d075dbbcdd3281aee718f48b5d5e424c
MD5 6e2a5d40933ccf1b123e2515bda9e914
BLAKE2b-256 0260080e553fda64fb76cfd7d07e08c9776c64aeb415a3b23b8388ed762a5e88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.17-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7b46fad8986932b6da4424ed5aa4d9e2625f56d0f1909c6af7bc9664edfc74a1
MD5 085698f65c17bacbbd38f4fc83833eff
BLAKE2b-256 a3f81f18b6d66fac15d51720c76de60bd146d9ddee48ee7029a9c46292dc9d5d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.17-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 132.8 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quadint-0.0.17-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 546268aab01dea86cce88cf07d02b2c19ee447e1641551f23d1bc35069403d5b
MD5 e23f6ca78af3adcd65407b6909899f5c
BLAKE2b-256 3de7e6bfc7b605a806f84b614fef79f32a509e914beebc4534925f1ef6d50103

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for quadint-0.0.17-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a78b6cc7db94d2e386720d75663037944720a2d98c77e973462e04ee7c7b79ca
MD5 407ee5fba751b545e2614ab7fec34976
BLAKE2b-256 265aab3c95bb1aec6683e8e6f35b2a5f9b532e88f1839018c38774bb45dfe1d0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.17-cp313-cp313-win32.whl
  • Upload date:
  • Size: 135.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.17-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a5ec006fb2ec616e53b15d74d7de00edcc2fee7cedcaeb3b3110f24ecb6568b1
MD5 7d56307e5f36cb112bd0cfa5bd8d9a11
BLAKE2b-256 b926729f825a3c8f3f6e0f7e890edbc61208ce1628c17f98f618402b36f1dd75

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.17-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.17-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.17-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0e0ab9f5f4aab308d4a32b8e5eb760f546b0b9bbb1f25741fe896e743f3a17df
MD5 7e2c52dcf9c57a02598db0efbd71318b
BLAKE2b-256 97d4bfdde786d9c3466f2b5192bb9542a67c9fab8fcd83196016b05fbd760bcd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.17-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 824b7ca153f3596a8da7522a0d288a7d43781b962cd2f16ea30ed8880157edd8
MD5 bb9062107b239bf6623978e0d3d595df
BLAKE2b-256 c326ba11ca0ac02638219b195c3a0bfffbcf767b573626af7d5c7bb8fc414879

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.17-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93076175ff905a10d1f700e264de89f11b1cbe0911ca5965cc2694d983573804
MD5 b0b8c640e3cc36f05035f976b868956d
BLAKE2b-256 e0173f0e55876dfaf27fc73b346362cfa643ec089548e288e77da717ac2e9389

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.17-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e173e94bfcdbf5013f406756d506aa691f7a43b6310b338b93c19dece36d3f1f
MD5 ff09192e49a968c552b2a135b3bb443c
BLAKE2b-256 e90ee05ad4f6e4028bda0d6c18f2915dc8c3afb8a50d5cf4227c4400b7e9c29d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.17-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 132.6 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.17-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 609ff56c2a590fc97724cc8caf7e874a3122e95909629d908f37088b1ba0fdef
MD5 ecba7d785ce3b6622077d201fe420ecf
BLAKE2b-256 aa289f89c1b78ca565213acc6132533d343df1ee73f3e21cf9f1c3a155c9a65f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.17-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 156.3 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.17-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b49e8100676b15b4dbb9ce7a4e8dbea38b809ee587d292a84a27bcabdce411a4
MD5 bf6d83c88df1a4ba0bce83807953ebab
BLAKE2b-256 c676da7bc5a551db4946c21aea8cbdd65588d1ddd5904499cb3752f95da5a697

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.17-cp312-cp312-win32.whl
  • Upload date:
  • Size: 136.0 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.17-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fa1fe6716fed9762b829ad66666bf278defff96e1576b28e324dd086aa2f4ad6
MD5 1426f4e4597d201c702ded6389910912
BLAKE2b-256 a49e32bf5b1dbcbd4e15eb0d4c22f5480370332f029bcef0f5d6c13332b5cfdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.17-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.17-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.17-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d3eadf5b6a8d2f5dc8ec2696b4ee5c1fdb823b750626c3f0cf8c4c6aeca51dc2
MD5 1586e20deb4f22f7dd076523961d9180
BLAKE2b-256 7c4827d8d1d3a75193404f41ec4e21e7228610f639be1a061cef0f50b61323e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.17-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d9e45279f4d509db3f8591d8c3ad1cd9b928fe48a1c9649ac5a4ea26ddf88ecf
MD5 59f055efac18b1e48919ebdb92c92717
BLAKE2b-256 ae738cab95bddc64cf88881ef8816498b99e9ed4009a60ed4f1d03c21b4c550e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.17-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f36dec423d1f933ab4cb191db928a005f08f92645f0b894846c8f9709080456
MD5 ca2f3b1c23d376ec77df070ca5b83337
BLAKE2b-256 667dea410059e5b73af9e80fdc39c1649d53395d04c9d5fa8ba437c3b8fee8c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.17-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 10f7ecd353f8042a35d202092a22aa0b10f65e11498f8a89d0579eb6b211faa4
MD5 777b07aebbf31298d808a7835318a4cb
BLAKE2b-256 b9699dabb95a87ac77949c1deb9a565d145d5161ea949cea84f300bb60d88e0c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.17-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 131.1 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quadint-0.0.17-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6c8ac1b8664301eff1868a176813b4a9e555d6b1ca3bbcfac8e10be22162d0d2
MD5 278166af4eb1a316668b1e810a97f268
BLAKE2b-256 630077188e295a5f18f5f21e11b1a463ed85abe2c6e1984ddfe31a0ee09e2a16

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.17-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 155.2 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.17-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6fead8dfcec0071aec1b8fa788acbe25633f54a392419bf3e50c62d493d8cb73
MD5 a91e716b75356838ee70c98a7b37e9dd
BLAKE2b-256 882aee7c320556ec17643d47e08175ed97038b99a50f3530e1631764cac0d037

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.17-cp311-cp311-win32.whl
  • Upload date:
  • Size: 134.4 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.17-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d5729b63d9c0212c7db73c3e11c51139cd2b78bdb61cd7f93e49875188906039
MD5 88f6caafebcf01e1f1237ac9c474aae3
BLAKE2b-256 a4f240455cb151ad34916ea3a9311ead68b38614772604a9c3345b220d8240d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.17-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.17-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.17-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c7bf754ddeb2771074a1d12e17ba9b9ae7672ebaecca827f27405bdce0f6efb3
MD5 f0e23365cae511a7cc53a93a624cce8b
BLAKE2b-256 4f1bacd31c62bfe86dad72807ccd31def32891f8aceb597bf283b41c6a123c40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.17-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bc1e289258267c60990f8bccb068def78c62083813ec237e6d813919149fa649
MD5 0a3c002e34f0a322e1cd118c55b73ec6
BLAKE2b-256 a4e4a1229e7cc78d87125f76d4156d2a6d04cf01bdc73bfd7365f051e2877d69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.17-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4766f363a00f81d0018de33ebd0d502e24557aff5d1a58c3aa4f588dbc478138
MD5 2a4b5570ee471e31af4e4550adcc46a0
BLAKE2b-256 b393372c27fbe5025e37742f1a62a9893a50624d9e9e939b0008dfaa8f0baa6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.17-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5766d958ee9c0b2b5a32fdc78a20ffe4fd17e434ffc76b65da18c529eeefb4bc
MD5 eb0c51dccf04a596867867bd9a6d15f3
BLAKE2b-256 cb9bc603ba7940620d90a221af8fc05f5c7a1f6875c5607cc2c3b8521b3f5434

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.17-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 131.9 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.17-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 063a4f61056b051f60cdac9902e12317fb3634b6d526f028d667193b4e20377b
MD5 525358d1b55e37298b349cc70ae99f6b
BLAKE2b-256 463d004913194aa93f306101a0b18b7e142ccf75e193aed6b9534de8d8e14151

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.17-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 155.4 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.17-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 daafcb6b1c02e32451e21a11484a31a041c521ec9883abb4d2b60863770f2d58
MD5 1804ee401b25c67ef9de14323badcfd6
BLAKE2b-256 42bc69df72e5f2bdf98cf7500e2616ae29b9ace39d4d8c93865e089d6b429c8a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.17-cp310-cp310-win32.whl
  • Upload date:
  • Size: 134.7 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.17-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 778c8b13583531c208c675b4f4502d58cd70528404bb000eb620377a6659ad59
MD5 a39a826c72f5b43e441f9b8b7cfce79c
BLAKE2b-256 a564c1d6e8a5fc522d7931268641adf3e9f1266db2f2db24606d6140e547311d

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.17-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.17-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.17-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9844a3c528106969486f0ec59a396a2ef55ecd4e4815ee8940c34071149a9b7d
MD5 e05f7bcd2404d89c10a87873dffac68f
BLAKE2b-256 8acb5333b57cd52b3d8a84e141577c5b5507d35c1834580d4ee0a746c7ee5eb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.17-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 51e0151f55273262c808207cef8e2171abe11fd9db178070320ab6f47aa4ce4d
MD5 f75afef936812803c633d972476de187
BLAKE2b-256 9b5d587e085a00d78340c14567e7e591ca946867dd0c8e2286a2e6a4b9bb829f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.17-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a51fc694a63f95c6537cdadd0fb95b6a750f9508fd35264d674b06e2dfcefae0
MD5 a9007a53a433e62a8dc6edad63440223
BLAKE2b-256 c0a25056e809f65897b16b23befd4de7588feb2563d39a86972ad8abc658b285

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.17-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7e671afed836d3245b0143873fba3aa84c85958512e2ec470bc9e85da797c961
MD5 80036d9f8f954700ca86595f2b7155e9
BLAKE2b-256 22ca8a199c9e20f18ae87f989472160187e04b274dce5bde352b1cd90c032dcf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.17-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 132.2 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.17-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 be5f7a1494d38c3f6920fb221178f0493af5525e1ceb81f635fa777e2842e2f4
MD5 a07c4df40028f59453cdc36ec96069a1
BLAKE2b-256 3656599fe1b99561966b122aebb5f9abfdda1ab86961583278636d8f51904ff2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.17-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 155.5 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.17-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bc00f13be2823637693c1feb33fb2fd0cc595dac1faf6b103cc15d9aa1c1aad1
MD5 dc73aa445b3771f8dae486252914800a
BLAKE2b-256 4e0b556eb4b0f663e4512f32128b614224475b1c5d41258f021def2d534ec776

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.17-cp39-cp39-win32.whl
  • Upload date:
  • Size: 134.9 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.17-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a5e92ab6631df9b3160e48d68a60ea7aa0021bf3f845538fc8b361696ef32107
MD5 15b9efd42d0e3a04b9c6ae89188f0784
BLAKE2b-256 731c969b254cee76a55889e263e4e9f42ee4843660d2dc3ab12410cc4bc62850

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.17-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.17-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.17-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 863c420aa0a338c4cd2df6d63489cd616d87156d52770077fa9be6c8c19355ac
MD5 e88eed2ed94999734308b865dc50874c
BLAKE2b-256 26d5faab688a03850f5927053d4d53ccc07e3fffc374cb3636faf3468ebb06fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.17-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a754c2256dbdac6c0297fa66c640c519a7a8c5199c437a907fc1c0927866ff34
MD5 25c793f8cf96fd73b30ef3f6c2de4465
BLAKE2b-256 c1ee7a6d8cb831873791e591c1f7bb1a02dce211b581a80da2942765b3253abb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.17-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8aa6b530ba63cb47c7d2097719f46aecc2316bceb5acd75e5801a34ab2eec98
MD5 cbe8d983f199a3c01d6799e28d6930d1
BLAKE2b-256 a3c692070c2d95cb5fa101a07bdab4ee7d9ff56d35bbce4a8c73f3bbf85b3575

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.17-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 98571457467985b3a2a02bec8ca00a6b638405ef92c8a992a59cf54ff81f50c6
MD5 147b1ef6174a5a41e38f4dc2a6dc6997
BLAKE2b-256 863fa4457d8ce5635ba498af7e06d8a9c6ade407ac36bca370fed00e10ce1f79

See more details on using hashes here.

Provenance

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