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

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


Division & interoperability notes

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

Example of truncation behavior:

from quadint import complexint

a = complexint(3, 6)

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

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

Minimal API overview

Constructors

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

Ring instance (QuadraticRing)

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

Value type (QuadInt)

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

Project details


Download files

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

Source Distributions

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

Built Distributions

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

quadint-0.0.9-cp314-cp314-win_arm64.whl (65.3 kB view details)

Uploaded CPython 3.14Windows ARM64

quadint-0.0.9-cp314-cp314-win_amd64.whl (74.6 kB view details)

Uploaded CPython 3.14Windows x86-64

quadint-0.0.9-cp314-cp314-win32.whl (66.0 kB view details)

Uploaded CPython 3.14Windows x86

quadint-0.0.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (189.2 kB view details)

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

quadint-0.0.9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (184.8 kB view details)

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

quadint-0.0.9-cp314-cp314-macosx_11_0_arm64.whl (103.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

quadint-0.0.9-cp314-cp314-macosx_10_15_x86_64.whl (104.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

quadint-0.0.9-cp313-cp313-win_arm64.whl (64.5 kB view details)

Uploaded CPython 3.13Windows ARM64

quadint-0.0.9-cp313-cp313-win_amd64.whl (74.4 kB view details)

Uploaded CPython 3.13Windows x86-64

quadint-0.0.9-cp313-cp313-win32.whl (65.5 kB view details)

Uploaded CPython 3.13Windows x86

quadint-0.0.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (190.0 kB view details)

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

quadint-0.0.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (184.9 kB view details)

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

quadint-0.0.9-cp313-cp313-macosx_11_0_arm64.whl (103.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

quadint-0.0.9-cp313-cp313-macosx_10_13_x86_64.whl (104.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

quadint-0.0.9-cp312-cp312-win_arm64.whl (64.4 kB view details)

Uploaded CPython 3.12Windows ARM64

quadint-0.0.9-cp312-cp312-win_amd64.whl (74.6 kB view details)

Uploaded CPython 3.12Windows x86-64

quadint-0.0.9-cp312-cp312-win32.whl (65.7 kB view details)

Uploaded CPython 3.12Windows x86

quadint-0.0.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (191.4 kB view details)

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

quadint-0.0.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (186.0 kB view details)

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

quadint-0.0.9-cp312-cp312-macosx_11_0_arm64.whl (103.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

quadint-0.0.9-cp312-cp312-macosx_10_13_x86_64.whl (105.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

quadint-0.0.9-cp311-cp311-win_arm64.whl (63.6 kB view details)

Uploaded CPython 3.11Windows ARM64

quadint-0.0.9-cp311-cp311-win_amd64.whl (73.5 kB view details)

Uploaded CPython 3.11Windows x86-64

quadint-0.0.9-cp311-cp311-win32.whl (65.2 kB view details)

Uploaded CPython 3.11Windows x86

quadint-0.0.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (185.9 kB view details)

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

quadint-0.0.9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (181.4 kB view details)

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

quadint-0.0.9-cp311-cp311-macosx_11_0_arm64.whl (102.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

quadint-0.0.9-cp311-cp311-macosx_10_9_x86_64.whl (103.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

quadint-0.0.9-cp310-cp310-win_arm64.whl (63.6 kB view details)

Uploaded CPython 3.10Windows ARM64

quadint-0.0.9-cp310-cp310-win_amd64.whl (73.9 kB view details)

Uploaded CPython 3.10Windows x86-64

quadint-0.0.9-cp310-cp310-win32.whl (65.4 kB view details)

Uploaded CPython 3.10Windows x86

quadint-0.0.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (182.8 kB view details)

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

quadint-0.0.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (178.6 kB view details)

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

quadint-0.0.9-cp310-cp310-macosx_11_0_arm64.whl (102.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

quadint-0.0.9-cp310-cp310-macosx_10_9_x86_64.whl (104.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

quadint-0.0.9-cp39-cp39-win_arm64.whl (63.5 kB view details)

Uploaded CPython 3.9Windows ARM64

quadint-0.0.9-cp39-cp39-win_amd64.whl (73.9 kB view details)

Uploaded CPython 3.9Windows x86-64

quadint-0.0.9-cp39-cp39-win32.whl (65.3 kB view details)

Uploaded CPython 3.9Windows x86

quadint-0.0.9-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (182.7 kB view details)

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

quadint-0.0.9-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (178.6 kB view details)

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

quadint-0.0.9-cp39-cp39-macosx_11_0_arm64.whl (102.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

quadint-0.0.9-cp39-cp39-macosx_10_9_x86_64.whl (103.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

quadint-0.0.9-cp38-cp38-win_amd64.whl (71.7 kB view details)

Uploaded CPython 3.8Windows x86-64

quadint-0.0.9-cp38-cp38-win32.whl (63.0 kB view details)

Uploaded CPython 3.8Windows x86

quadint-0.0.9-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (172.8 kB view details)

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

quadint-0.0.9-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (166.3 kB view details)

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

quadint-0.0.9-cp38-cp38-macosx_11_0_arm64.whl (97.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

quadint-0.0.9-cp38-cp38-macosx_10_9_x86_64.whl (98.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: quadint-0.0.9-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 65.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.9-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 40b46d30d73041dbffb2a1fb215a9d341cc47601399758061e2a9fd9c07a4e0a
MD5 99aaa1458c5997cb1f5751f4951b86da
BLAKE2b-256 553a95c59f6d0fa5b38e9f63fa43105d2c882f2b0ceaf58373da0f5dd73be92e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for quadint-0.0.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0491127422c090790f9ec96d9df81cc99ba2cf0c7e10bcccf9272878f37b12cf
MD5 086e0881c7c2bf2a89fb80d0a339ace2
BLAKE2b-256 5046e525a5db37e430fc3be2bbe7daceed94ba2f7e3ffe64b1384c82f27583ad

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.9-cp314-cp314-win32.whl
  • Upload date:
  • Size: 66.0 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.9-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9e845d888a154af38d03df7a7a625cc013adce8dda4a379f4ed0ac28a69562af
MD5 1bc97c442a10a9dd9400ad2dd9649f35
BLAKE2b-256 d9261c8bda08634594b8323424aeda5b66acfe840b9b019bf3c03c87624b077b

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.9-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.9-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.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c0be7c59cbc25ac758095ca848a7a854d6e4ed1a2aa5bbb4ecad61eb7d5a919
MD5 da07f07047c6e1e8721060f506b1762c
BLAKE2b-256 b3bc1f4d6975c1e8677f85534fe7429dfd312caa1cb7cb63ad2695e4ffef15fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3a991aa176c5d5a6e28bf9667f72585004ef55c0bb9a2ceff5063e8778329414
MD5 2ed19d6f4c4adc51ba7e48b7d1802ff8
BLAKE2b-256 89039e8188e79e839b6cba93d2a34102f5b9b5d26444f3870c75eee90a78cb53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d43bab0191135f26ac54edfcdbbd7921c4ec4086ddd9fcc5bd055767d19481ee
MD5 0d1f9631a71cd60119d99feb45147322
BLAKE2b-256 1495eaa65f58df6d6d556f4f6714e5e7e966e2e4b44916f032dd2c3c15458f22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.9-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d1bde00ccdfc3738ea9f6c24896f61f08835a964d56175affe33efba949f4b93
MD5 84be9c24bbb047c6f75f474417134cc0
BLAKE2b-256 f3fe16e7b3438f9a1bd7d02cfdd92e4d7dd6b23d05ea5793508bb7dac02eea79

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.9-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 64.5 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.9-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 fecc0f55e9f34f7d55285aad1436c7d72962f7ffdcfe2f1412bec2671712b80b
MD5 2edd796e7789d934f4ad4d8a31098b70
BLAKE2b-256 eec9202d3b3f7202c0daf618a00a5867e0f3753cbd7ee091857ff998f67dd45d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for quadint-0.0.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9c4d65fe428b58cf4107c7403dc5b3a7181bf2444ecf16823bed4002a43ebbe6
MD5 cbf554fce4c0e0b2e12e489a420b1f9a
BLAKE2b-256 88478556c10ac5971a46dde3b7711e29db03d1163862d6ff9a98b4043b31fe3f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.9-cp313-cp313-win32.whl
  • Upload date:
  • Size: 65.5 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.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6ec548ad68f345c490cd6d0443412eaf214caa1c2f4598cfe75d887cf259e30f
MD5 9d3d1bb7d50d311ce6e93e2aae3c396b
BLAKE2b-256 ec182741d892b1469a0f9e7d7036f36ea229f9891613b368171f96d3d5ff674a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.9-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.9-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.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e81691721890a897ac70ae0bb51d6632a0cd3f0c0909fb4f762992b0501ca089
MD5 44d0fb57dc001502e70f8609225e0aee
BLAKE2b-256 0be5a1b73b3f4df377cab892d5783d9e3ad694874b22c02a4baf1a5bbb12b4ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 393af3c1cba50ad06c7b46be54e185d7e8d6997ea7e7dbe53f41a2fd112e05f0
MD5 3dee612dd02dcf8c9112a6da341fca60
BLAKE2b-256 802580ed576d58753bfecf7ce0eea7430fc60b14f6d3f1f27b0ca606eeb64780

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e6b9af329f089c1a3da0f5189440e815b07eb0734771b7c75da5cf01f0c1007
MD5 16d44976b2592e9a4eb9ae098e2c095c
BLAKE2b-256 1641bb603a6dcf47edbac0f365c87c15e7c7cdfee4780454bbc695c4693c1b64

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.9-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4155d0181fddd32b2c3c4a6bdc251a115381815274416f83af6a6dd601edad6b
MD5 e64a4bba7c1040360462f4781cd837b8
BLAKE2b-256 5c542d8bea5caf5f1d61800570114b7af5795e98f688b25b54d82c419e464edd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.9-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 64.4 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.9-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cd5d9e0bfa7307658f385a39c9c8fde4a09a13b7dd807e28517b335da147cc29
MD5 9c7ed03f3a1ecd9818d26dc5db7a3a74
BLAKE2b-256 3bf2f1107106e54fb196cc10e929476935ae0907817ce2b7b18b370a6fb99d81

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 74.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.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b1c8dd7a474161afb3307762079932c3a9cec37bcb3a7a3282e89c6a3d73b7c2
MD5 e51606328ef07cc84472884d7bfbea8e
BLAKE2b-256 6a782271c52651c1003995b6ce79805a2f518d9952b2228995b72e5b65516575

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.9-cp312-cp312-win32.whl
  • Upload date:
  • Size: 65.7 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.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d1c88515e926f40bc223db9f27b7414dc38ab6596435f1f4158b0e77410f1ad7
MD5 9a25c2671f21b4b0ba1ff9a79e7a677d
BLAKE2b-256 ae097dc41ab09a3a74d257498508bf4994fe8e9b442db4d9e507f6e8b09b7bc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.9-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.9-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.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac1b4a7ebcbd73d5cbd356a0b64afbded97bc534a15f18f12e5d50cd215283fe
MD5 4d69b1a045f5788a4e6af62b4b18c4eb
BLAKE2b-256 9483c3b9afc92e6d3e2bd8ab953b8a6f670c33a95ed79b65e4b4cead988c08be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d453b1b8e8715b25754f0324844d6e451f4766cb13c6e508abe8ec1ebc024ebe
MD5 d04d7b200788945c046854fb1b3a2213
BLAKE2b-256 500054c75c31071c94a4c699c273eebc5c36d5fe6dd23ed11829e923378b171c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44b95ec281a229cd84fe0b6860b705c20756d15e2c70e92ae3d08de28cc971ef
MD5 5277feb60452dc49e253ed091f7fbfbb
BLAKE2b-256 24025f39b39ede82ad5f254c8a4d4c9e29ab6fe88c2e7c63dcbba9edeab0b677

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.9-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6393e76197ce03bc289e97d1c7b9d0957cb02739f472d8065f3678acbe3c1dd5
MD5 7bd0738d101c608f8106b3e68809bca5
BLAKE2b-256 1e7c22cad2f5943521a5e7dee9bfbe3859b8c9b6ab096f4ac739e30514f245e5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.9-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 63.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.9-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 07c5a89e430190634d48e972fa1022583fb6f8f772c90efda6e97016a7a31355
MD5 0e0b07629c0951037333c42f407a4f35
BLAKE2b-256 9668d1dd1b3f1dbd9f70e81cb35b061f86eb3cf870e2d4716ef05f125c89c27e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 73.5 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.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b141783a1e350bb7b2c84dd0205b54888565d344aa851ea0aacc9a40b95b1c5e
MD5 a1aa3570ad1ed24a6f4bab2fc773b4cf
BLAKE2b-256 6dfa72ce04594a86ee30bdf9a1a31f183b6f5391d79aa3a8089387d70721752d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.9-cp311-cp311-win32.whl
  • Upload date:
  • Size: 65.2 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.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ab6b39e412d046de9914f6ddc0e0c759f75243d67fd27c3197d3d6c0ff5ab572
MD5 056113424803a36b2d72f47f43670af1
BLAKE2b-256 5ecab90c829546f224759061369894a334473903a99f4892efc8c6505a6e279b

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.9-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.9-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.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd0fc7bc7833e4879878c790824942ed24121ccd192f640f560b9744d70639f0
MD5 1e8c86a8b6d46dbe2da7b8eb247bd334
BLAKE2b-256 44d49afcecaf6fca1f2ca2696d66736a74f9ba020c8f26fa27955b80c1e5494c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5f247d92c5bc2aab04a0d419fa85fb530882678c9c1db5654fc89bbf976487fe
MD5 8bb396df6b0dd690ed3a452bcaee75f9
BLAKE2b-256 796624e55b50aaa8361ab552117e4482f4eb0f77cc6ee2297e16a318080e9f02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac2d474c3b2e7c7c744cb260bfddf163e384b765dd458bcfb9adb61f9b40c874
MD5 509e5679ef2af96aba8fef50acfbf801
BLAKE2b-256 be1afc44ac299fa8fab7da02e028d6e2c1280049ca76e3d48ce930e4121ce87a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d61d457a5c7c7717299bbed3d21e7d726236a0544cb64755e6220cb7b683f8b9
MD5 44eb42646ccfd13bf4a2206e0568e2b5
BLAKE2b-256 bd2351eea866a50cf9d8f5954a5f795abd591bbb52580468d253bbb0a1dc3b5c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.9-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 63.6 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.9-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 35c0251e6fc8468452c4f7821db0c2be7669c82d7618d856ee77dbac656a8a22
MD5 ddeec8e5b30e1ba5ef3a34534d7c6bae
BLAKE2b-256 a4acbcc67bf5c60ad98b919b7840534e8cdebb7f9771d03aa473f9f156e06b70

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.9-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 73.9 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.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5b0bc4df8fd344217b370a335a5002b29702d9f1de08a574da7438c226541e59
MD5 177666f67d84b1be3fe62cfb7cc446fe
BLAKE2b-256 e2e06f79b4d3d8064eb811bcbbefbcd6f9eb812db6818c8804d23e6c34a0e3b0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.9-cp310-cp310-win32.whl
  • Upload date:
  • Size: 65.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quadint-0.0.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2d39810986d1bf76bf3778be0edf8cd3c0bfa7b0912492ee8fc2e9c667329784
MD5 a31d05b759a617dc39f62ee887437088
BLAKE2b-256 fc41682461bb61bda6a259496a5887578759d1f34ae9d4f97efe6a6be91fff21

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.9-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.9-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.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 69168ec3e2a08e05336a3778437e8497ec847878739314dae0a1b53d1bbac35f
MD5 f2ad46d7c8cdee39b93f643a6bb96624
BLAKE2b-256 a66040effad138c69bb6cf654df7a57a42c38ea74906209ed6d07597edc76ce9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c31511f0b3ba545aff19a58cfdc1923288d16b7a9c4089d04316c34e740dfeb1
MD5 778950038b18710156e3c9bfa57d962a
BLAKE2b-256 559863b83931743350ec8a7a9d961bbe98fb718b36d3f1d5e10eb4c8e72e1d67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 234538e375325b846d5e6cc3bfd3e28ae74bd79a07481aac52779c3af0f81701
MD5 86d5133d2f9d7a27c2048acbf8576abc
BLAKE2b-256 5c1d0406eb372c3ea6fea81ccc4305a04310354f0c3d2ef623d792062ef5daf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f0cf87efbd020ac177d505457f4d07782f0a6dc96733b6e22dec6cd6a91aed5c
MD5 07ca74f223c0893c7f3f19bb1dbc6e3b
BLAKE2b-256 d49019f57482d36ad7f074e2ef4fe0c49eff8de3dc5c5a900680c10cf0528cb7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.9-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 63.5 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.9-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 cb74481f8d617dcbabc2ba214e5867fc8cc578198b28de312e6d46aa07a0741c
MD5 0c6c010cb41686c1a92db72146a473f6
BLAKE2b-256 7ff97e67f86b8f548a10eb5b9a80c874192377c787069137286fc56da6d4621a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.9-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 73.9 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.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b25b492e96424b82cfeb65a967584d093a57f971c4ce24a0da731685b0783eb2
MD5 3ff1e68feae53e952210fd4b1d6f7333
BLAKE2b-256 d3623e63bdb366096d35dec9a434ea55fb03891f42e30d5aa23e97e76f099cd5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.9-cp39-cp39-win32.whl
  • Upload date:
  • Size: 65.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quadint-0.0.9-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d3feff94653f24cd1ace473c711313479b0bc9cf764c15b4e0acc6d6f319dc95
MD5 d64828d0405a2b2ad67d90d7dfc4709b
BLAKE2b-256 264396454c9c3e2d2b5a84c18007f5ad0aac1f54732e8d026e17ebd23d9ec594

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.9-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.9-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.9-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 237559829744cfec3c9983c9e26dd083cd1bd61c3f53f12e0dad4b9243d61914
MD5 2bb294848df3c7762852251244af7cc8
BLAKE2b-256 8435f9cb80de4b41f3fd3b089af3206cec59a13f4ba7dba84d0e1887de27883f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.9-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f46a6d418cfb80dd9505a47bee57d0cefd84939344cf951cf7ecde8232012e0f
MD5 62e0a63015ed5cbf8156fffc503972bd
BLAKE2b-256 1db9b41457a9612a8b0870d3da4ccf60286b04dd68b37e468b58666d2e1d3859

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14ca024d80e958f04afa3a45414dfc95b9543be07b6c46078df43525b11a5a8c
MD5 74df3e314cd3e1a124bbb143209f178a
BLAKE2b-256 fcd6fae9a61f1fd88182747da2987a73195d1f4af6714dda81536f3664831ebc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.9-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0948c19e87091e63f8c80e3f94cf7815c1b28f119be7afd834f0ba3a5ed6e5b6
MD5 11313402d4fcaea013fde1668b66fa0a
BLAKE2b-256 ff8f077eeb039ed16bea7980f06a11d0c2ffe2cd190a4f962df5adc1f4b4ce65

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.9-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 71.7 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.9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2c766f2c76d5325ac97763f9f7dfa1c2691117a6625512c292897cfdc51231e1
MD5 f79bccaace88b2075ff42883cda88d7d
BLAKE2b-256 87c695d742dcda4df30503b37267b70b6b30440ccf446985e3440ae1ef2d4b7e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.9-cp38-cp38-win32.whl
  • Upload date:
  • Size: 63.0 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.9-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c3dbbb12cd2a7289b37b18261aa1e14920b913bf53ac076e9f9c865763321ee9
MD5 c90b5fd936f4116f4a7845654ce6bcea
BLAKE2b-256 88c67b18990a71ec738665964cfb6e334cdada59519a19dd8ff38baed129e8f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.9-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.9-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.9-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 24baefd0727668d2eff9ef17bef131cd501139923747bf2134870ab5d7f7e1a1
MD5 76edaed932ec597718c2d152ad4524f6
BLAKE2b-256 c0b275594b29c4717057e48fa51cb5c98f47c31af36f40d64f1437ea823c0ac8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.9-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c7842bb4801a33e0084544784d908575d71295ba0143e93505105f3a73952a71
MD5 e63b0003db1b2f06148f494d519b5880
BLAKE2b-256 628f1fab1a97a0b3fcc6021b7508dd2fe5f7a947ca17f439f0995a16b3ecc341

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.9-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33bf38f21a9071bf036138d5d7b11f0bdeca143abea500c0693e0abf7ecfd9c2
MD5 73c5ad48583eafc6ace816048de38fe9
BLAKE2b-256 61d5eb53658c330f4e8fc47111873594d34a59c3d931edbbeacb3ec788d61e9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.9-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bc6c1d7a2f36b1914d9256e29585e443d730aa72f5d6d693294038011b539152
MD5 7ae7eb1151147da0cccca21afc76b8ec
BLAKE2b-256 e9102b5bdb0d2fb0a82b6ba11fde3faf79fc30230af30a2a1cee142313ca9d43

See more details on using hashes here.

Provenance

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