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

Uploaded CPython 3.14Windows ARM64

quadint-0.0.8-cp314-cp314-win_amd64.whl (74.5 kB view details)

Uploaded CPython 3.14Windows x86-64

quadint-0.0.8-cp314-cp314-win32.whl (65.9 kB view details)

Uploaded CPython 3.14Windows x86

quadint-0.0.8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (189.1 kB view details)

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

quadint-0.0.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (184.7 kB view details)

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

quadint-0.0.8-cp314-cp314-macosx_11_0_arm64.whl (103.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

quadint-0.0.8-cp314-cp314-macosx_10_15_x86_64.whl (104.6 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

quadint-0.0.8-cp313-cp313-win_arm64.whl (64.4 kB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

quadint-0.0.8-cp313-cp313-win32.whl (65.4 kB view details)

Uploaded CPython 3.13Windows x86

quadint-0.0.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (189.9 kB view details)

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

quadint-0.0.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (184.8 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

quadint-0.0.8-cp313-cp313-macosx_10_13_x86_64.whl (104.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

quadint-0.0.8-cp312-cp312-win_arm64.whl (64.3 kB view details)

Uploaded CPython 3.12Windows ARM64

quadint-0.0.8-cp312-cp312-win_amd64.whl (74.5 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

quadint-0.0.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (191.3 kB view details)

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

quadint-0.0.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (185.9 kB view details)

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

quadint-0.0.8-cp312-cp312-macosx_11_0_arm64.whl (103.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

quadint-0.0.8-cp312-cp312-macosx_10_13_x86_64.whl (105.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

quadint-0.0.8-cp311-cp311-win32.whl (65.1 kB view details)

Uploaded CPython 3.11Windows x86

quadint-0.0.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (185.8 kB view details)

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

quadint-0.0.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (181.3 kB view details)

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

quadint-0.0.8-cp311-cp311-macosx_11_0_arm64.whl (102.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

quadint-0.0.8-cp311-cp311-macosx_10_9_x86_64.whl (103.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

quadint-0.0.8-cp310-cp310-win_arm64.whl (63.5 kB view details)

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

quadint-0.0.8-cp310-cp310-win32.whl (65.3 kB view details)

Uploaded CPython 3.10Windows x86

quadint-0.0.8-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.8-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.8-cp310-cp310-macosx_11_0_arm64.whl (102.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

quadint-0.0.8-cp310-cp310-macosx_10_9_x86_64.whl (103.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

quadint-0.0.8-cp39-cp39-win_arm64.whl (63.4 kB view details)

Uploaded CPython 3.9Windows ARM64

quadint-0.0.8-cp39-cp39-win_amd64.whl (73.8 kB view details)

Uploaded CPython 3.9Windows x86-64

quadint-0.0.8-cp39-cp39-win32.whl (65.2 kB view details)

Uploaded CPython 3.9Windows x86

quadint-0.0.8-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (182.6 kB view details)

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

quadint-0.0.8-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (178.5 kB view details)

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

quadint-0.0.8-cp39-cp39-macosx_11_0_arm64.whl (102.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

quadint-0.0.8-cp39-cp39-macosx_10_9_x86_64.whl (103.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

quadint-0.0.8-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (172.7 kB view details)

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

quadint-0.0.8-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (166.2 kB view details)

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

quadint-0.0.8-cp38-cp38-macosx_11_0_arm64.whl (97.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

quadint-0.0.8-cp38-cp38-macosx_10_9_x86_64.whl (98.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: quadint-0.0.8-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 65.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quadint-0.0.8-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 32acc2912066497a49246e2be74588a0238aabb15a5525a0a71868362cd28c94
MD5 549cdedd4a6eb63e4b4595e404d4d580
BLAKE2b-256 675cf67eb12aeda27233fc839f5d5a1b9262a39cd48d1665ba1af2fb9e6526fd

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for quadint-0.0.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8bd8f4e39516cf52b86a35090528f46bbef4a812021bf05f056a7c538c1fb651
MD5 ea16dcdacb59415ddd1575af8dc8a84c
BLAKE2b-256 8f693da3fdca4d0d55255f1c45aa701f32413345d7fc69be367a80df78076aaa

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for quadint-0.0.8-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 baaeea5fbfd8dcae616f736e8cfad0016e12ee37b357f3b77908e0976223a83f
MD5 3c57225ed25bd21e020c9008fc92e48a
BLAKE2b-256 301dd108598381faacade6bc805e052c4c827d97aca8c907603ee95edf6dae7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.8-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.8-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.8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0698bfdabfab514c20a5fec47e2fbac816b57884e4a8c4555d8bb6b678fe21c9
MD5 ba021557ea5eaaab7b4525ae387d2d92
BLAKE2b-256 206b4b7b37665dc1478ded5fb354720168d2b6d3a07115d45081e7390713075a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7faf20a465018c7a2ab0eedf92302bb03e405b088ddd1c7543fb5399761b1a4f
MD5 a9cb78d04c30218fa88e9328f2f7d461
BLAKE2b-256 6fcdbad9f8abad1914d0764a0d513619787290680b55500b1252a020f7b3f407

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1b150ee3b63c8b7c6aff95ca2173d8f2703265ea94bab2796e220a2355f9b9f
MD5 181546d9b3ad41ae3a7e4d6c0e7caa7a
BLAKE2b-256 80d3f20c0d88565c7a41903e9df5cea02508f894dbc5ea0a51be785985390d85

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.8-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9278a08e6eea5f2e89fcf1564f83717ad4090e3e90dc8a1f215bc8a97125e6f6
MD5 39762933dad56428b2aa1f124dd03e26
BLAKE2b-256 6362e7afddf5890d11331c81d8c5df312f0754b0fba73bf2253d3c9d0e8d60ed

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.8-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 64.4 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.8-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ef3165cdd4e503bd772c47c712028672eeca22d3f28fb886a48f5142802c8c93
MD5 fbda490594b98ac678b9697e6e941a09
BLAKE2b-256 49bc8b41bde5be352c083c19614f64726edbed898bb7868d549e96af28d36b79

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.8-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.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5cebf5b38099fa166f71acb5a91315f98e9657f93f70e09d6c7e244b1c6a54b3
MD5 a927513a352a633733a0c70590f35af1
BLAKE2b-256 9f35ec6bd7e385fbf5b4bb5dd419911e6c28c6bbfbbf874f04cb3409c3666aaf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.8-cp313-cp313-win32.whl
  • Upload date:
  • Size: 65.4 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.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 372cef1db7d31419782112f1bcd66d98604742e9c83bc6a883169c4b2467853d
MD5 04898ed42fa7ddfc89e2c1ba1e3c4c30
BLAKE2b-256 a508e03f80ca5e74e68063332462ff565d11c3b7a33003cdfa14804c2620798c

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.8-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.8-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.8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed10327d63f2b3181626704a018eaa57486bcacec31108bd72fd60bfcfb44984
MD5 ad3cede2b234e90ea6453359924dad7a
BLAKE2b-256 4fd354b77ae92a46a2f11ae6d67144354fcd9770d313268cc79aef069ad18755

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8ca02cea773076bdf032bea524fef516f6c853d0c25f59c927baf791cb0238c
MD5 bbf6ea30bfb27e4147b4794f38905e0b
BLAKE2b-256 4abdc6800110123b9e33c3a05dcf7827d4ac87c9a13a6672c487175c6e04dfc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f69b064ee760d8596084fed67178e4ac6605063450dda292eeaa4ab5b432481a
MD5 0da491a760694d8522a1bfd57b1bd2bf
BLAKE2b-256 e7b2bfa006c26ead226b197241fea741ad09ccc3922fef5d45ec8540f01d7371

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.8-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7f46dd5ecc4f117fee50dc64b70bf651d7bdfe43ed2f1d4dc0604cb66ba4e695
MD5 6a76b517eadbf695e82a156a3319a7e5
BLAKE2b-256 aea34f4f62390f403bee76c27e718d828f4cc81ca8cd06e4a680bf5e4640da5e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.8-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 64.3 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quadint-0.0.8-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 5ede8853f49e4f4629244f0eeb54534455cf9848c4584e83691542a9dee683d1
MD5 442c3c8c736343fc57f3b223445ad6bb
BLAKE2b-256 3f7cb867aa97a26a24d31b0b53d4ef95201bd77cb14b7b1fccbed0f19c04bb14

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 74.5 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.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 24e976c9dc56fe0911f8635941444d387b658bfd86ab8f49e7b6cafa3168f2e6
MD5 1ab7533b25627ace3fb05579f9eb10d5
BLAKE2b-256 0786aeedfc0b345f4df547bddcc0dcb75523f6b9bb621cc6ae26d33654be2560

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.8-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.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e8a105fd6fb4ecaa896b3a0e1ff8dd919315430c1a30cc6a8fcbab3c90b9a4eb
MD5 d7f9178dad00b7e80f847ffbeb197c98
BLAKE2b-256 f3d74cbd19f51aae2c18f850e03f25975516cab3adb1e5407d0b37a2dd97c22d

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.8-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.8-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.8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cc297a99d662ab1684be50ce462f088931c928637238ea2fac049c4127795f4e
MD5 1990280b8baef70b09c7dbb64f4ac86a
BLAKE2b-256 0fa1e9982063875ddf3818a4479ee61642ada21c65f6cdccd62c786cdbf0eef6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e83cd5e8a96e47571d83da6fbe2b6ca4e69cae62e6482b3a7fae53d31664b40c
MD5 d475117d23f473128f8b3b4d18cbbb9f
BLAKE2b-256 574e6795579432cd0387cad4f7d7e84365a0c1d2264eed6c6bc8e81c2e447891

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d679bd79fe951a99b0e91e76d0828e3eb04ffdc40dd4fd61ab5a99e494e0548
MD5 96ef337564ad20577adade54454f8c4a
BLAKE2b-256 826d573425b8a808061cb6afa9e9b62a82e73fbf3f9a50a2796b78e36d40ae43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.8-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dfe68f26c7c96ed40f7cd028e3dc5b90ab223600fd89d18e04375ec0bf739333
MD5 68ed22a50483fa69b29d01eea780e1da
BLAKE2b-256 3648c5dfd8d3803d9cbd767cc156c064e031e638b9fb253c71167e82b68ab1ad

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.8-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.8-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 d4a941ab50152f7c373edae9af23fd4fa149c46760a7db9a06f5325a3a37b612
MD5 3e2cd6e6b5a221c860bffe05b970b804
BLAKE2b-256 72c92268863c06837f860857d7090e860aa20d74a119e0025d3a2e2d6dc4e50f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.8-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.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7b70725409f47346ba7615ad9b59a1a7030c716915ed9a13cd4994785646f9d9
MD5 411af7401ae53de5ed7b7a6a927e85a9
BLAKE2b-256 86bc160cbe1e1477a7585a89df856fcaccc85f593aa7fa22e92c1258c833eaec

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.8-cp311-cp311-win32.whl
  • Upload date:
  • Size: 65.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quadint-0.0.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 98e496a1d4f7ad88059bd3038ccb602b810e4fd5d95601b26c2d95075441861a
MD5 1912054d2f2324c63e1514b5702ee72c
BLAKE2b-256 e6b77616ab1c9ad25ef9ec26cd8fc9a8b21297d7d860f5a0c4dc7691ba627bc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.8-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.8-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.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c2fa21d89f557bb2bb87a3a91bbd52a705b436a2eb2af176a0694cc420bbaf7f
MD5 a28136b84e0850f236dc0d631a52d46b
BLAKE2b-256 f9cfa819c5d3ad346c18436da40b26c5f6d17f5916ca70f1bd081f363e5d9918

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 39115c3c1ffd52e3ae27ff2e7dec8df646504703dbffc2680b041ad9a42393f5
MD5 c964c397a908f459e9133e918ca8e007
BLAKE2b-256 0a30ef2cb87dc07845b311684c76ef1db5d5458933a7955f1d5f93b1a047e4cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 982064b70eee4fcccc8f554228ce8e187ab229dc530a4dfd7c3210fcd04ca218
MD5 cabb9fcdf1bbf1f8c298a7ab16cf7606
BLAKE2b-256 50660e206e5e8f3b41c869e1e2c487d804f8232c0e3576177f82d8cc2131121e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.8-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4e482cadd0daaf447dabbbef44a6e1ee961196423a07df5bdb540ce01a218dd6
MD5 fccc14755c26ae4d7f2b75c174fb73f4
BLAKE2b-256 c790ec54f5ec49b4b2732f2376fa51335fab9d48e6f1bdeadd1488ba0178eadb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.8-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 63.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.8-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 63c3c6bda07a63f761ab3af7a66eb8160388fe7530c1f9cdc1b1732cc1972de8
MD5 2ce470b37567f535e9fe458b8c8e4932
BLAKE2b-256 fd49cd2e4556649ff49eab138b0cc9cc69fecf99f1ddcb26eb3f605ac0a6bb8c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.8-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.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f5758c4241613a02fb5790f60978b29a331ea8e7d952aaad16e58736ff884626
MD5 cbf2ae742ffe916fd2a13a4cf6059d81
BLAKE2b-256 862654a4ae2183bbada94859d2e7439a65bab5944b651d80b1d1454a389f5946

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for quadint-0.0.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c263bf584ea6e2afc162bbef6622ef3f9d61da44223a1a50df4c2e0979248b6f
MD5 098b5442adf15b64c130688488a6ff9a
BLAKE2b-256 6598560741472fda405d7b7a2b401092b905524104770237df8e5ec06ac36b81

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.8-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.8-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.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c3f0b2bcc3200f8646d2e52632d51114e65ab3238a36679b868458de123dd5bd
MD5 067201a93a28004e849cacbc3514d968
BLAKE2b-256 73d6d8c880082222e18e5f7f1e6f7b0cd3ae7a9c4acf561fb6494ee40abd1cd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e2e5fcb44426129ddfd7cc204c583d8cf6891b306b6df31be0c86250d5d0046e
MD5 5ae63726ff30eb006460d4ae6270a12b
BLAKE2b-256 cae170dc26da7a2972bbbdc5b447f326f35d4c0aad69b90f230447a4b8fad97d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8c646fe9623b448c16a2032d8ce4893b5dfa2641a26085b15488ee257aa3fa1
MD5 a57fa53bfb42d3b519b9a2e7d7d616a7
BLAKE2b-256 6492909fa117a31468264c956f360c74d0d603604941f23b834a19ac38ac71c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.8-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e643641cdd3aa6d28a675f688264e2dae944970df31aad254912f906b8732583
MD5 9fa8cd70b868750d5ac1b2e5dfccd8fc
BLAKE2b-256 a23f43bbf7ee62d2131544a977bafa1885237c25f58606d565396eec3da88d24

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.8-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 63.4 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.8-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 c41877a701486b3ae156fd02ffad4ccfd40ec85a8eec78d6c15d9ecb1b6ddcd2
MD5 3e7e8d65154417ad1ba448400aa462be
BLAKE2b-256 6b9f0f738e35a216b841e9989c8df71123242c1efc1f3ba8b31e262510470733

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for quadint-0.0.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9b647f32d782cdbf76e1eeb8f381d0d0cb444213281f111a34ea535302f9ec06
MD5 e25c6583b9f1eeaa9957f0c7203b39d9
BLAKE2b-256 29b0175a8d89bdc8e68d8b8bbc018c964b9ff74b1072f436b9d5f09157824b68

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.8-cp39-cp39-win32.whl
  • Upload date:
  • Size: 65.2 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.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ce65da1afe41142f8dcfdd55fd169b2e3ce123c21a5305f8fcb70832f29a328c
MD5 94d6e25186e1e53386c586ec2c51dbd2
BLAKE2b-256 bcaa1a28f7bddedc7453bca080349af4729c4982b7c27b3a2b2317fb357d7794

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.8-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.8-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.8-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e8a6fa0b8ba5ad7abd50bdaf45b90557d847130a8cb307fbb96d3c75bcca0201
MD5 8b168497e7a7ec99e8f1d4a906b51bad
BLAKE2b-256 823985fceeee93fd1496df974280cfd9e157d4aa79daa59ba60ff5fbafb76b71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.8-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fcb32f7b2d1569d719ca79cac4de4c954ea793720462c1ed923991258cb12f0b
MD5 0cf3211a8c8ebc6b8c00c18617a5eed6
BLAKE2b-256 0a89bb21372bacc6c4d34108f29f06a3ad0e92b04948a04c5b6c617210d882e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e60776e0adde62ec9916f9ec186f87795e9250bb69fccef243bfe5bb449a97f3
MD5 c86140ef6fba51fd598922b19978b8d6
BLAKE2b-256 8a8e8ec8a4850e7437cc27535808a460566a0b0b21eec30c9e2a1f09c082738f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.8-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d58a3087826d751bb0ab3498ca527e002809ae5ef191c1e83723b893cbc4476f
MD5 ccdfa9370068a4333a9a519569707c2f
BLAKE2b-256 e5ee470da7466e3858db0bc41819a83ab2367ed9922ba9ec5c3643a82366fd6c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.8-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.8-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 cdfa7661925fb3b9189741b9abd2e85a0972dd9bb1609d67afe74fe2f6e59921
MD5 270ccf7a4ba62bfef40f777e42b5c7db
BLAKE2b-256 897910504d3502780d43ca146165a40987105c203e1fdfcb770dca9138110b32

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.8-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.8-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f259cb73cb506f47adbb80fa82a79e63c6f5c4f809989a69378bf9faff7c646c
MD5 1acdf1266aca8eea1ca0aec39ad54713
BLAKE2b-256 36ffccac0aa4f09ad77c2fd285a9edec2b1214caaf79d2a171a463bd4ff7fca3

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.8-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.8-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.8-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c23ffee3354f27cad086117e7e7cef2660629dad72fc935357fdbb4e2a33d868
MD5 265425af2ab9ac5b879eb7b986abeb74
BLAKE2b-256 de37ca669691dbaaf7be9f67cd35742d72723fcc88898500aaf2d3c3f1d4010a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.8-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f1b5b58fb64727212f8d995c856619e5c25e02209956bba024b246ee86f42875
MD5 31f9e6989ed628b90d6dcd90d12b873d
BLAKE2b-256 f1c6ac645e2a76a640e4f774b5f96b26f879e5273627973addaedb67ea5cb6ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.8-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2698ef9769e628e50a77479ff3507974204e3d71789ebfa9aa4c433872651f1d
MD5 7bc34dfc307c130d389a6aa6ca872058
BLAKE2b-256 73206bd02e50e334ed729a511b832f5fe522bb7d22e784fbea62c86c42fa1691

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.8-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f4d7f0131e43503f47d5a1c13a84eb92ea8757290dda0ebbd3c25dc84f60103
MD5 a0dcc491832d27c5e0affbb4e82d4b42
BLAKE2b-256 751da9779488e589950597741a6de06572814d6a0c993502848f3c8651bcae48

See more details on using hashes here.

Provenance

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