Skip to main content

A quadint class, for using quadratic integers.

Project description

quadint

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

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

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


Installation

python -m pip install quadint

Quickstart (recommended): complexint

from quadint import complexint

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

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

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

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


Quadratic integers: make_quadint

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

from quadint import make_quadint

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

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

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

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


Eisenstein integers: eisensteinint

from quadint.eisenstein import eisensteinint

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

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

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


Dual integers: dualint

from quadint import dualint

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

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

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


Split-complex integers: splitint

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

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

from quadint.split import splitint

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

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

Division & interoperability notes

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

Example of truncation behavior:

from quadint import complexint

a = complexint(3, 6)

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

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

Minimal API overview

Constructors

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

Ring instance (QuadraticRing)

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

Value type (QuadInt)

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

quadint-0.0.12-cp314-cp314-win_arm64.whl (88.3 kB view details)

Uploaded CPython 3.14Windows ARM64

quadint-0.0.12-cp314-cp314-win_amd64.whl (103.8 kB view details)

Uploaded CPython 3.14Windows x86-64

quadint-0.0.12-cp314-cp314-win32.whl (90.7 kB view details)

Uploaded CPython 3.14Windows x86

quadint-0.0.12-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (255.1 kB view details)

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

quadint-0.0.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (248.6 kB view details)

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

quadint-0.0.12-cp314-cp314-macosx_11_0_arm64.whl (135.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

quadint-0.0.12-cp314-cp314-macosx_10_15_x86_64.whl (136.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

quadint-0.0.12-cp313-cp313-win_arm64.whl (87.3 kB view details)

Uploaded CPython 3.13Windows ARM64

quadint-0.0.12-cp313-cp313-win_amd64.whl (102.9 kB view details)

Uploaded CPython 3.13Windows x86-64

quadint-0.0.12-cp313-cp313-win32.whl (89.8 kB view details)

Uploaded CPython 3.13Windows x86

quadint-0.0.12-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (256.1 kB view details)

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

quadint-0.0.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (249.0 kB view details)

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

quadint-0.0.12-cp313-cp313-macosx_11_0_arm64.whl (135.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

quadint-0.0.12-cp313-cp313-macosx_10_13_x86_64.whl (136.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

quadint-0.0.12-cp312-cp312-win_arm64.whl (87.1 kB view details)

Uploaded CPython 3.12Windows ARM64

quadint-0.0.12-cp312-cp312-win_amd64.whl (102.9 kB view details)

Uploaded CPython 3.12Windows x86-64

quadint-0.0.12-cp312-cp312-win32.whl (90.0 kB view details)

Uploaded CPython 3.12Windows x86

quadint-0.0.12-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (258.1 kB view details)

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

quadint-0.0.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (250.1 kB view details)

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

quadint-0.0.12-cp312-cp312-macosx_11_0_arm64.whl (136.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

quadint-0.0.12-cp312-cp312-macosx_10_13_x86_64.whl (137.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

quadint-0.0.12-cp311-cp311-win_arm64.whl (86.6 kB view details)

Uploaded CPython 3.11Windows ARM64

quadint-0.0.12-cp311-cp311-win_amd64.whl (102.6 kB view details)

Uploaded CPython 3.11Windows x86-64

quadint-0.0.12-cp311-cp311-win32.whl (89.1 kB view details)

Uploaded CPython 3.11Windows x86

quadint-0.0.12-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (250.2 kB view details)

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

quadint-0.0.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (245.5 kB view details)

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

quadint-0.0.12-cp311-cp311-macosx_11_0_arm64.whl (135.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

quadint-0.0.12-cp311-cp311-macosx_10_9_x86_64.whl (136.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

quadint-0.0.12-cp310-cp310-win_arm64.whl (86.8 kB view details)

Uploaded CPython 3.10Windows ARM64

quadint-0.0.12-cp310-cp310-win_amd64.whl (102.8 kB view details)

Uploaded CPython 3.10Windows x86-64

quadint-0.0.12-cp310-cp310-win32.whl (89.3 kB view details)

Uploaded CPython 3.10Windows x86

quadint-0.0.12-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (247.6 kB view details)

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

quadint-0.0.12-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (244.0 kB view details)

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

quadint-0.0.12-cp310-cp310-macosx_11_0_arm64.whl (135.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

quadint-0.0.12-cp310-cp310-macosx_10_9_x86_64.whl (136.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

quadint-0.0.12-cp39-cp39-win_arm64.whl (86.8 kB view details)

Uploaded CPython 3.9Windows ARM64

quadint-0.0.12-cp39-cp39-win_amd64.whl (102.8 kB view details)

Uploaded CPython 3.9Windows x86-64

quadint-0.0.12-cp39-cp39-win32.whl (89.4 kB view details)

Uploaded CPython 3.9Windows x86

quadint-0.0.12-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (246.1 kB view details)

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

quadint-0.0.12-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (241.9 kB view details)

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

quadint-0.0.12-cp39-cp39-macosx_11_0_arm64.whl (135.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

quadint-0.0.12-cp39-cp39-macosx_10_9_x86_64.whl (136.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

quadint-0.0.12-cp38-cp38-win_amd64.whl (99.1 kB view details)

Uploaded CPython 3.8Windows x86-64

quadint-0.0.12-cp38-cp38-win32.whl (86.6 kB view details)

Uploaded CPython 3.8Windows x86

quadint-0.0.12-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (229.9 kB view details)

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

quadint-0.0.12-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (222.9 kB view details)

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

quadint-0.0.12-cp38-cp38-macosx_11_0_arm64.whl (128.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

quadint-0.0.12-cp38-cp38-macosx_10_9_x86_64.whl (130.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: quadint-0.0.12-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 88.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.12-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a84ad3ae5c1c22c68039cd654ae7f9d24d0e5e2b07aa9ed9ec846b51fe399dd4
MD5 05cb93ffc1f2681c3a4e60d935da9d8a
BLAKE2b-256 531663f69e91f997b8dbf798ca8a37ca10f21818596f88c039847f919ff382f3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.12-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 103.8 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.12-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 24a6cbfb53f5e365724f9d4f6fff394c1aa55a58be3b166628ae81b234948b7b
MD5 4bf707cf72274f66a385e20668bcd2ab
BLAKE2b-256 677696831abb3d11d6bf3a97c59a54d53e63b7789748a1880ff50615ab2d399d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.12-cp314-cp314-win32.whl
  • Upload date:
  • Size: 90.7 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.12-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 999426a9eea620c6445b17766db74d0a119fe8cfb0de306c5fe20dca18fa0fcc
MD5 6f477a5fa5ef6684afe799cc4801c9e0
BLAKE2b-256 6b16cbb46afed70c0f783efa6d2afd2f1e1db9f4f68dd637de95a01964819753

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.12-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.12-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.12-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4ddd2a5249c55881ed97fe8d434d53d6f04915f557b882d1299694af112c200c
MD5 5e96d44c1392b920cf2adc02a97cd833
BLAKE2b-256 17a5941e64cb235281586ca52e55bcb3b16e413fbc8faf2ff1df85834afeaadf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 646c7dd05095b7d3273dba12d8fe3ea91b8de8fb607a95d276085a9b4e78cdc3
MD5 3e71e2084de3a67f356e46af94210e42
BLAKE2b-256 fe5b106b25533febb967f395c0bd2e9d8d43035f88c599187cfe62f8d304856f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.12-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6aa52cddce652711c3600dd3d58404220fd7f5c3b3769be8cf0074dfa5a6d3ab
MD5 09ca92f07cd9ca5b6f0ff8b3e18a38db
BLAKE2b-256 83a2d197f77a6c4ada31e8f6a4a903a9314b24e874a1c189036753d50da1c937

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.12-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a906b94ce645b38e9864aa92ee7ee35ca951413c229bc8da6f3113e82c685e3c
MD5 ec6e3e3ac0d39f16d3546d2e95860574
BLAKE2b-256 40620884e18008c37638a581e2e57c0a1ed17c20ef11ddd4677b596fdb62ddad

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.12-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 87.3 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.12-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c27f13311b84fbeef51d56f80120084b132e0e1013dcd921b6b002d11b6795a8
MD5 27345fde085eef1b4fbcb713648fa22e
BLAKE2b-256 d172688188fce0ba9100a206880eb8edf2606e85980c3295703b282572919be8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.12-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 102.9 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.12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b026507d21b0f67d5d010c0cf914964fe67d32e8177b1f89c70a96a30b38ec5e
MD5 b0b75e60b6febcc3ca16836ef17086f7
BLAKE2b-256 eae8afe57d3da9c2a4183227d30c1b614cc705c5d4708434eb682c156dd4c9cf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.12-cp313-cp313-win32.whl
  • Upload date:
  • Size: 89.8 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.12-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 883976e62bdd5f2d6f79adac51f9be367e01f1a1be1f945e6964a4ac52259924
MD5 211bfb89d75d08f1aec7baa8e5e3c83b
BLAKE2b-256 874b9e06054bfeb002015a1af33ea5abcf98db8a05dea5c7506ab67800b5de84

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.12-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.12-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.12-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c1bb6dfd4b321275078ce0916fd5f9c0d5170e5157cc0b1870493588d146bc9c
MD5 e94d625a00077d1a78402e231a35f853
BLAKE2b-256 fc4877b517732b44dba3bcb299c00b369741af9b8bd065b3d61e72849b0f9890

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 490e8dabb13c7dc55900dcd885caa53697dd31a4c1f0b43e0b3f3694b4a22147
MD5 b898fb571d734f3d7d93c6c9108463c2
BLAKE2b-256 e8a9225ec0a16555584bc8e66f6f9f4ec1dee42e02d18dcbe5806aff1f774ab6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a4a482c62de9e004d1e5ee795e3fb82d478f7f08f02ec28cb709963832ca329
MD5 11cc98dcce1ca3a2e649fc8d34bd608c
BLAKE2b-256 44f7dc0ba6b348902269e9595ca426caff2f9601a1fb1067b4bf2171b4ebce7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.12-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 df809295beb57c9d02d39262459e782354733a0ca256bd694a8450479d4b1442
MD5 4a1e78e983559a16cd0c0accb3147fc4
BLAKE2b-256 93aad9684bf8d72a0c33b117f541bc50301b3e5b6b2078e2ff3a6dabe628725a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.12-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 87.1 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.12-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 828c097411a414fc582c2289f564cfea9d7a202a05cd08424d4879841e358370
MD5 53a3328e3db25f58fcc28f52c2d2c878
BLAKE2b-256 b9f6f9f677038c1cedd8151d5534068cf6b1696aa7f9d3128f103a460180a758

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.12-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 102.9 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.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9e1fd567fe3b3c2053ed75234d2c07f0d22b831b5770ac467d872e49fb101085
MD5 8661dcf332ba04e80152836431b081bd
BLAKE2b-256 33369d5c4db1f33b2aef572d0f3a3f1666b907aa02276a41e6d7da5425d7ba61

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.12-cp312-cp312-win32.whl
  • Upload date:
  • Size: 90.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.12-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 13c738e825e7c319d9a0e3f44909d7330b2d3a12c88b454c3c02f6b7de2af971
MD5 576a1bdf90eba98cedfc4d671cda9e95
BLAKE2b-256 55123f5523d1d0b62b3ffa6e1190649f272b692bb155aa8add350c4a0473d960

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.12-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.12-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.12-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e5bd854996a1753ca313ec295ecd57f3fac86446e87920e15803c9bc5c5e7aff
MD5 e099f7cc3c44b908faff5766b706365e
BLAKE2b-256 ba296d7b922c5ebe86402ae4565a6423c4bd496643d898bb7f1ea75c7445cd92

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 81268c143067e709b668fd3aaae1b552880503366742107b8cd25afc4ff18093
MD5 b7a5fc67a045862576c2ea405f6cfbb8
BLAKE2b-256 dfc7441e5eddb16abcedf5f105c92c48ca7f34d5899100627589c23857a154a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 871a7962c2cb8c521d759fa29d2182b77f04d383536916b00c2feb2a10e17c01
MD5 6c6be77516422efbb9fc457b1d0f9074
BLAKE2b-256 745e7cded247dbbd6ae0fc0dda7b3b00e04d9ff1608c5ae665962faa1870a4c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.12-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d3c04dc2b90edff138a0189f9dbb691c7e05d0e529a0e64d9800f433719083c9
MD5 3933e56d373237050747e8ef66273378
BLAKE2b-256 1b772dc9da7b46b54ced77953d2fc5c4083a99039833b327b113acc022e13c3a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.12-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 86.6 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.12-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 eda1965a0723fee58de87a9a7b84ade162ab8c71f20bdad104a8ef88b4c80516
MD5 841da4cedf400c5c0df12e3108f143bb
BLAKE2b-256 1d1f54d355746f2d2850b7bc6c0310fc231d6fc9665c36b1e4f912e57d3ebf31

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.12-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 102.6 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.12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a5c39a1f2d288bb5e006b2bc3306db8672ffb84b48ead5eb156616e247ff0767
MD5 f69e3bc892594002499da7a15e722e42
BLAKE2b-256 453830f80348c22de490e284e073583ebb3ef552f2256f1e0eafe5dae770bf76

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.12-cp311-cp311-win32.whl
  • Upload date:
  • Size: 89.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.12-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8f81c776e6f4026e4652c0473f3c04c153923660e7024d0ecd8c48bb45a4b7e4
MD5 94aa6db64e4c60550d8ba904c7addac6
BLAKE2b-256 ab8a172c0a9712203ca49f5c092e01ce96df50a702b00facb8836d22d0099265

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.12-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.12-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.12-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71103fd12f3cf09710f8c5c7d42e2cc6f1df8355b0889eae35a2e2311d293608
MD5 a1b2069bc2ad5e608f43640523dda5ff
BLAKE2b-256 b8ad8fdf7d5675554880b65a57bc00445d5d78ed8c4abae9577581409b20eb17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea5b5473ca7b0323a25a40052a72bac9779daa107a05334bcdfb5178c86a2174
MD5 44d7b3b7d1cee433580eca4c208404fe
BLAKE2b-256 8f337cabcde81677290d4360476bada4bcd9b20f8833bdd7c22c5412ce4cf039

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15824abaf7b3ed9b0c4ec0b4ace1457e62c98c86649b1e69373fae55f774625a
MD5 e4a505c84a81a3f4f60e104cb4f419e2
BLAKE2b-256 6a885d52fa9d2bdbe1acf93e288d84b605c98c98122c04702f729fe54a8a5d18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.12-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 141d4062e5890ab55ae12e79d587a9c0e9fde20eda86c6f6fb6b1c7b7fb37135
MD5 b49cc9a4ea8a21aa34c1b440fa603c8c
BLAKE2b-256 4e9514a1fe9560b95227fa2291d00774c26a588f47cdac424b2036af4f43b206

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.12-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 86.8 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.12-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 35508be9a66ad08b021d791c411d0455d50881a559777cffef39118e5dcdc415
MD5 59bf14b45b4a3a24cb546168699697e2
BLAKE2b-256 59efe7af5fe03f31a32e63ecd632cd8cdb93ae35f5baaa50198b6ac7ab5dac2d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.12-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 102.8 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.12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 87c4d32bf4d9bd2827b236b7adc38722510f1e4f0788a2111368fe7c15fe4cd0
MD5 a04190979d4dde916418584d669415ac
BLAKE2b-256 fec577ac49370f1855e63615ff2844fe19ff4b8aaf7ee8c7f33c9646970452d8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.12-cp310-cp310-win32.whl
  • Upload date:
  • Size: 89.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.12-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 89602fabde6d3defe564a3ddf6d4738060e664c7a975648c5ef6410f57102c2f
MD5 79e577f7c7dfdf9164d3b764d22fa8c4
BLAKE2b-256 ae54a64e07164a6028608b94068fa071263802436185fbeaa8568d7c97e79cbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.12-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.12-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.12-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b124a5ee701dc1f8802118cc2d5eda23e4e76ac9f603e77e922d92016ad2b7ce
MD5 016aaf084c5175404bb501a557e07027
BLAKE2b-256 6333c0a8d6ae6bde5509c5218080e08c8ba680c402f640885326293a37f3734e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.12-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aaa5b42229b4ea07991e4f007e9a231e5280502d5f039dd9de593f99e62cd44f
MD5 855193282e776c057c01d7e98c7d881a
BLAKE2b-256 7ec3a47a5869ccc2130fc9ce336e025526cd33a81b63fee34d3aef4927633ab1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcc681b377481a83706fbd9bfb3ca5b533605f616bfa813f6ce60fe49830c96e
MD5 b4e622749372161a765ed52be89b79ee
BLAKE2b-256 f72001dcba5daa95609ae3081ea4983aa8a3c980f77e04ad60511f24849c7506

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.12-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c250ab1bbd6da522812e2cddfdae34de75e48061b0eccb6f3192378d5bda674a
MD5 c7205f2446c7f80183a9e2e0b7e57468
BLAKE2b-256 944d218a13c6ce7768a56651efeee4600a1817e8af3c4c08478b0cb2dbb2db91

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.12-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 86.8 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.12-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 8d5da40e1c78a1e65cafbc12420e68dcbcce1bad30dcd8afaf6921744bfe5e4a
MD5 8974991fed52f25e2580fc3b8f4c14dd
BLAKE2b-256 21b0600e5364bce88046af35850b6f90821725ccd534d79340fda06c718d7c9c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.12-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 102.8 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.12-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 324c9af3db88f9d23bc7fd895d61a33fb93bbc359a0e3b528fd18e360ddee257
MD5 526625c75adac6077f94137c7f6dbc4f
BLAKE2b-256 ce6ccca10b1280f6b8166a5ad15a4a02c40d1c860506447af9595471455c9c8b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.12-cp39-cp39-win32.whl
  • Upload date:
  • Size: 89.4 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.12-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b2f54385aeab82bd88e9ab9fbaba39915b8f3f1fa27ed22e2ac5120a6aa3052d
MD5 fa0074081be0b5060d32a120926a32a5
BLAKE2b-256 a669673e50b40486544b32360552c58a65a1a1525a79c4328c8e01444bbab559

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.12-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.12-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.12-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70e8297b6747ca5e9bbd4c87cbfe26de5e06a5bfe841bdc1c80be26646c8b93d
MD5 f1e8e4465e4413b50633e6e82709e59c
BLAKE2b-256 383a31c7e5cb774052f71a0012cd119629cfae1ce6202d8ef4359dc546804a03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.12-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 713283fffc5a32773694912acadfcc0f904edb2697e404507937d438b044eb1c
MD5 164dae850bf844e0d772a7bc4b91c4f1
BLAKE2b-256 1cacc609a6302715874cb8356180d044e2337f2786e81e39d9541b7a2510df48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.12-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be228c71ed3788967f87f321b39146f79597777817777753a7630f34cd7d241f
MD5 cfdaf89c8ac6ca60596a7caadaf3122c
BLAKE2b-256 b5f3c607d61001f6139e7214ce89dc3c05bab04900623ca9d6691fe3e968fb7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.12-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9348fac07931dbb6bfd46e5cb64f5d0ff2752d317e4bb077ab3c296106fcc530
MD5 1e5886cabcede0e792297a086fdc14d9
BLAKE2b-256 8a151dc6bb07cfe92b52acb66cb429ba91334e8cb631d6ea10aefa7d0b128f30

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.12-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.12-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: quadint-0.0.12-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 99.1 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.12-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f6202b3ed07b81dd13820361a9091d1b68dd9158498f41f438ebd08a20ba14f1
MD5 d1035161299accb0e240a73a2d378d4a
BLAKE2b-256 86fbb4719187b19b9e08c6c7a6f63dbe67e816a2f7b29539a7820d29ff129bd7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.12-cp38-cp38-win32.whl
  • Upload date:
  • Size: 86.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.12-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 53618699b634e5c92f7c9d1a98a69cdbd1c5810379a0d42118693926d97baace
MD5 7a1b25aab3f800ba5927ed81f1a71be7
BLAKE2b-256 b08517fdf60b2586092052d23e22d1fbd8e683418204bb84516b5d0311dae67e

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.12-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.12-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.12-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5609b23b84d37a2efd5ef4580011bd82a98bc8576cfef0a107454e27e9c83bf1
MD5 52e3dd3fa5c40df7221b1fb5761b7c48
BLAKE2b-256 4c6fbf088f7b64f55e7019585555b163ff4f9a5362123d5738b217253e0d5b00

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.12-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d1a7b5ca504f278fff191bdc9594f2a64df0ba63f06960c37bf7d4ce130dfb88
MD5 9378a5f4bf6fe83a5cfa7266a1267e4f
BLAKE2b-256 efff121b8c51fd03bebb04ec65eac63d4c0e3eb4bf4542371a42f90f2bc569ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.12-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 195def5a333b5eae95ae65d7640dbde9deaea1440d7bc28eeb4ec4b871f87fe3
MD5 d73da33d61ee9730774154c02e423b69
BLAKE2b-256 9707e3c303ce0243517d6e855e45c79718ac2a4386b6b3f02255457d6f68cc77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.12-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 45d2909be65547aa4347f0ec12a387548c2c206750b25514f94c5f0780f2abc3
MD5 3a0ce8fdadff16a35960c32a01c2c179
BLAKE2b-256 b24ab76a82e49e57696749e3aacbe6be6d20e4d4b6de5d4b47fd82a1250ef7b0

See more details on using hashes here.

Provenance

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