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).

New helper methods on every quadratic integer value:

  • x.content() — largest positive integer n such that x = n*y in the same ring.
  • x.factor_detail() — structured factorization as Factorization(unit, primes).
  • x.factor() — a plain {prime_like_factor: exponent} mapping whose product is exactly x.

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).
  • Factorization (factor / factor_detail) is currently implemented for:
    • complexint (D=-1, den=1),
    • QuadraticRing(-2, den=1),
    • eisensteinint (D=-3, den=2),
    • and the Heegner maximal orders for D=-7 and D=-11. Other rings may raise NotImplementedError.
  • **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)
  • x.units (finite torsion unit subgroup exposed as a tuple)
  • x.content()
  • x.factor_detail() (returns Factorization(unit, primes))
  • x.factor() (returns plain dict[QuadInt, int])
  • 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.18-cp314-cp314-win_arm64.whl (210.2 kB view details)

Uploaded CPython 3.14Windows ARM64

quadint-0.0.18-cp314-cp314-win_amd64.whl (247.5 kB view details)

Uploaded CPython 3.14Windows x86-64

quadint-0.0.18-cp314-cp314-win32.whl (212.9 kB view details)

Uploaded CPython 3.14Windows x86

quadint-0.0.18-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (625.6 kB view details)

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

quadint-0.0.18-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (591.0 kB view details)

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

quadint-0.0.18-cp314-cp314-macosx_11_0_arm64.whl (344.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

quadint-0.0.18-cp314-cp314-macosx_10_15_x86_64.whl (361.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

quadint-0.0.18-cp313-cp313-win_arm64.whl (206.7 kB view details)

Uploaded CPython 3.13Windows ARM64

quadint-0.0.18-cp313-cp313-win_amd64.whl (244.5 kB view details)

Uploaded CPython 3.13Windows x86-64

quadint-0.0.18-cp313-cp313-win32.whl (210.6 kB view details)

Uploaded CPython 3.13Windows x86

quadint-0.0.18-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (624.2 kB view details)

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

quadint-0.0.18-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (590.6 kB view details)

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

quadint-0.0.18-cp313-cp313-macosx_11_0_arm64.whl (344.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

quadint-0.0.18-cp313-cp313-macosx_10_13_x86_64.whl (362.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

quadint-0.0.18-cp312-cp312-win_arm64.whl (206.3 kB view details)

Uploaded CPython 3.12Windows ARM64

quadint-0.0.18-cp312-cp312-win_amd64.whl (244.3 kB view details)

Uploaded CPython 3.12Windows x86-64

quadint-0.0.18-cp312-cp312-win32.whl (210.8 kB view details)

Uploaded CPython 3.12Windows x86

quadint-0.0.18-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (627.7 kB view details)

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

quadint-0.0.18-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (595.3 kB view details)

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

quadint-0.0.18-cp312-cp312-macosx_11_0_arm64.whl (344.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

quadint-0.0.18-cp312-cp312-macosx_10_13_x86_64.whl (363.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

quadint-0.0.18-cp311-cp311-win_arm64.whl (205.3 kB view details)

Uploaded CPython 3.11Windows ARM64

quadint-0.0.18-cp311-cp311-win_amd64.whl (243.1 kB view details)

Uploaded CPython 3.11Windows x86-64

quadint-0.0.18-cp311-cp311-win32.whl (209.1 kB view details)

Uploaded CPython 3.11Windows x86

quadint-0.0.18-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (608.0 kB view details)

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

quadint-0.0.18-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (579.6 kB view details)

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

quadint-0.0.18-cp311-cp311-macosx_11_0_arm64.whl (344.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

quadint-0.0.18-cp311-cp311-macosx_10_9_x86_64.whl (360.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

quadint-0.0.18-cp310-cp310-win_arm64.whl (205.2 kB view details)

Uploaded CPython 3.10Windows ARM64

quadint-0.0.18-cp310-cp310-win_amd64.whl (242.1 kB view details)

Uploaded CPython 3.10Windows x86-64

quadint-0.0.18-cp310-cp310-win32.whl (208.4 kB view details)

Uploaded CPython 3.10Windows x86

quadint-0.0.18-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (604.3 kB view details)

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

quadint-0.0.18-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (579.5 kB view details)

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

quadint-0.0.18-cp310-cp310-macosx_11_0_arm64.whl (348.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

quadint-0.0.18-cp310-cp310-macosx_10_9_x86_64.whl (364.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

quadint-0.0.18-cp39-cp39-win_arm64.whl (205.6 kB view details)

Uploaded CPython 3.9Windows ARM64

quadint-0.0.18-cp39-cp39-win_amd64.whl (242.5 kB view details)

Uploaded CPython 3.9Windows x86-64

quadint-0.0.18-cp39-cp39-win32.whl (208.5 kB view details)

Uploaded CPython 3.9Windows x86

quadint-0.0.18-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (599.6 kB view details)

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

quadint-0.0.18-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (574.7 kB view details)

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

quadint-0.0.18-cp39-cp39-macosx_11_0_arm64.whl (347.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

quadint-0.0.18-cp39-cp39-macosx_10_9_x86_64.whl (364.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: quadint-0.0.18-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 210.2 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.18-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b0633eb20510e23ac06a6727886ccbff488fa84f005f77b2c74c64e0047509a6
MD5 93cbd00e0916d0cdc1fb7210788b437b
BLAKE2b-256 bed972751f98ddaf1add9ae0f32415ae0def892e59fecd3d344ed3ed4a2f21e4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.18-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 247.5 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.18-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 69bba7a5d2f4f0e13f314f977bbce15d8e3de3424223259f2e18b9bd83ccad6a
MD5 fe009f29f333b74dc97d056fa9a10d88
BLAKE2b-256 ea0d1ea3056982905de3ec3b0c5cd55c2f400d11afb7b4ac89115338dd2a48c9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.18-cp314-cp314-win32.whl
  • Upload date:
  • Size: 212.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.18-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3c1fe8ea0eb1eae8eb97daca95bc156b9f3e986cbb9f7c034234370e39dcec27
MD5 cd92f650d147fc1e817985186962a40f
BLAKE2b-256 dacc624f66478f054d30806cb666ca9a8dc973fdd91966322b6224d4d7986776

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.18-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.18-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.18-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e8e3e01a0419aa99f30fe2297bc7d622f391f7f158c4bdcfa5d9834000836ef2
MD5 1f1cca87729f66f2032d3354e2e8f380
BLAKE2b-256 95bbb8a02be341d3a90283f518bfbbc28a46e54d3a03f4c85623e36f0e174222

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.18-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f4f1e572bdf4948d92033b289da6db33212470e534aacd1b55330580ac976f32
MD5 adff90b03b48aebc3324d68eab1d6031
BLAKE2b-256 eddb33a465c25e46449ffa47ea0a3fd75928bfff56b8981a7410b298ae22f5a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.18-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc0e72ef7bfaa8d70762baddab77cac1d96f37c8aed962a33e0097bb044a5cd5
MD5 beb03757fbea9c244be488a28d7ef53d
BLAKE2b-256 f30ddf5bcfe5c44ba83cc7b73ff6c211cb6f0a4a13300acaddfb60bdf9f08742

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.18-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 885260a3ce149d99bae6c33aabacf7d7d032cd78917caf657f8d48b2608bf55e
MD5 cc1428358654801dd1da9019c4fc1be0
BLAKE2b-256 278b7e83dbd66da3ff1ecb8f91db1e9ce8f0cc572341d2893def4933a7c7d0a4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for quadint-0.0.18-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 68d8581ebfdf78941e86473f4d9f80a245bdc6f5f04585cf2ff756cd76a4350d
MD5 d1da123cb9fa8e37d477606859bd014c
BLAKE2b-256 c867c2f18ec6ffb7738428498f2e3cc98bf9b06efb861f6bf130096d4dc55e2b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for quadint-0.0.18-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 28b4432be2477944e114534a60dfb964a51a66b9087002220d466c5ea892f09d
MD5 7e5fdab4a67fef3aa8d8eda13677d9c4
BLAKE2b-256 08e96d38fe2e34f2da8e8120173793dffe421c655b5954b88d748f7c36b40580

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.18-cp313-cp313-win32.whl
  • Upload date:
  • Size: 210.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.18-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e3b24152f4907b5dd8fab03c643ea7193f1e6493817978f380b6c67b89be132d
MD5 3b9ee10b4b304afdf3dbddbc61876475
BLAKE2b-256 0784f55a9c28ed59c759608a77772a62bc1840406653c4653bb8432611ca7f4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.18-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.18-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.18-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d5698cb8fbb5715aa18d344242f0c18b7ee2832f8e9aea2144790a3e0029927
MD5 14bcb4e3717eb30b06bcd64cf28741fd
BLAKE2b-256 ab6975a6dd38e60aed633bdd21c1231466c5686b416cc207b4c2381086c13a1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.18-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 56ce5299e67a06ea155e3814f63969c5c023bf2ec203107d96104811c335c3bc
MD5 aae6a0773193f769956ddbe5c4548654
BLAKE2b-256 a35d7760bfa36499375351e6339a03250c71b38a58f8921c267944b9eef15d66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.18-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36d0bf009838bf5fb61a5c33693823119a977362681597c3b9b2050bf79aa8c0
MD5 a8399aa17a870892c44d3e3edb6ec3fb
BLAKE2b-256 ed9a2966d3581444cf06ee9a5e89cd48334d64a02a889f092a091dcf7a72c7b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.18-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f15e4e84f330531287c15206dedfa6045934ee19fc4acd7acfce258ff4fc4552
MD5 349b707fafca93b914020a45864fcd4b
BLAKE2b-256 d5224e2db7ade38360e1ee97f019ef508aebb3db93848b281e06acda34ae1730

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.18-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 206.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.18-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 92d6d09c0c476666be121513e2275ec03fd56dc1989d7bb69daffa6a58bbfbc4
MD5 03c59289e26b56f99ea9f22fba21a402
BLAKE2b-256 e8100899a127fc9d346c3e156a02096dbd36b18c5873ad09daa52d14103c5645

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.18-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 244.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.18-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 701b43bc6b2c1047a9a93b394386c00ddf96aa97c0186fba487b07dfa4f06063
MD5 2a9c3467614b7e9eef571af64479e482
BLAKE2b-256 90474d3787cb83b286c1333220c651e1543d58bbfa0b2d922a650473df8f3bd0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.18-cp312-cp312-win32.whl
  • Upload date:
  • Size: 210.8 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.18-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 446d21a155bd9e14cf598a5de167f20241d99201aa28a388a098ad36b2f20042
MD5 0e4dfa329bd46adb49988187d3e5b3b5
BLAKE2b-256 8fec45feeb9adf457b2f372101b870dfcad330be4ef022377ded0efb5ae741d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.18-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.18-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.18-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7c19ab2150cea1cd9346723e33188c3138d25cac63a3a2c7d4267c3cf1374b70
MD5 88e1e50a8c93d23f7e62a9e0071baafe
BLAKE2b-256 62ef93723a1a986b85e4fa2fbdaf80dc729ceb5733f163e278e06792fb64e901

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.18-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba8b5abae90970d220d5c8714566c905b672bcaf7ca1ff492f615b1b4b101c67
MD5 c4698eb8fb3162ad35d0482bf52ef0a0
BLAKE2b-256 35ef821b92bd7a0a1217378682069279518823a53bd8adbacc6ac83e67ea97e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.18-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d70f670dc64677f7258bc392e35ee29b6e0b6e2ba74706ece40f0a99e65d7095
MD5 1d61dda1e92a9f2b0016668e29ff0c0e
BLAKE2b-256 35bfe6ae6a3d9ac1fb3d82c3e600dc7a5012e2696a5ef3576d09358b3f868595

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.18-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 545bbafc777dd7343b8ffa740ed7dea320ec01bbda3fa69e166818d9e93ddbf6
MD5 0e55bc39de11dd411fa7138b54cf37b2
BLAKE2b-256 345656efde3cb0888f29697b3fa752cefab803267528e1ef1d714d90d2038f79

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for quadint-0.0.18-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4c8cc1f4dae9e1ad34b9dbf27bd514f8820120cdd03070be4f41533e2f684ffd
MD5 8d69cc7663a4ca1f0694db2a923e3f2c
BLAKE2b-256 b1875f04be201533dada5dfe3307a951c6a2f6cafb3e241e81d4de89dc1d3e4b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.18-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 243.1 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.18-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7b3287a2904a43c5f1703c7cced35d28ce9e42d5e4d91e7591292a7f588b2e26
MD5 1932a2dadc04d408a14742254b1e68f7
BLAKE2b-256 48e1d28e2d7075fd01ceaed555153776017347fa750426d1992b3d1918314755

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.18-cp311-cp311-win32.whl
  • Upload date:
  • Size: 209.1 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.18-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8d75fe6ea5cd43b474dc7683ffd1164c884d905ad92a8583f745042845755907
MD5 dc92f702c71ead93c599c574b4fa282b
BLAKE2b-256 dbfdf81137bb50c175a407ec730679919c06151176cad6afc40f268a234e8d94

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.18-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.18-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.18-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50ca5380f7d369317e6c68ec4c60a3c761103f69e8b7209fc4d56ed572ddf5c5
MD5 ef70eedf595dc73fdf7400fbcffa82a2
BLAKE2b-256 ac303abeb408fd4307ef834f46391540d59aa58405bb26d5c1de85fd2fad06be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.18-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 226504646e721955bc67df431570004d5fd6b568ce57166bf99c227a08e03cef
MD5 0df8ad2ec5288635f1d67692b176def3
BLAKE2b-256 52f0465ece040f0955579cd5a9e3f5849d3179dce8b5f16ba7ce846bcb3ceed3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.18-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7864da77fe88ddaa28bbc8a2b5bb43e658a87ebe3af21ace89d8e68332a3e52e
MD5 8acbc0d53bbcbc13aa8edf1a3e019fc4
BLAKE2b-256 54f189adb1736ad242c85ad8e42011d775c79988072990f4ff35a9eaae8672c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.18-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3b3bd2c4411bbd15e7888d159419f1bfc41ec7afdd8a3cfda202a38c8b76b69f
MD5 2d6f99019d1b2a4c01d0de3b01495386
BLAKE2b-256 892ed77bf269cb3055d30a7ae1f8761f27d4d1ff8f03a03d7bee66cee5329b9a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.18-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 205.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.18-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 794c6aadd3fd3bea096eca492b1aa8780607a9f1747ce608847983fde6cc9840
MD5 140f998c41f6222b961aca4265611460
BLAKE2b-256 13149317c478b2bbcd41c1a32023a5fdd1cb430a0c390cb211fce9f809a4ca36

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.18-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 242.1 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.18-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a685cb783ffbf51dd150b69ee1351d1a39ecd43b43e5fec3f4a1e6d04f5c88b3
MD5 1e0cb451dcecb8adbc7caa0eb1e68a9c
BLAKE2b-256 a2fc705c6ad81205b09aa6e3d025a934789c1f2b13f9dbfed8a8381aa0283001

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.18-cp310-cp310-win32.whl
  • Upload date:
  • Size: 208.4 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.18-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 60897d3c3fe05c198c76d8eb195a5723d014360c527e9dffdce00ab3d69a59b1
MD5 29d19d52ada9f7c2b4beb63465d436ab
BLAKE2b-256 d3bff1fd1cfa150d7ef94e7645337de9e370c036c18489074b754217d1dc38a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.18-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.18-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.18-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 04271960e99e90315864ca688a86195ff7fa371e3fb50b542268c091f1180bf8
MD5 e880a5a9d1cf60622efe8a694c732edd
BLAKE2b-256 cc500318ef225f93f441e2f0295ab015e66aba7519dca4b3dafe42ae712df59d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.18-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1d21fc86d4215cc75ce5a0d24426cc04d0cf716d89de6d6f49421d6fbb8da165
MD5 31c840ced45a26d8e9ccd963726770cd
BLAKE2b-256 063452d127078eba85a3cfbd1d36e962ce00e131afd4e2e830a585b77345ca2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.18-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfb284b91a1a254a0417fe7b21aad856b38e956b53a73e4219bdb1c42d06b6b6
MD5 6dd671a5453a4cdf061f40c31dda5f56
BLAKE2b-256 b7369e9cfd8534821d2170d24ed375362293044267523e188265245df1dd4be1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.18-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d475c453631dbf706a0981270ae78692918443bfcad1777aebce1608de1fa1c2
MD5 a49c4cf17f53a11e2675bedbda947fb5
BLAKE2b-256 fe713f6a0c6fd4024c05b25e63fbc15bdc7c39f91e6226dba6dd7b49bad4e188

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.18-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 205.6 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.18-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 063a2fd0213ffcf8cd7a318678d574df1a50cf95840c8001f4aeb153a84643d8
MD5 cb59d1d40e526e3aa65c0ef89b919b44
BLAKE2b-256 69b4cefb6f73d409c103d157c7f2c67782b903795d67db7e4915e42015cf916a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.18-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 242.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.18-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1bfe851cbf7307bf4b0b568d2ebb2c84bc857fa97f22bb2ec8dcb2b1cf53fba3
MD5 5b8adbba238da2c35bcc0a65e29b2643
BLAKE2b-256 7f37691bc04d464f9adf5986acd29bedfd950814204c6f5a388d222c76bbd740

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.18-cp39-cp39-win32.whl
  • Upload date:
  • Size: 208.5 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.18-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3e29bc4618f462884c9d46797ec987cab0520f085c74f000e46d3a9302bd1f07
MD5 f31daf5c23b96f31529e528e8d27cc39
BLAKE2b-256 03fda244ee973f76f3b2ec0d08e50481fbe4e608c8bdb23caf15629064b517da

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.18-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.18-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.18-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1ab3d9f3d13717779f5c81ab76157416f6987dbb5f5c2ec4cf99d9f3ed89ce50
MD5 239e7b5a812b42c3eda7d5679e60e8d3
BLAKE2b-256 90a185655e4da02f5ae9534c4b580cb371babec41451be020bd7a044dff62292

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.18-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6ff569954c37bf12fcabfa5b663eebe4f4b5001872a7b453d5179a43d73cf6b2
MD5 8c6adbd31d72665410bdf59423d3f6f1
BLAKE2b-256 f477660170596950173a454fbc43b29c76d37426fdf025bbad8b838d7b3a0497

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.18-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0680e0659af636d8518b6bc1afe23cbda143a6f24d7104b996011fe0b27b75b4
MD5 04588a4d2c08998f056608c3c405a9e4
BLAKE2b-256 e6d9ff7c3c4265e8c32d04c3f28fe9369d5a01b22a873b9285101b4a47c9200c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.18-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5b7ce7f6aacb7c680a839d1758e496ffd5b4b8f32c876ec2441424be0abef09b
MD5 352c1e93e81429a5b65bec8564faed46
BLAKE2b-256 83dcc810e68a9e3cd769034e2287a886d2b6a3fe0000da457f56c33145ea9b6e

See more details on using hashes here.

Provenance

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