Skip to main content

A quadint class, for using quadratic integers.

Project description

quadint

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

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

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


Installation

python -m pip install quadint

Quickstart (recommended): complexint

from quadint import complexint

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

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

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

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


Quadratic integers: QuadraticRing

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

from quadint import QuadraticRing

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

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

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

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


Eisenstein integers: eisensteinint

from quadint.eisenstein import eisensteinint

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

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

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


Dual integers: dualint

from quadint import dualint

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

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

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


Split-complex integers: splitint

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

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

from quadint.split import splitint

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

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

Division & interoperability notes

  • This package is primarily intended for exact, discrete arithmetic (+, -, *, **, conjugation, norms).
  • 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)
  • QuadraticRing(D: int = 0, den: int = None)
    • If den is omitted (None), it defaults to 2 when D % 4 == 1, otherwise 1.

Ring instance (QuadraticRing)

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

Value type (QuadInt)

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

Project details


Download files

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

Source Distributions

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

Built Distributions

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

quadint-0.0.15-cp314-cp314-win_arm64.whl (106.5 kB view details)

Uploaded CPython 3.14Windows ARM64

quadint-0.0.15-cp314-cp314-win_amd64.whl (125.2 kB view details)

Uploaded CPython 3.14Windows x86-64

quadint-0.0.15-cp314-cp314-win32.whl (109.8 kB view details)

Uploaded CPython 3.14Windows x86

quadint-0.0.15-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (296.7 kB view details)

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

quadint-0.0.15-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (286.7 kB view details)

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

quadint-0.0.15-cp314-cp314-macosx_11_0_arm64.whl (157.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

quadint-0.0.15-cp314-cp314-macosx_10_15_x86_64.whl (160.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

quadint-0.0.15-cp313-cp313-win_arm64.whl (105.3 kB view details)

Uploaded CPython 3.13Windows ARM64

quadint-0.0.15-cp313-cp313-win_amd64.whl (123.7 kB view details)

Uploaded CPython 3.13Windows x86-64

quadint-0.0.15-cp313-cp313-win32.whl (108.3 kB view details)

Uploaded CPython 3.13Windows x86

quadint-0.0.15-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (297.6 kB view details)

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

quadint-0.0.15-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (287.1 kB view details)

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

quadint-0.0.15-cp313-cp313-macosx_11_0_arm64.whl (157.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

quadint-0.0.15-cp313-cp313-macosx_10_13_x86_64.whl (161.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

quadint-0.0.15-cp312-cp312-win_arm64.whl (105.0 kB view details)

Uploaded CPython 3.12Windows ARM64

quadint-0.0.15-cp312-cp312-win_amd64.whl (123.6 kB view details)

Uploaded CPython 3.12Windows x86-64

quadint-0.0.15-cp312-cp312-win32.whl (108.5 kB view details)

Uploaded CPython 3.12Windows x86

quadint-0.0.15-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (299.3 kB view details)

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

quadint-0.0.15-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (288.8 kB view details)

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

quadint-0.0.15-cp312-cp312-macosx_11_0_arm64.whl (157.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

quadint-0.0.15-cp312-cp312-macosx_10_13_x86_64.whl (161.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

quadint-0.0.15-cp311-cp311-win_arm64.whl (104.3 kB view details)

Uploaded CPython 3.11Windows ARM64

quadint-0.0.15-cp311-cp311-win_amd64.whl (123.9 kB view details)

Uploaded CPython 3.11Windows x86-64

quadint-0.0.15-cp311-cp311-win32.whl (107.8 kB view details)

Uploaded CPython 3.11Windows x86

quadint-0.0.15-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (290.1 kB view details)

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

quadint-0.0.15-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (282.9 kB view details)

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

quadint-0.0.15-cp311-cp311-macosx_11_0_arm64.whl (157.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

quadint-0.0.15-cp311-cp311-macosx_10_9_x86_64.whl (160.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

quadint-0.0.15-cp310-cp310-win_arm64.whl (104.5 kB view details)

Uploaded CPython 3.10Windows ARM64

quadint-0.0.15-cp310-cp310-win_amd64.whl (124.3 kB view details)

Uploaded CPython 3.10Windows x86-64

quadint-0.0.15-cp310-cp310-win32.whl (108.0 kB view details)

Uploaded CPython 3.10Windows x86

quadint-0.0.15-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (287.6 kB view details)

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

quadint-0.0.15-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (281.4 kB view details)

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

quadint-0.0.15-cp310-cp310-macosx_11_0_arm64.whl (157.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

quadint-0.0.15-cp310-cp310-macosx_10_9_x86_64.whl (160.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

quadint-0.0.15-cp39-cp39-win_arm64.whl (104.6 kB view details)

Uploaded CPython 3.9Windows ARM64

quadint-0.0.15-cp39-cp39-win_amd64.whl (124.4 kB view details)

Uploaded CPython 3.9Windows x86-64

quadint-0.0.15-cp39-cp39-win32.whl (108.0 kB view details)

Uploaded CPython 3.9Windows x86

quadint-0.0.15-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (284.4 kB view details)

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

quadint-0.0.15-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (279.0 kB view details)

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

quadint-0.0.15-cp39-cp39-macosx_11_0_arm64.whl (157.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

quadint-0.0.15-cp39-cp39-macosx_10_9_x86_64.whl (160.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: quadint-0.0.15-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 106.5 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.15-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 8ef8525e1958f3c3f636bbd1e3676a912d4daf9a993c334df72822cbabbd6752
MD5 22ae338902ac27d22c26667dc09e40f9
BLAKE2b-256 3bd808d49e29a06ec1fa6db52c47a4bba810c5ebff87121e661130db9d6ef3ac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.15-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 125.2 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.15-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5a97b4ced08cfce38a89939fd56aac4a6388ec7b6bba17af2a4079b182149992
MD5 0e136320d80adaf5fe85747b17c0b3df
BLAKE2b-256 89cdd552b42cfd4607fc811b761c8f726c3f603a61145e032c9718850998fa88

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.15-cp314-cp314-win32.whl
  • Upload date:
  • Size: 109.8 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.15-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2b94c7c86e3e870037e628a0031a19564c648170b10b97cbce742a8f675bcf3c
MD5 e473f21704273fe93b0efc67a072d67e
BLAKE2b-256 4ed27d87f3b620031a32107d422887c6c4e35833dfc57ad248639f25228d5862

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.15-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.15-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.15-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5490d17df727f0edf47ac9215d07084937b5df077481fb9400fd51a850710fbc
MD5 558948b9ee04688c66ad2d28c78c7959
BLAKE2b-256 3eec7357fbb86d78e56a030d091c8185bdaaf73a9184704b51bb0da224882135

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.15-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f9169648a8dfb659b4d43c8177bbf067dcdbca9a477158f43744bf33cb7b5ff0
MD5 f5c5cb7104032919e5119dc296ff440e
BLAKE2b-256 82719bb602586409f3a004be9c35ae141f34e50cc9427aa10bf50da574365961

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.15-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac17a1ef26a15b460ef5d1a5e4031a9dd8ac65dcb4600e4d6acb38282846a7bc
MD5 57f24feef71a078084aed00bda4c0a0a
BLAKE2b-256 44e84a5d6551f8689aea8ea4e4080f0a8c35ff6bc0ac0229c7c65b3e595c450e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.15-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b2a1a4879cc41fafbcd5c725d637d242c0ad7a9d8079ad3844bf2406def08e4c
MD5 2b53abe52493f4e05dae800db2af385b
BLAKE2b-256 3ae55f9412e0a5095e3998023e82367f517cd4495553cf119e9556ed1846262c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.15-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 105.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.15-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 13e894cc0404e86f8eb820830b2664ecd52e8325418d704c34ae227746adcbe4
MD5 46d6f8c0196aa4a1911a5b777a8f77a9
BLAKE2b-256 d151cdd4d89281877d1d3c171ac9f5c8d0bd3b6aeb2786684934b9387eb69ffb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for quadint-0.0.15-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2cb0e3ad165b7cee7bb97483487c243b749fe548f5378bbeda59f69cc598e6c0
MD5 9d9ab454d2c5d2970c0f93fca7992f0e
BLAKE2b-256 21b33fba4dc610627a868513829f0f29cc9a5e969b80f6b2d88e67adc5f6799c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.15-cp313-cp313-win32.whl
  • Upload date:
  • Size: 108.3 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.15-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ee99c08610a64b9aec4988cb4474062587c2d7073b1e0933b54011a480b8a284
MD5 697243a31785c613017fa5660332a1c3
BLAKE2b-256 1ab41fcc73418d323d065abb1505250618f3cc396f64ceabf3aa83bc4db6eea7

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.15-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.15-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.15-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6518ef3e3109cdf3dbe4acae6da051bb72b162e1dc9cb974222160da53025c3
MD5 67fba51ed9f681c63f9a80b71b5bda07
BLAKE2b-256 80b91505060055951a219d7ed715a90ba1fc4173afb7284b24d95f2410954803

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.15-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0be50ad454fb5dc1caba3826d2631cb7058295e383c11d126835f61282be36d
MD5 31610252eb6e99f7d975134534e582df
BLAKE2b-256 aa9cdecfda46aa77ee981088c68b54090f26a8f3d31c5cbc80204ae5896fcc41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.15-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0eca91543b97ba82c08f9c79f567fb8ca502e9c6ed91e2f8a3a0bac93ecd6f7
MD5 7b478fcf91639f8965b23d3be9b66ae2
BLAKE2b-256 71dfb21a171152e73e7bb229c3f6a2309144046d8b282517e4ca4754d88bde1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.15-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 842accf926a1f8765d2925b70fcbdd81fc56e31fb16ad96ecd9b59f948b65910
MD5 e00b96827501ad7b429c25fe123392a4
BLAKE2b-256 ecf9539c385e40d7b08aeb43282b4af3f738df061d2e2c7e215e3428020493ed

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.15-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 105.0 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.15-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 10cbe0dca03e3570b803b883c80342221f2b9097b19a7cbea3da5ca6c754d82a
MD5 c2fd8974e7ebe1565789be2a5eef4063
BLAKE2b-256 e18f10569417ab9ce04900f8a900c32b1a989250230538de03aab34702b54937

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.15-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 123.6 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.15-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 304c2dcdc63175e1d0e350d0f95260111faef5f26c806bca1e764bdbe3b99122
MD5 ba8a87a5fb603f6dbba14f95a244ca1c
BLAKE2b-256 7795d1e5e97424f1d7b5a60987adb8b384ba20064e35c7fbe42abc14a1f59a98

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.15-cp312-cp312-win32.whl
  • Upload date:
  • Size: 108.5 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.15-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7d4a0e15bfe54a7ede998e29d85206a561e34bb8e986bbd8ae8484a90e78e26f
MD5 c7fd79141f6d826be3e8792fee19f90f
BLAKE2b-256 384d7561e17a8079355fa1df17965cfe40bea066edaf72507c43ba6aaf57c98e

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.15-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.15-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.15-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 309ba90e71bbbb12d7dcd204c8aec7c331dd5d44ce14a8936fac9fd3719b527b
MD5 499e43471619c2f041b84449186d75f3
BLAKE2b-256 a9035ae75873c67e1b3caf49924a941168dc40d53968e3e1f9a39fa3368cca8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.15-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 29ba54b94a84c226f3fb1bd77a4d38d35e241ad5cd82655cf5c7a1d51bb1ba6d
MD5 64afc69e1f5bbb6ecaa7d9baee86ee8a
BLAKE2b-256 e573c6e0205386a388ecd0cb6dc783cae3c40a0f27da8fd2cfe8bf1195586a73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.15-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c58813a4f1ddf0e820f63e87b294f5670cd47da559110fc053772064425a4f3
MD5 8bf725829328b20a60a59350f55bf863
BLAKE2b-256 5a54f6b3edec1b7ee1ad1ac0ab5143d4b2c215e25fe0d2845b8b4e467b75a716

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.15-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 29c5400663ae9000ebdb242c5f796edf59e9a7d22c9fc20813eae6d99f48e2fd
MD5 c7e17407cd5f933f5c0cb304cd0a5249
BLAKE2b-256 793194f28689c9876d112deff4f6398399f227ba005b9fc3bdaf07ead1ce6751

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.15-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 104.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.15-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b280943d9c571a0f18c7f9924ac384f1402144fb44dd0bbef793ff8b28ccd229
MD5 2176787ba1c1101bde9d09b2e3fed349
BLAKE2b-256 2018acf90f7f63d91782a3f0aa3073202a2e6c7563e7aa66b5511ab2727f6bbe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.15-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 123.9 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.15-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 71abc2ed9ebaae766ec4a6e0fde11181dd4446f93c780fbbf28decfda41c4d94
MD5 a83ac32bcaa2ae611e3e9e46fa6f6188
BLAKE2b-256 013299f7609dec37b70755fbb3fb97aeb69f535610e5799167eba1de52ec875e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.15-cp311-cp311-win32.whl
  • Upload date:
  • Size: 107.8 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.15-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 07af1f45da5144ccc9734e598b8eb5a8b75ad9c5be5f5831dc407f9149b2d685
MD5 120f7268108649321119bcac5efd65ee
BLAKE2b-256 07f75a8402ecdc798fcd65dcf9b9970770608004241858769fdceca41b412cb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.15-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.15-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.15-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 105a39a7780ea8d1d676306c55e13b141f0ffa36b8db7d3b5453e2549fa8662b
MD5 0599049dbfe32d59521c2aa3b12fb0db
BLAKE2b-256 730f9af64693a296d26dce7cfe672cf4bd26dc4686fea92f0d17f27955bbe9f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.15-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 55fc7140bedb5f81a17268df8617653dad35bdc3bb20d64f98f9dabdb115effb
MD5 f796a9ff3183d1d364426ab2225346da
BLAKE2b-256 077bde827ce03697cc208704e0e7c2706f3f2f2a9086b2397340f9210f685dbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.15-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d6ece961357627a945fc5627253637b0c4b155abf2da706bf0eaae5ac4b750e
MD5 baca315a3a6656d928e519fd2f7f3639
BLAKE2b-256 07a26f1ef2223d8fa47148f1dc6db9fd6ac2cd16e8fa2405e1573282089d304d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.15-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 988f696763b48b8e766f359098c0d80ecee77baa78b7f7955e30389a280bfb5c
MD5 4bd8aa6aa50452cfddd63fe42d1d13fa
BLAKE2b-256 0d421dbfd461b0ab8411256b1de5e9b8f203a247e24dde36b3285aa889a98e22

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for quadint-0.0.15-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 6391de56583760be9c9dfa63ac7c7a54f2ebd70be0ee3ecf3555be36b68decfb
MD5 2c0ee66d7b925add6215d83d286d30b5
BLAKE2b-256 8832ef4be2d4a574f93fdef1c50d0f427fb5908536e66b52fd47219db8ccce71

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.15-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 124.3 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.15-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 316256a6d3ca21ce0144f24e35a876e837dbf3d82301756edfb9eff4858f9bb8
MD5 26a24cb90394575a7eb6f7fdf27e8304
BLAKE2b-256 dc9c0dc2a4ecb609e5c0a1dabe3c96725be4a9c2af71c87c6dd607eb8203478c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.15-cp310-cp310-win32.whl
  • Upload date:
  • Size: 108.0 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.15-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8441bb6a98ec6d18ef0348c07072e32b9fc07a7a3e20ab1743249d3928faddff
MD5 48610f409bac6d67aa34d86072da2b15
BLAKE2b-256 558bf933a0ad915655ea43514e0420f02e05bf2cbe840d913d55b24a2f399273

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.15-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.15-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.15-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a97e0f008ff8fdcaa06adf121b5f9e743a1e0af9183641badcf4138fbda45cd
MD5 b31f62141e7ed7bff8a512b344963d6e
BLAKE2b-256 4d1a4ba77914ce171551d8683421fe3d9d11fcc67b902597fac8f17e9312e196

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.15-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ff076c7ce0d4fb11b622394e5a33ffbbe4e117ade7820a01f0c88cf4ec61a929
MD5 9dd2194813375578dfcb844a9b4482a2
BLAKE2b-256 d06b134fce77f51a132d3903200f3bd4f00c4b3520b8f820da34d4ca0be3248e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.15-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 472b128b30de6328ecbeaadc196454f272478b9d0eb941dcba44b51a2763a5c7
MD5 7a1d374ec27405296fc5454db3084c1b
BLAKE2b-256 c3b3aa9080753357c4a704eb4e43a1bec06b7aabed99d05636b9242da65b4e06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.15-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d73c61273b9e2486a527a73cdbf81fca9f38910665b16efaca25475a8481333b
MD5 6a43d8c097d2a582498d1a786b7b18ef
BLAKE2b-256 8623446788b3f3e0743d8c42ebdde3d8af324617dbeb040f5267cec7bece6c2e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.15-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 104.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.15-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 8155ac6ccbc21cb40eaa3ae663b787e3bb0f47c1c86f83166ae9bd3b2ea452ec
MD5 65910950d7d4de29129ed3c3d967ea78
BLAKE2b-256 f85382c1a98538fc9cdcfb26abef3bfe139fdbd8e3036ac06b7245959390cfee

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.15-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 124.4 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.15-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 40939f421678cd8a2d04e745cea196f8ef3b3b797185d38d5e3f52852107f91d
MD5 01821ba13f6cf999205e03bb04e45395
BLAKE2b-256 8057fd80ac7d935baae683b0ceb789a48d8f0cfc192bcc6a734988e65759c3ea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.15-cp39-cp39-win32.whl
  • Upload date:
  • Size: 108.0 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.15-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6bf3909ceccf5fa355a80d13cdaad79088c2ca4a6f7cb76f8b1a39140267d00e
MD5 701ee8986ed785caff260a192b6ebc75
BLAKE2b-256 d7f4e21532d9c4114ab648d56548bc405fae08aa1102d7fa907c71a42a15d57a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.15-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.15-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.15-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e8ded23cf544399cada175f401912894f98420e285f213c78a12b3405a804838
MD5 efe172421fe577917d01dd895f5a2e55
BLAKE2b-256 48fb302dd9015afc49e2bdbd3bab65ffb40d38437fd2dbd493cc3fe62f1d31c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.15-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 72f72582536a88fa7ca05ca79ffc82d96073ad23b3a92a0e12a2320c76880919
MD5 263d95f20ce716e4f0a897befd600ca5
BLAKE2b-256 81d50587f0cd436946c19ef750615f585ce38c0b31b6401e73529b1b681770f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.15-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c42efb4a9aafb0407a8201d24826a57d4fa05fcf1a5cca7aea5f959a593e6b21
MD5 4f1105136e513475714015d73a3bae03
BLAKE2b-256 b9035359816d65efcbf32019004406671322031cd1d53daa36b0b7e9504fad8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.15-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f4f00a6d13d8ea40f95237b226b7fbbeb6f93f1773f45846f846692f420a17d2
MD5 0b1daffb7fb56ce7f6a884565909215f
BLAKE2b-256 4d204ffe695e295ebe7a4173aa7540ac6187a69b98799f90007dba09656b8f7c

See more details on using hashes here.

Provenance

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