Skip to main content

A quadint class, for using quadratic integers.

Project description

quadint

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

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

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


Installation

python -m pip install quadint

Quickstart (recommended): complexint

from quadint import complexint

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

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

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

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


Quadratic integers: QuadraticRing

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

from quadint import QuadraticRing

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

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

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

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


Eisenstein integers: eisensteinint

from quadint.eisenstein import eisensteinint

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

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

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


Dual integers: dualint

from quadint import dualint

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

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

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


Split-complex integers: splitint

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

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

from quadint.split import splitint

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

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

Division & interoperability notes

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

Example of truncation behavior:

from quadint import complexint

a = complexint(3, 6)

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

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

Minimal API overview

Constructors

  • complexint(a: int = 0, b: int = 0)
  • eisensteinint(a: int = 0, b: int = 0) where a + bω
  • dualint(a: int = 0, b: int = 0)
  • splitint(a: int = 0, b: int = 0)
  • QuadraticRing(D: int = 0, den: int = None)
    • If den is omitted (None), it defaults to 2 when D % 4 == 1, otherwise 1.

Ring instance (QuadraticRing)

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

Value type (QuadInt)

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

Project details


Download files

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

Source Distributions

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

Built Distributions

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

quadint-0.0.14-cp314-cp314-win_arm64.whl (103.8 kB view details)

Uploaded CPython 3.14Windows ARM64

quadint-0.0.14-cp314-cp314-win_amd64.whl (122.0 kB view details)

Uploaded CPython 3.14Windows x86-64

quadint-0.0.14-cp314-cp314-win32.whl (106.6 kB view details)

Uploaded CPython 3.14Windows x86

quadint-0.0.14-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (283.5 kB view details)

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

quadint-0.0.14-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (277.2 kB view details)

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

quadint-0.0.14-cp314-cp314-macosx_11_0_arm64.whl (151.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

quadint-0.0.14-cp314-cp314-macosx_10_15_x86_64.whl (153.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

quadint-0.0.14-cp313-cp313-win_arm64.whl (102.7 kB view details)

Uploaded CPython 3.13Windows ARM64

quadint-0.0.14-cp313-cp313-win_amd64.whl (120.8 kB view details)

Uploaded CPython 3.13Windows x86-64

quadint-0.0.14-cp313-cp313-win32.whl (105.2 kB view details)

Uploaded CPython 3.13Windows x86

quadint-0.0.14-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (284.3 kB view details)

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

quadint-0.0.14-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (277.8 kB view details)

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

quadint-0.0.14-cp313-cp313-macosx_11_0_arm64.whl (151.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

quadint-0.0.14-cp313-cp313-macosx_10_13_x86_64.whl (154.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

quadint-0.0.14-cp312-cp312-win_arm64.whl (102.5 kB view details)

Uploaded CPython 3.12Windows ARM64

quadint-0.0.14-cp312-cp312-win_amd64.whl (120.8 kB view details)

Uploaded CPython 3.12Windows x86-64

quadint-0.0.14-cp312-cp312-win32.whl (105.5 kB view details)

Uploaded CPython 3.12Windows x86

quadint-0.0.14-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (286.7 kB view details)

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

quadint-0.0.14-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (279.8 kB view details)

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

quadint-0.0.14-cp312-cp312-macosx_11_0_arm64.whl (151.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

quadint-0.0.14-cp312-cp312-macosx_10_13_x86_64.whl (154.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

quadint-0.0.14-cp311-cp311-win_arm64.whl (101.7 kB view details)

Uploaded CPython 3.11Windows ARM64

quadint-0.0.14-cp311-cp311-win_amd64.whl (120.7 kB view details)

Uploaded CPython 3.11Windows x86-64

quadint-0.0.14-cp311-cp311-win32.whl (104.8 kB view details)

Uploaded CPython 3.11Windows x86

quadint-0.0.14-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (278.3 kB view details)

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

quadint-0.0.14-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (273.0 kB view details)

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

quadint-0.0.14-cp311-cp311-macosx_11_0_arm64.whl (150.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

quadint-0.0.14-cp311-cp311-macosx_10_9_x86_64.whl (153.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

quadint-0.0.14-cp310-cp310-win_arm64.whl (102.0 kB view details)

Uploaded CPython 3.10Windows ARM64

quadint-0.0.14-cp310-cp310-win_amd64.whl (120.9 kB view details)

Uploaded CPython 3.10Windows x86-64

quadint-0.0.14-cp310-cp310-win32.whl (105.0 kB view details)

Uploaded CPython 3.10Windows x86

quadint-0.0.14-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (275.7 kB view details)

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

quadint-0.0.14-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (270.6 kB view details)

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

quadint-0.0.14-cp310-cp310-macosx_11_0_arm64.whl (151.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

quadint-0.0.14-cp310-cp310-macosx_10_9_x86_64.whl (153.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

quadint-0.0.14-cp39-cp39-win_arm64.whl (102.1 kB view details)

Uploaded CPython 3.9Windows ARM64

quadint-0.0.14-cp39-cp39-win_amd64.whl (121.0 kB view details)

Uploaded CPython 3.9Windows x86-64

quadint-0.0.14-cp39-cp39-win32.whl (105.1 kB view details)

Uploaded CPython 3.9Windows x86

quadint-0.0.14-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (274.0 kB view details)

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

quadint-0.0.14-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (267.8 kB view details)

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

quadint-0.0.14-cp39-cp39-macosx_11_0_arm64.whl (151.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

quadint-0.0.14-cp39-cp39-macosx_10_9_x86_64.whl (153.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: quadint-0.0.14-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 103.8 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.14-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 749c806a9ceda429de2952818e4b7c132a90b69790d6936933c4c8303178a873
MD5 12e6cd09f33954a8412dd8f477ba79d4
BLAKE2b-256 5177ba12daddc8b3534689a8eddef5790c0b94b8f59aadefae5bf98de16ffbc2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.14-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 122.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.14-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1584183276449800df0d2da8dabf6f9c248457a01502b2f9d23af8734314a9bf
MD5 7e4612e9387d9b9f8b688ba278d0c4e1
BLAKE2b-256 b74ee6949feb1cf2584ff081cc667a9b347d0ddc8a9d597404c8df5147b2e5b6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.14-cp314-cp314-win32.whl
  • Upload date:
  • Size: 106.6 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.14-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2a19c6f7fe923f4b8bc0cee730e976eaf6d94207d3e4f179768d06cb1edb8508
MD5 7e9bbf6f1fe982e68388067475570659
BLAKE2b-256 8cde26bebc723bab150f0a11465e9128be6ac248ce597a4fc414a7036a90c902

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.14-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.14-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.14-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 09f428fe325b52c1ad6587804582b57abbe2531df11069a1d5e8db80adb763d1
MD5 ef79dc9c6f1a5195cc42e843aad833b5
BLAKE2b-256 825a273cff928e0ef277a408cba9b5d63d40e2afbff7c8c6e7583bedf461f896

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.14-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d420710bb4e0b565d715b0047d45940e512762cc9e0c6cdae6b306d5f5a5d20
MD5 4cabc0204790736ac3efc7f0851307a6
BLAKE2b-256 7c87f596873fe1e256697322b798d2633bb08883733d9ff595a9280f3741934e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.14-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7ad97c965794b7bf1410468fe61de52308e48380b65e7f9e11dbb798d003bbb
MD5 e90892fbaee491602601771637329eab
BLAKE2b-256 35994c51ea1876fcf28575f2d6589db3608ea61df2d81ec040c3bd0c5d23655d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.14-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b682b789b5a82100cf5ff85730267c2a24163de49b64e7cfcc5700725b6b6328
MD5 2627ac841306f903e27e356a0f2361a5
BLAKE2b-256 c5ea59a986e9619866222601d962d4786c730c93e3ba8f836e029dccf22f5072

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.14-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 102.7 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.14-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 250988fe7215e7ed0ba04728dceef995fe2d73281fed26d941cc02d3a9c88cdd
MD5 25a7be50b450470e429dbfc19b883d88
BLAKE2b-256 fefe0c22f09a3ba0ebfe5b1b72f39ac6c6f5c723866fa874ccb0791644a3ada0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.14-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 120.8 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.14-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fd48dd1a4a514cfde20bc4898ccec0f00417807e208ebe6a880dc9f5007252d4
MD5 f9358cff556cdfe1123b29cc9284adae
BLAKE2b-256 c2d40afd08c4e0781a403a7a37d3f3f6ba5cdf0100e06964d881bebf1d134bb3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.14-cp313-cp313-win32.whl
  • Upload date:
  • Size: 105.2 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.14-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d7d52da3892e39661736a153e93eecd6c4f87bfd8d02fe5ff2490b59bfdf3b8e
MD5 7638f07ef4ba4bf56c9b56ab2a87d46a
BLAKE2b-256 25547340c8231e551aaee9dcd414a54ed331b8f7712a05212efa119d414419e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.14-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.14-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.14-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 06682956f416f3eec4f4a8cb3154333fea017436d4d33fc468b28a2806223f69
MD5 0cc6d45d80d73032923ef0dcc6d5cecf
BLAKE2b-256 8b2defa2e7f747b8b6709f705655446554126ebb1f5165f58f65ea801f7aa857

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.14-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b873a5deb20af891e319283f8333d4600aff9d0bea31fee71ab6185bab1e73b5
MD5 df0ba7eab1a46aa58a35631906f42aa3
BLAKE2b-256 dbf9a57a1a7d5e56272cefbd645357896f6d96a9aabe46abd096e3952accb145

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.14-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9ba093e80faccd7ef3b426f682215a3aa8adf6ba548099765181ba84c604ba3
MD5 d8022840954ccc0eb233a453f480e93a
BLAKE2b-256 effc61e78ff9a418f5f1b65c841cb01a68e441ca294206280189bb0e56a12f7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.14-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e13a64eec1fd187d93c75dabaff0036c51295a7ab49b1a8ec39cc820036b25a0
MD5 ee6b1bcaed02af512bcb5fbdc3a19bb0
BLAKE2b-256 4d8874f6fa4fb4874d267dbf612014850e70758ba1b8c381403497d215a327e2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.14-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 102.5 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.14-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 fc9d53e6137fc3d43ae86993d96b6d339552873b1e65e19ee32f92351355fbb4
MD5 3f84f9c782be64bb8e51341bd0b7d62f
BLAKE2b-256 e76fd90d2c8a5f512551b9519d69c4a4b4135e7b6d0d7ed8c22633f8b750879e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.14-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 120.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.14-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b5e158d52e42aaed217070e8fbf66b28500ad8aa6abf550657bfad047b59603b
MD5 1107cc5dfecdde0d77ce2b68e48ef1d9
BLAKE2b-256 87ca06672355552b99d4defcd0da80c94a999c2d47ed9529903137483f81589c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.14-cp312-cp312-win32.whl
  • Upload date:
  • Size: 105.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quadint-0.0.14-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1138b15b374053a56c8b08fe8e5d0a27d10b314648f6cb17692c38d368e70cfd
MD5 75a46a3cd5f709ec1ef8440fa6ab3931
BLAKE2b-256 e09e54a670fee474c2a4a3b2eae8657cfe2b9f42c22ae224e769f73181379aab

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.14-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.14-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.14-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f978194e30db7d7a3737d28fdb602954ba65c89cd80628e7173b6bb3a9a84b06
MD5 967eb15e41557acc92b27d0309b33b73
BLAKE2b-256 9d551ba51df37f88fb37dda535faca3140fb1148bb658f34ad60bda7d90cc8c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.14-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c5f65ffdc17c43ab07621c9afd46c869ec2101e3d27ce825e2ddc1b373db7338
MD5 545739e324993713cda0394c0665fc72
BLAKE2b-256 e80e2b4e2a9306b3c41b8518c682683b28482009479ee01bdbe1cfd242763d07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f194da2cb49de595bdc2288fcc5f26d4edd7681ea50be359f5a6603d3cc03aed
MD5 e2c77edb7c220dde65f3df8ca935cc23
BLAKE2b-256 9f1f9d024b4f57374e4f8ace6e2524e0ef98957913c3ad014a80a4048edde832

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.14-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9a19948c08a6fdd824d5d843e0fbe9caaea3b4a677a07692ba8a72f1c860d8ff
MD5 9272f5fa1ece8b5c8003addcabeb81d6
BLAKE2b-256 02a532a0d2c3173e84c54a63d68b9041f811e00b62be53bad7773609f1f2c16a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.14-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 101.7 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.14-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 c37c91dd0a6374db3954f1cb7d44a9167bb444d264c191d8509aa864dcf26670
MD5 aecc06d1c7d22348366291bd58eb9744
BLAKE2b-256 a63c9ee5a53791d26440556948ee616cc6a8b148223d6bec97ed52937734d363

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.14-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 120.7 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.14-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 df9553932449f1ca44c40609f99237a50ae9f5d2acd0ae8eef4e66048a1d240d
MD5 21a9d04e5099ffad17724860528c6cbb
BLAKE2b-256 77ec870d1ba91e8c307f98d66566853b279016650b9af3d221c5989e643d6775

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for quadint-0.0.14-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 583a318162c4cda3d41946852a3765041ad5130aa84f838c2df204c1a68d3a00
MD5 210ba9eb43503cd85c21dede459098ee
BLAKE2b-256 35b565bf2d521dfe67af4b51c33a8aaff96b7004ff47811a86e7c7fe378cc8c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.14-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.14-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.14-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 199d02a6c22f36fbe2f6dd1371efdb7755f5c3590912295173bdbbb351070214
MD5 46aa798db2883390492ee3591bef2525
BLAKE2b-256 7db00eb8a48bcb0acc1d97a31bc729d1c52bb526f4f78fb215310d45c23fdca0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.14-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c20dd474cfbeb397c135b121f2bbdb706c8cbd07ecb5e7f64030293061e5f086
MD5 75663549b4c3c8b657fb88de482ca352
BLAKE2b-256 dd208a28daccb30bdb5231e5e3d5ebddfa0ab9f9b79323588841d5fcb4e0249d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6eed673eef58fdfed9efff933e70d5780545abe71e8a07e12b0402e52e19d5c8
MD5 f7c0a5c308ec5b28c7d67842e67a813a
BLAKE2b-256 ebfb9d0bba3132e0f96d5bb7a5f4477906a55b9d04bfa794abd79c248c1ee0ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.14-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1eb74d77003368203c8ee5ac593f13d7e62d43e6a261fd4f6a0bced9944ba7b0
MD5 394cd67dc7bef010f90be01259c10fa7
BLAKE2b-256 28878d67c677688aaf423bb566fa978aebf1269647a099f21f1c7c7cde220c83

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.14-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 102.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.14-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 5033d0073a4a86007eba9a3dfbf4afef247ec469b92d4be9abe574ae95502965
MD5 c58f9e816cf289fa0e9292295fbb924c
BLAKE2b-256 615c81066c406dff7c3f3070601b3a3f471160ef49b4b63efa842c96612d68d0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.14-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 120.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.14-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d390d899703d67e098b21737f6a9cc009e8c3b454b1a8f918ab2b5b04455fbde
MD5 56ed913e1eddeacb41f0c8b34c9fee7a
BLAKE2b-256 7db86d170e5975841189bc6e99087bf4d85a3cf57534c526c2800b96da2b9f4e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for quadint-0.0.14-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 35424aeb63c2dc8aab71a8d4237e32190a3159606dd774688e7bd64beb253bd3
MD5 68c64dff097aab689bbfaa8d1787c1ab
BLAKE2b-256 c464df841f781102261adc838e59228ad1a752022bd29d618f5342bad7934846

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.14-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.14-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.14-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 86ced6ecf6d97452a5ca414b35b7e7b4181465861ba0cb3810ba45425d7830c1
MD5 fcb98f06170480dbcde0bfdfd13474d5
BLAKE2b-256 9f2d105f463ed11de96a616b73d25fc0db2394e561e0add39b00ade0b1582a89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.14-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eadabc312ea6da8e901a5a6c7590830d3e7e0e626a1146f2a4702751161b946a
MD5 ed24014e3c5ec5c0d1c2bf5e65800ef0
BLAKE2b-256 5f2f106cbe1df9078a2fd3b99e80ac492e65849126fe6f72f9c4cb2bc19d5f8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.14-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a29b00236768d572d050f92aedc0d343ae2371a35a3b53db2e7a3aa36b29456a
MD5 62d94d8d97c7c06a3e138e4eafdb24f9
BLAKE2b-256 4b399bc9c874336ab5142fe63f6d4f192e1abfed04d48659476b9fdb08d23d55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.14-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f894c654a5462e882b49933b14e4d931dd7483c71cd645da4907bc47f0102b63
MD5 65343850d02fbc5a45da9c86f21b64ee
BLAKE2b-256 4669fb2d3e4bf8af746003a9d2bca7572b7e7e01e3e24535ec89072f1934e903

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.14-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 102.1 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.14-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 f13a5ac4c5606a5883a81721796b7606eedf31e25844f666984548e3c72e1898
MD5 771d8a733f0991c0ba2abee07ece8247
BLAKE2b-256 bbccfe543bdd7376bcb9d5b4999641af2a8dcbcfe53a0c4063423fe1e15f3720

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.14-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 121.0 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.14-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2d097516df881ee3531388a8db01699a2f7f3f9d0708b94eb37cd8890e4daef8
MD5 9db967a99b862e914f35077754708499
BLAKE2b-256 5e98b7c666d325f7679e81fd3d0f5d1455c299dc984e3ecfa272e3b27d2b7010

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.14-cp39-cp39-win32.whl
  • Upload date:
  • Size: 105.1 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.14-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c5ab107ffdd23fe660a13ccad70870ec1ec33356cd0beff0bdfac1b8e637eac2
MD5 70f6b6967df41abb4339df387a396dd7
BLAKE2b-256 732f951e5d607244e1863e8c786798e1de55fa56df8dfd1262a99e04be5c314f

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.14-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.14-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.14-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8fca985622578b2da20282035f274dd1776d8a1441fc7d186bb43f4a54fbd0b4
MD5 f1b3801d2298967f5e15c5c7c0024f7b
BLAKE2b-256 fdc5eb28c9567ac784a3144714c16c327f47ca2af23df930a5cc3cd15c23098f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.14-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0297bf5616d3839c984c1a62af3f6da31314ad68cd864eef7ba63d00340914ec
MD5 579638027d9276fe2a8e78d4a82b3165
BLAKE2b-256 36504273d90e6fd88643f011b80e9b55f52d54ff0db65ca16cb503d372a37b17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.14-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f011e5d3fda12a24032c6edd653d4876250e5fb469406c2845206f95e56bfefd
MD5 109675c6284da1e2ce4c8b3ff6f21cb0
BLAKE2b-256 e56ffdbe6eddb367af7b74777020f8d68e4bb1c90c4878b8010b8d3187366578

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.14-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bd8eecc2c76b7cc85f368a3781a1d103382a1931332ca8775bcc9ee451dc24ad
MD5 c884e36049153f911008bdcf27c73b8e
BLAKE2b-256 93b4c91ee44bfda473868da1898f8ad3e9dfa3014bb886e3be31256e3ab9340c

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.14-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: ci.yml on rheard/quadint

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page