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

Uploaded CPython 3.14Windows ARM64

quadint-0.0.10-cp314-cp314-win_amd64.whl (76.0 kB view details)

Uploaded CPython 3.14Windows x86-64

quadint-0.0.10-cp314-cp314-win32.whl (67.0 kB view details)

Uploaded CPython 3.14Windows x86

quadint-0.0.10-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (193.4 kB view details)

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

quadint-0.0.10-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (188.0 kB view details)

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

quadint-0.0.10-cp314-cp314-macosx_11_0_arm64.whl (105.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

quadint-0.0.10-cp314-cp314-macosx_10_15_x86_64.whl (106.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

quadint-0.0.10-cp313-cp313-win_arm64.whl (65.1 kB view details)

Uploaded CPython 3.13Windows ARM64

quadint-0.0.10-cp313-cp313-win_amd64.whl (75.7 kB view details)

Uploaded CPython 3.13Windows x86-64

quadint-0.0.10-cp313-cp313-win32.whl (66.4 kB view details)

Uploaded CPython 3.13Windows x86

quadint-0.0.10-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (194.2 kB view details)

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

quadint-0.0.10-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (188.1 kB view details)

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

quadint-0.0.10-cp313-cp313-macosx_11_0_arm64.whl (105.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

quadint-0.0.10-cp313-cp313-macosx_10_13_x86_64.whl (106.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

quadint-0.0.10-cp312-cp312-win_arm64.whl (65.2 kB view details)

Uploaded CPython 3.12Windows ARM64

quadint-0.0.10-cp312-cp312-win_amd64.whl (75.8 kB view details)

Uploaded CPython 3.12Windows x86-64

quadint-0.0.10-cp312-cp312-win32.whl (66.7 kB view details)

Uploaded CPython 3.12Windows x86

quadint-0.0.10-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (195.6 kB view details)

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

quadint-0.0.10-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (189.0 kB view details)

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

quadint-0.0.10-cp312-cp312-macosx_11_0_arm64.whl (105.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

quadint-0.0.10-cp312-cp312-macosx_10_13_x86_64.whl (106.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

quadint-0.0.10-cp311-cp311-win_arm64.whl (64.0 kB view details)

Uploaded CPython 3.11Windows ARM64

quadint-0.0.10-cp311-cp311-win_amd64.whl (75.0 kB view details)

Uploaded CPython 3.11Windows x86-64

quadint-0.0.10-cp311-cp311-win32.whl (66.1 kB view details)

Uploaded CPython 3.11Windows x86

quadint-0.0.10-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (189.2 kB view details)

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

quadint-0.0.10-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (184.5 kB view details)

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

quadint-0.0.10-cp311-cp311-macosx_11_0_arm64.whl (104.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

quadint-0.0.10-cp311-cp311-macosx_10_9_x86_64.whl (105.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

quadint-0.0.10-cp310-cp310-win_arm64.whl (64.0 kB view details)

Uploaded CPython 3.10Windows ARM64

quadint-0.0.10-cp310-cp310-win_amd64.whl (75.3 kB view details)

Uploaded CPython 3.10Windows x86-64

quadint-0.0.10-cp310-cp310-win32.whl (66.2 kB view details)

Uploaded CPython 3.10Windows x86

quadint-0.0.10-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (186.0 kB view details)

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

quadint-0.0.10-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (181.8 kB view details)

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

quadint-0.0.10-cp310-cp310-macosx_11_0_arm64.whl (105.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

quadint-0.0.10-cp310-cp310-macosx_10_9_x86_64.whl (105.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

quadint-0.0.10-cp39-cp39-win_arm64.whl (64.0 kB view details)

Uploaded CPython 3.9Windows ARM64

quadint-0.0.10-cp39-cp39-win_amd64.whl (75.2 kB view details)

Uploaded CPython 3.9Windows x86-64

quadint-0.0.10-cp39-cp39-win32.whl (66.2 kB view details)

Uploaded CPython 3.9Windows x86

quadint-0.0.10-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (186.0 kB view details)

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

quadint-0.0.10-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (181.8 kB view details)

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

quadint-0.0.10-cp39-cp39-macosx_11_0_arm64.whl (104.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

quadint-0.0.10-cp39-cp39-macosx_10_9_x86_64.whl (105.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

quadint-0.0.10-cp38-cp38-win_amd64.whl (73.1 kB view details)

Uploaded CPython 3.8Windows x86-64

quadint-0.0.10-cp38-cp38-win32.whl (64.0 kB view details)

Uploaded CPython 3.8Windows x86

quadint-0.0.10-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (175.9 kB view details)

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

quadint-0.0.10-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (169.7 kB view details)

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

quadint-0.0.10-cp38-cp38-macosx_11_0_arm64.whl (99.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

quadint-0.0.10-cp38-cp38-macosx_10_9_x86_64.whl (100.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: quadint-0.0.10-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 66.0 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.10-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 497aa7917a26609fe9bee218db8e52c36d9219e49f55ceed5504010d7232b71b
MD5 f6bd0f193afef7f27bfa466caf84c592
BLAKE2b-256 f7d8adf573eb11d48e7015ceba9ee30fd8729b696333c503852e03b3668b5858

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.10-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 76.0 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.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2a573ed7f861a0c37823e257fb75a1124a5462f96fc502e5d2b2f49b96db87b0
MD5 cde128d038fbfbfaa7fb67fb7bc966e9
BLAKE2b-256 26f06b67f2839f4c2a6a0e45853b46f5440eafafd384af07a20c35d5bbd0c243

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.10-cp314-cp314-win32.whl
  • Upload date:
  • Size: 67.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.10-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 50fee88b23da18979414c2f7a0a4e15e393b363b8af22bfa18716e2c10185950
MD5 6f8495eaeecfc29b6a2060c28b436ddc
BLAKE2b-256 ba8a155a3bb2c739cdbe038595a6897eb96da07b92ac3e5153e2b3988deaf354

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.10-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.10-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.10-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ebe9199300bd3399e1520f52864842bc6495ce2aff318add9a7840b81ba28d0
MD5 37edf681e379125922e92a2718dfb4ed
BLAKE2b-256 34dee343d14925edeb2dd6f9537c3e16a9cf40e22ddea979c3cf70ac19480441

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.10-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 babd55beba4a0b46357e4a41e139c6055be3d33174cca7be6bd14408d97d5a09
MD5 62a98e936ecbe8a0adef2065c0d76ef4
BLAKE2b-256 e698649c025ad1122a138fed5432f75d09aa936e4f4d019ab714aef38c261f21

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d8216ce3b850d16a59f363adae65845d38d0a0c3c01d795fd75e64f1a9eb85e
MD5 5e42e1ed87e80c01aa6d1570f0a70e75
BLAKE2b-256 b5717877bff4ac90c7d0d71b60f642bf91766b02c7840094568787acba1afb46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.10-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 395c051a96fd0c53f3e156b095840eef6a9e89a21f92cdf2c0fec8ef53315063
MD5 98b21cc4ce1b093e55f648bdb0a765cb
BLAKE2b-256 78b7265fc9b965920479bddc0bd0015bbb79c8938e7464ee3edba3bc2ea1c194

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.10-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 65.1 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.10-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8648f8e181d32296954325fea814d6f82170679406eb07834fc07c46016ecde9
MD5 1454d76cf5d9a3d15da19f7334729253
BLAKE2b-256 a0b6ba30fd6d52968fff3be825224e5762e79886c8bb1282dd437b2fef8ebe34

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for quadint-0.0.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c8da9befa31092d8939a89cf3c4954d0ced24be089f88390ec688251f70736b8
MD5 424967fa8c047ca923c2cc9a77cb79a4
BLAKE2b-256 1f0b5794cae71888948b44c4da76c6a78fdf3410f408076489bc4b487ea131e3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.10-cp313-cp313-win32.whl
  • Upload date:
  • Size: 66.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.10-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2a80334338e62003eee0747bdd49fe21b353f213c3b63706d7d1d6f08da3ed50
MD5 21ac6b89464cf0e38aaf3c59bb34be0d
BLAKE2b-256 f8961efd475154c871171a47b46a463aabd7b09a064b97b5e219e27e6bad3429

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.10-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.10-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.10-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 350b3cba3b0d48e97f8572a931c06005375f5874fd25fbcf5048631ec7854248
MD5 7719b96750439c89016aace764a8cc5c
BLAKE2b-256 e9cecad7cbd93ebafe3d54952c5765910df7503c4b4b5361241aadf625a3481a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.10-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1169716ceccd61e8371ca1559334d2c003767a12e90e49d8d12a76482454270a
MD5 acc9a00f387ec06597986992a3033016
BLAKE2b-256 84139c8f68ecf37ec1db864687736ea94beb8f891dcb79fab84841e10c18b46c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a71c140f26e7579cbb9e312614d8d706fba1db534a72c0254561c46b021a6a8
MD5 a367ceb9004d32fe46f793f229df5c3e
BLAKE2b-256 c9c2e57b70e9dd7e39a5e7fd8ec6d89b9b151aaa09d2623db398d559d6d87d4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.10-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e8e08c9f6b78efd43fd2b42623b755d56643026f59c8d0573f9a13ba551fcc42
MD5 ddc03a49b709a352beec81c35af8dbad
BLAKE2b-256 9e8e0c1b3f92e30d7cafd50e3acc783aa5a6be959a127ce704717dfcd4dceb13

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.10-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 65.2 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.10-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cf681ca1e8baf630d0b76250f87ca0114dca32277e62dc3f3c874c74f5354d25
MD5 44516d93d13adf6744f63970d4033ce0
BLAKE2b-256 2089b06bb24b38741d4a19794aeae12389021929f1335559a1615902d3cfbe41

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.10-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 75.8 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.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ce0cd79d2638b3262d25203089db5ce896e79bbd66b3ef9f23d4a211e9780765
MD5 71397e9fbcfef1c6efaf181bc7329bf6
BLAKE2b-256 ccefe3cac5b20370788ecf3bccbb4ecc461e2575bb5bfad44c7ed4d8a030ee11

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.10-cp312-cp312-win32.whl
  • Upload date:
  • Size: 66.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.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 51d79b8f1ee1a2ad69f29b09bf6b6a227efc018b38dbafb9c47ba455dffee115
MD5 8e9a168b6e7a79291c95d13b73098f46
BLAKE2b-256 6346077cf8d068547ef3d0fb0158af08a5a85cd3df73a9e800710c1456e459a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.10-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.10-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.10-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 55f399e903504cedf7e5764abbc3a5de07e2b57361e5b3f98545791f56a8fc59
MD5 9b4e855b67d77cde71fc5016a544f610
BLAKE2b-256 f9c8f8718b77b276b7e5bd997b4f88943b882c4f171749ac3457430b17819e05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.10-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 00035bbc1436662dff6a69ecb0fe3fbb87f42ed1101f138fc63acfcc15cb8823
MD5 cbf2a1bbca201f3fc39f3fb84c5aeb61
BLAKE2b-256 82285061ac70cfd11637af295a94ea8893e4b4d16b624ed34bd6fafc67667f69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 621a7e5cd12f26fff4017d75056ecd71a572cc347b869116950a6cbe31b4071d
MD5 7c71d1f77738ba6a7ab218ef507c27d6
BLAKE2b-256 2f0865a930b4bdd030cdba363a5bfd412b4953190e91e3a72dc06275c04d0f3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.10-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e4a8a7adf952da8fafe41acb44d6783f661ebadeb23988484e9e0385c77fab0a
MD5 a21a47c593770e75492f19bca6825cb9
BLAKE2b-256 2a704d2897b1ad4f25491cc69d86803e108bce4a4c367dc1e1134b3f29547bce

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.10-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 64.0 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.10-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 d9ac3e4648ce9f0d100501cf67f9d652e15dca1eb61d6f701176163218a4527a
MD5 d630fb867d4caf611fe6e39187f25212
BLAKE2b-256 100aeff9cbcc1aa2bb325ec7f251aa61fd8507f6f7a9b9d4ce72aceae8f60f9b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.10-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 75.0 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.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 63e8126f37c3c6111990ef6b521917f4c72be39bdd25a07261d5df4359ec711d
MD5 3bc4ba7b880ea15cba187bcc5a27488a
BLAKE2b-256 7269d5d588c13efb7da33f7d74b3878846ed1fe320d37ca57a2c40ad7e515631

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.10-cp311-cp311-win32.whl
  • Upload date:
  • Size: 66.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.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e961e6d09f97770216d2548f6ff93157b739010c0a89c6739112efda95463ce9
MD5 8968227f5d77cd35509610d1de9bb538
BLAKE2b-256 6eb13d8e67adf7a1fcd1e8f482ef6a62bc424a185e743889dca40dc15c6a595c

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.10-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.10-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.10-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 14d2c2d3427c6a3942bb78ceaeb916c846626692df6a7dc4fbe3ddff80a6e579
MD5 777dca1e30b8f24f5af484bdfce084b0
BLAKE2b-256 45cc124c26dde704b241f11b9230b0ee1d6ba8f69e8817f2b0da8984ec611856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.10-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 58d91b55e2bbdb72fa9d9bc16b2c7a687b9a02deaf876ce67764417027cf6627
MD5 b31cde723baf7d275b8b5676926f15dc
BLAKE2b-256 2c933d2d617b571a60ffd19fe9369aabed205942bc0f2ecb103c81de94514063

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71942aa27b2b416c9673aff29fe62926fcc626c20cf1f5bdf0bace4b6e354851
MD5 4a8fa9f20028d81d28fb2e6de565da90
BLAKE2b-256 f327fe34282f8215872d7ba10f4ee3f58b6c96a50c6aba38c5eb4c244ffdbd32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.10-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d25d7412ac539f4e6b6c39e38319781dfdab03e5974a3a6d659ee11910e11c4d
MD5 42f28531a49f4661dbaf6cb71bfaf395
BLAKE2b-256 9e595fa4ea98dc677fe6903da42a3d685f41c5e5f4f80f08ed4e9b654b7cbd6b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.10-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 64.0 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.10-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 247516086c75b1a6c5e96c602c1a62c2c2b6614a4cd93c6d8f9be93fa73fb523
MD5 939d458cd4824e1933338421d9ed2535
BLAKE2b-256 672f6bc9d3bf4b259b10dec1d8dccef990321aa876390793d620f56a8ecfb2c5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for quadint-0.0.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 31579194cab6445c6b0c92533761e5d7d10adfd976b1c93ab2b27ef74045ebee
MD5 061084407bd4f0e848efd2a38e43c006
BLAKE2b-256 df88bd0355ffcbf8b2c325f1d42f535225f779424b1e91dcec1633465794b347

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.10-cp310-cp310-win32.whl
  • Upload date:
  • Size: 66.2 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.10-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b64b73f869b2b30b0a8360c13436e3b3edf30a028e3e226a39cf12783004c2f7
MD5 8bd49fb70f8cc9812e6d333ea5b68a6c
BLAKE2b-256 7f9741d4f6ec779d773b51886ab85a35b3791e154868bc8fc6653ea35afb4725

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.10-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.10-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.10-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c8bd76817ea922610e855a8017160ac7e11e690ca2393c8256603cdf8572e164
MD5 06c90c169535e483b82b86caa3b3c8e1
BLAKE2b-256 4a89c52de8ffe714c4f50912018f5beb7d2d3bd65dd68ea38c6765535205b1a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.10-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f85c30041db13d36e3883142accfa437f6900875d442d8d6edaf3d8b8d38f4ee
MD5 99ea80231caefbaca537604ad7c603fb
BLAKE2b-256 5080e24e3fe867544c537bccd2ba0359a2d7454825a810e56b3745dc794a8fbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 770dd490f8fe897ace88eaad43e8bab703d642fa70e319dd18a3cd56148ad658
MD5 dec008be189e54854822930ebc1f2233
BLAKE2b-256 b837b1653efeacb0aac6dc7c935e6969cc9af551e5bb6549b0ac854c012d95dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.10-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58b8b5270815e26e24e600dd255d255ef76b052215c010ba7f5585963c823062
MD5 3da745e92ba6ebb35b1b2a526e079d41
BLAKE2b-256 ad2ed9aec5039b613bf484c3eae9593f169fb6c9a2a792448defe0ef482374e1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.10-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 64.0 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.10-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 7ce911691df611a6de260f5ff9f3f05261035d32db4b3b65e039a84b520eca73
MD5 c231875f78cdd3d4cd82aebd686bada8
BLAKE2b-256 2057d19df105719aaeb81382b1a96b68a167ddc4539e4dd00aa9ffd3d7341b76

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.10-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 75.2 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.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4f850aa4a2a45cfd03f885c01b7a4f7ac464274ba89a8ce28769e2753c459ca5
MD5 51e470038c78249d1b332a50a47de58e
BLAKE2b-256 1d5b3ede523c699e6ff708e1b67344bed122bebef39f19ee1e2af26514554be9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.10-cp39-cp39-win32.whl
  • Upload date:
  • Size: 66.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.10-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a39ba941fea78de08cf88ebf83771915e4c7299fd286486e5d72eeb737918823
MD5 febc88884fbef412bc253c41150d4c6e
BLAKE2b-256 abc0191212eb7bc52f787f9659b1ba1d16c1468521ea278f4c1bb33cd4ce141b

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.10-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.10-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.10-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bc7f99dee4f686c7c2772a15f87b5789777b18a2cdc2f95d2495c7e8dc07990a
MD5 538f245bf54db9c3f4fd624698897a56
BLAKE2b-256 6185b8183538e9ae9069cb9018540a896e0e87863d5dee0e75385bdbf3c9149c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.10-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 24aa6727f345a9f872379902486df949afaad35aad50490812d59251ff95effb
MD5 9cf9696e07ebb946ab7ec12a513440ff
BLAKE2b-256 e3f34def9c3bedcfbc9c15eb220cc10aade33c57a96e95c7386eb5303f375550

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64a3831015c81ba919d921b6e291220f5c9561a2712f583e85aeda4b73adac3a
MD5 287f2b48c8834afc05ad2aea542c4784
BLAKE2b-256 385301b15faedb5348052c10b48e505e643ea8fa46c8864bb74ed9472dc4111a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.10-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c6be2ee17db93eea72053f227ce95da90c18b47128700ee2da19f3c226de8ef5
MD5 c7c0c47713fcc62b90380308c22a4a18
BLAKE2b-256 2d94de484519a4110024d8455a3556c9f941696abb3a22b7d64d602300ca5b43

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.10-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 73.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quadint-0.0.10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bae9d5762aff2610882801d43378ba4e13d147d01bc18aeee8985e77ff5e39e2
MD5 2d4188681b55348dc0497ed54dfa9a47
BLAKE2b-256 dcc2ab84f5fd34ac77b37a27e396b46dd4a81d4da85c8f8e39d4f6753ef65f57

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.10-cp38-cp38-win32.whl
  • Upload date:
  • Size: 64.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.10-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 312648f6e44c87fde8c0cd887d6583c536cd34a966e8a9fb2fd07fe3ac748f23
MD5 aac66adbb459effd5e5c561fd6224d55
BLAKE2b-256 6934a12d319f50050d661053e8f308687f157f295a4f221bb19b26a5fe484cee

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.10-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.10-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.10-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70712f1eb75bd9d88d673953109f44dacbe013de84eb6c5c80cf3fa06216f617
MD5 0955be0b655889cfc30308d47aacf311
BLAKE2b-256 bbf969bd1ac21db2f1d8308144452fd27e7beb189573081dfbe0f66bc923bff2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.10-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c7b8ae762e9bcde73549a87d4a1fe8ebdaef1d91846ee7a3eff361685b0eaf0
MD5 30c37f63c1d8397fc949fd9a9f64381a
BLAKE2b-256 50b42ab3eb1b61e38ffb11fef9f72a7541f29d7c82fc18c003c8bb0e8801d8f8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.10-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77ef70537336e8b31deb335aff326542dc9323d50fbd1a28b84f616cecace1fc
MD5 6fdcfea2a067db673a3bffdc7ca91629
BLAKE2b-256 c27ac38f649de81ea404f2526281baa0bc79f7c075bf3da130b1a2df7cbeab91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.10-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cbccb4be90ecbefef4ab2e9f7f2bf5a53aaa27c55193e71adc928aa8f846e894
MD5 ae16c32957add4e4333a88827a0332e6
BLAKE2b-256 2b8352e97da36e83f1131b473c6a02babea9116a1dafe31748c05a958ef676a2

See more details on using hashes here.

Provenance

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