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).
  • Division helpers (divmod, //, %, /) are implemented for dual numbers (D=0) and split-complex integers (D=1), and for the finite set of norm-Euclidean quadratic rings (including selected D<0 and D>0) at the default/maximal denominator; outside these cases division may raise NotImplementedError (and ZeroDivisionError for zero divisors).
  • **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.16-cp314-cp314-win_arm64.whl (108.4 kB view details)

Uploaded CPython 3.14Windows ARM64

quadint-0.0.16-cp314-cp314-win_amd64.whl (127.3 kB view details)

Uploaded CPython 3.14Windows x86-64

quadint-0.0.16-cp314-cp314-win32.whl (111.6 kB view details)

Uploaded CPython 3.14Windows x86

quadint-0.0.16-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (305.2 kB view details)

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

quadint-0.0.16-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (293.3 kB view details)

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

quadint-0.0.16-cp314-cp314-macosx_11_0_arm64.whl (160.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

quadint-0.0.16-cp314-cp314-macosx_10_15_x86_64.whl (164.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

quadint-0.0.16-cp313-cp313-win_arm64.whl (107.0 kB view details)

Uploaded CPython 3.13Windows ARM64

quadint-0.0.16-cp313-cp313-win_amd64.whl (126.0 kB view details)

Uploaded CPython 3.13Windows x86-64

quadint-0.0.16-cp313-cp313-win32.whl (110.3 kB view details)

Uploaded CPython 3.13Windows x86

quadint-0.0.16-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (306.1 kB view details)

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

quadint-0.0.16-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (293.9 kB view details)

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

quadint-0.0.16-cp313-cp313-macosx_11_0_arm64.whl (161.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

quadint-0.0.16-cp313-cp313-macosx_10_13_x86_64.whl (164.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

quadint-0.0.16-cp312-cp312-win_arm64.whl (106.7 kB view details)

Uploaded CPython 3.12Windows ARM64

quadint-0.0.16-cp312-cp312-win_amd64.whl (126.1 kB view details)

Uploaded CPython 3.12Windows x86-64

quadint-0.0.16-cp312-cp312-win32.whl (110.6 kB view details)

Uploaded CPython 3.12Windows x86

quadint-0.0.16-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (307.9 kB view details)

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

quadint-0.0.16-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (296.0 kB view details)

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

quadint-0.0.16-cp312-cp312-macosx_11_0_arm64.whl (161.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

quadint-0.0.16-cp312-cp312-macosx_10_13_x86_64.whl (164.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

quadint-0.0.16-cp311-cp311-win_arm64.whl (106.3 kB view details)

Uploaded CPython 3.11Windows ARM64

quadint-0.0.16-cp311-cp311-win_amd64.whl (126.0 kB view details)

Uploaded CPython 3.11Windows x86-64

quadint-0.0.16-cp311-cp311-win32.whl (109.7 kB view details)

Uploaded CPython 3.11Windows x86

quadint-0.0.16-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (299.1 kB view details)

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

quadint-0.0.16-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (289.5 kB view details)

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

quadint-0.0.16-cp311-cp311-macosx_11_0_arm64.whl (160.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

quadint-0.0.16-cp311-cp311-macosx_10_9_x86_64.whl (163.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

quadint-0.0.16-cp310-cp310-win_arm64.whl (106.2 kB view details)

Uploaded CPython 3.10Windows ARM64

quadint-0.0.16-cp310-cp310-win_amd64.whl (126.3 kB view details)

Uploaded CPython 3.10Windows x86-64

quadint-0.0.16-cp310-cp310-win32.whl (109.9 kB view details)

Uploaded CPython 3.10Windows x86

quadint-0.0.16-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (297.4 kB view details)

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

quadint-0.0.16-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (288.3 kB view details)

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

quadint-0.0.16-cp310-cp310-macosx_11_0_arm64.whl (161.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

quadint-0.0.16-cp310-cp310-macosx_10_9_x86_64.whl (163.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

quadint-0.0.16-cp39-cp39-win_arm64.whl (106.3 kB view details)

Uploaded CPython 3.9Windows ARM64

quadint-0.0.16-cp39-cp39-win_amd64.whl (126.5 kB view details)

Uploaded CPython 3.9Windows x86-64

quadint-0.0.16-cp39-cp39-win32.whl (110.1 kB view details)

Uploaded CPython 3.9Windows x86

quadint-0.0.16-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (294.3 kB view details)

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

quadint-0.0.16-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (285.5 kB view details)

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

quadint-0.0.16-cp39-cp39-macosx_11_0_arm64.whl (160.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

quadint-0.0.16-cp39-cp39-macosx_10_9_x86_64.whl (163.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: quadint-0.0.16-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 108.4 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.16-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 0ed8d3390d206c7b3d52a84144fcab8ad68afe428dd9c949a2315799cde41f78
MD5 20ed726d6dcad3bdf9c89ce791a77f09
BLAKE2b-256 cf063d9574077e52217286a8643edd70acbe3ce4a59c9bc8462286cfb0113466

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.16-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 127.3 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.16-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 52ff7eb5d39f25d9f44111b9e9f16f58cfca4e156b49c71fee25b93a84626345
MD5 9d66d65408e6c33ada3db37826b10d8d
BLAKE2b-256 8987f2cecead0be5e8c61c617a49d952d15a33852cd37411522468fb760f1751

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.16-cp314-cp314-win32.whl
  • Upload date:
  • Size: 111.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.16-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 55dad76824a7a50a553becf43793df2fcd619c770793c1e5e80ee0c5d023b597
MD5 e54a4b513da60bfb84f6989fc2466dbe
BLAKE2b-256 4c7f9f3133054fc0314dbef58e963420f34389507df241d78c38965df57bae2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.16-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.16-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.16-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 42541b450e8ee84bfebce688e63ce1c2cc86d7908d2ba469a6344a6fee9606cf
MD5 ce0e4fdc6045dc2757da403febef7859
BLAKE2b-256 26a23facca3e234f7eb7dd18f32f444c5da2cac195119ed843dcd4b9c19ae605

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.16-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 065cebd36f467b467c539f29a4c6a197fb210bf7ccef2ffe871ca40eb05623a9
MD5 e18c3004c5454d1246cff1ef0459c4a8
BLAKE2b-256 b7856fab3ba6583308aaa00b998b88dff323b502c9c020d81b36d1dd03739e31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.16-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85f93720778f62222a5f69215295a125a07bd67eab1d3e096af2421d795e4f42
MD5 a20fbba0e9423bab581c6c5f9e5e16db
BLAKE2b-256 245d68392f2966ad9884d7be4584c47f9b4250c7fda38c156f2a4aef575e6f3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.16-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 45c4672ef9d2ac4c867252772c8f68b9c71660eaa1815395ef871422d13cd26f
MD5 30624e75f86971f36d030bf4fd338ede
BLAKE2b-256 9357eed09018497527e37069337dc10769fa5a2787d0efbe983146756de48b26

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.16-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 107.0 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.16-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a3441719c9a773a9e45aa720f6eec4b45fabb3d8378d0eab309cce1ae2a02c9a
MD5 b7bcf76bb743d287c4af222c1f7a10ca
BLAKE2b-256 a1280aeedd0edbaba4298673930f883d5f97ff2d058336b9bc32f8b9f97486ac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.16-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 126.0 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.16-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cb4a9a8b5bd34b859c799b1ffbce4870b1df87bdb39a82906e255bfd9b1eb19e
MD5 dc9fef05dd618baec3688f70dc4afb18
BLAKE2b-256 0233d61de0da50c5d0a060e59d16640de2a116327c0da1e8b11d79207a24caf9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for quadint-0.0.16-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 582aba663259a24923adbf5614f8db2b9e279f0ca11c734b1b8426c54227ecdb
MD5 5e7b3d12cf966b3c4bc301560c7be423
BLAKE2b-256 fd0977f81860fc87f3cc1cc7626a209b62614dce5b18fc3389d85044d74b002a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.16-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.16-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.16-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9a3741c1fa4aa1d72a3df60d97adc385b7acce75a14c2ae94c5fca5893f410b
MD5 ff0f1bb3bab1d23542bb805d006d66e2
BLAKE2b-256 893b10ccb3aab8d4d4e6b1ff93f9ee41320888112c3d5a32ed199fef4af75f37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.16-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8dab197e0e155a4b8886a3c5c54b0c203e1bfd64147b0910c5198d34c8db8be7
MD5 7d61f724aa92d913f4f0d454118ed77f
BLAKE2b-256 c9f47068a8ea0156807a93e8d1fc6c809791f52c111f2f9a0dc3dc5f6a9398bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.16-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af92fe9ac1884f09632fa95885e26e2918163d904f9149de9fe69e4ccc7ad01b
MD5 b5099f09ba1a354ea626e73c5fa6a30b
BLAKE2b-256 2215c1afb36272eb774922207040728d69f6855e7e45bfd5e0c0ea9eee991db2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.16-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 005c8c2a0ba2ac78c5365b9905210b2a03d6f1102a93e97746a516895d6a23c2
MD5 aa122fab52bcb24c0d21a932b7e6ee39
BLAKE2b-256 750d7720840c1cea98a75a36104e274f0d99e6d22ddc690fe1542d8bb4732847

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.16-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 106.7 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.16-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ab4ec378df71d92417581672f5a81bd91ed179f3ce4a534d19f9a6b28db43207
MD5 55c2fc39b6eed98754371cd58bf94300
BLAKE2b-256 d6d832e230a45fe8dbb99b6fb4125365ca16a51a0d507ddff3fa21187b0d45d0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.16-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 126.1 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.16-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c79928518441c1152861fe946ee72e121f2bc728ecf68fbdb27357fdb2eb6026
MD5 28a0aa2f0ce76cfeeade0c2375f9afc3
BLAKE2b-256 9c98ddfe16ed917e5b5e8facc26a617be92a6731de07812b0048fbd1bd93e88a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.16-cp312-cp312-win32.whl
  • Upload date:
  • Size: 110.6 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.16-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 837317eb977aee9d1a012496ad6cd7294c00a4b40fffccb4dbfc6b02ae9c9714
MD5 7e36943c3114417ecdc49d4e805ac69d
BLAKE2b-256 d3943c7ed0b9b62fa42fec1eeec62aa257f3315f850b5b524fb6bb5061f3faba

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.16-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.16-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.16-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8cb41e38b27acefda3f62ecead87119a96c2c5159a8488bb6cf9453b61994b0e
MD5 141ad05cda551ff694fc625886accfc1
BLAKE2b-256 cdd4f1488f85ef3dac3c0c632596a0988d22c12e97a404fc3020bbe2fd24cc77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.16-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 35178d46863693a2167b3392513844d17a7ad94fe7e2ef3b799de8fa63e97fa4
MD5 57076ebec5cdeefcc20246fd63f853cd
BLAKE2b-256 be63d892aba6e7adf8b360dbb155c17d18bb4e6e0d9ab5c840890644aebdeac4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.16-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f179391b71605456e0009c7a142952e7067cd4b3f6bed5d74ad4718bb29ac28c
MD5 a031efeaadd6b4389e9966f868bdfb84
BLAKE2b-256 c3d0ca887bc3f23f345d49f3c8ee2ddd2508c148ba89f05d3f2b84a76b6db92e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.16-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ba8853242baa45a9e9e96cc3add5bc0b5ff05598c03478bd3fb35c5d64fe8a60
MD5 4942b0800f37174ac9479cbe9635cdcb
BLAKE2b-256 cf0ac051017946193d7621b22cdc6606fba68b122786c8839fc691d49f4cd75b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.16-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 106.3 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for quadint-0.0.16-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a0884e3e689ede125e695262ff98aa438e5f7df6fdcad3ee76af1f6849987967
MD5 d177f55aaeea5250dc9bc8abbabd43d0
BLAKE2b-256 89dbe6e0a7f2e3a41d1122da7673f598a201bd9fb351cbdf6772fd374de1794a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.16-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 126.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.16-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 96da30d63b1295233521cba444b3d6fd1d01b697f62ccac0e91f59682a26cbad
MD5 e2bab5d6f2552759ddefb0681bfa6e70
BLAKE2b-256 4fe044aed1047f6992d08430bc48421785da77671697c0b7970d185b802b8c1a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.16-cp311-cp311-win32.whl
  • Upload date:
  • Size: 109.7 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.16-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 935c8cb1718eea3bc1f052fb4546c7d42f2abf8ea69078c053f973ae553247ce
MD5 245e05c60ba6bd411eb90b437bd1093a
BLAKE2b-256 7e1fae7f060fdafe1fe22658203bb7e18e72407a8274fad6e62aa74030bd5b10

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.16-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.16-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.16-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 20effece8b1337be08e61f0284512cef79e1a71b85185bba3bb7bc76e8ea8147
MD5 fa54458655f596c0cd0f731e9dc199bb
BLAKE2b-256 6c6667b8539edc0c68be08cbfe4de0cfa4afba1129a4d64518ed74af12103480

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.16-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3fcea27022def485eaabea06d7b09e94ed584a28fd3ad3eb002dcc617bdb6e3b
MD5 da877961a1200c1935f28cdfc23f8e35
BLAKE2b-256 9c424f9e97a898898568025c05f396af6238f683e3429efc39e6411b186ca73e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.16-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09022972a9ec6e390c1651610c04d98e88abe7dcafc769c536cfbb332512725f
MD5 00abaa6878fe8c662b11be8f9dcd2724
BLAKE2b-256 229b127e47f2140e126e4619f8dd7a68e8041bf89411366d82986c96cd822b02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.16-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 23c61f2172acbef2971d6bdf8812b191495273f6159cf3476cb3190d5a36d4a9
MD5 53404bf34c6483882a14258e84945604
BLAKE2b-256 187c9ac51e5d8677ed820490a0a5894d63f6dca11012e83108af44e53a21287e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.16-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 106.2 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.16-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 f798db633b03aa00a357b2c4a203f4199cda9ec44048a9dbc7e3e41ad3b12fc2
MD5 1bc8cc0d1a2daafd51527444ce55d3e9
BLAKE2b-256 a12f4bceb8aa7706226be82607f907b124b13657a34f0c0ce8ae01fb4805decf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.16-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 126.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.16-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ccb630953dde974eb1dcc9464245be610521082c70106404bd68df1a243caf6c
MD5 f80a29f056bbfed2472d41941848e244
BLAKE2b-256 bf07386cfc2d8a353ceb088ab74f4c8d0085b871201455e2a5e58e93fcd1dd46

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.16-cp310-cp310-win32.whl
  • Upload date:
  • Size: 109.9 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.16-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 26cd79e4ce1f6622f850ffbef426f466b9d05c428b234d8bb3ca89978d523e5c
MD5 68dccee38f57efdf3e04521adfa05811
BLAKE2b-256 ac04c28591d91227d5c685f49a2a8e9f318d17679f98c540bf7c2164354c2e15

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.16-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.16-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.16-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 12c58ae1ddd96dbdb9184929c0c79879828c24b4913ac0d5bf678cb8f0d3dac8
MD5 88d91edb7426319915ea156aa919ddd4
BLAKE2b-256 6d7deb9e67475132961639660dd45e37e341e01ae26c6908e1332be2f4f41393

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.16-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e52ce21c1adfca3f0fe66ca54d4d4d70f1d842ba28b48fc1413481777921aca
MD5 1d7d74c22848819a5571b0adaf172e67
BLAKE2b-256 b007a98453893c473c214d6f61e7314bc03f9568ee87f7e6b009763c2369237e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.16-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99590a2565e5023852604be50e7df13368e8f0e2811972898f4cabaa90922e94
MD5 17fef5342c129f86ac512dcc63c8c748
BLAKE2b-256 e74c84392f35f01fb1d79560e86fb2e593f29413a144a52c8376babd13819984

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.16-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fc8674bff50e05e2d0d7e7d4c84af62aa91eb59780333dfb309c6660b3d3f004
MD5 7d39ec6430ae55c87e14229193b63103
BLAKE2b-256 7d80b5ca350fb9a523564d6094ab051c2d8c5c30d2c29bce926f6e23bc432538

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.16-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 106.3 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.16-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 d5e324a331f7135dd2877d4f22a075c81b61cf2efeb9e27c7fdfbb776abb608b
MD5 bb0f445fe4d4c2461702ad5122f552c0
BLAKE2b-256 1b9355204cfccdee99bac27a5371c751d10eabdc6b548fd1ade6f634e08ffded

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.16-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 126.5 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.16-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9433eee36ed94413034e9ec597e88832d3f3ddc72e2be37ba8c385d9a7370a01
MD5 8a379c0f550c2fcd85f256cf33835fae
BLAKE2b-256 db6253e48e205317221625fe9e9c8242f651d58cbc90046a417f70c5519f5b56

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.16-cp39-cp39-win32.whl
  • Upload date:
  • Size: 110.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.16-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e26b3a8e4085b49b1debdbd7a98d227c1aa4a46068ed79c33ed61a1d20548592
MD5 9332a83038fe664f171c0b1a58fb5bc6
BLAKE2b-256 c40ad5e24acb002ffb8fe36cf376b80b7a7e71975c09741753b3e2003ba4b94a

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.16-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.16-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.16-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f3b7397ebd87e4ba87f3fb4cafeac464ce6676b63a02fec00442184e3c4f29cc
MD5 552851c3f843f3d6e0622593102ffa05
BLAKE2b-256 563f39cace2b49bac6d8642418929d2963edbadeb1b7134563214885ed3afc7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.16-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f4fc21904a70882ff9beb317aeed0605ea9f039a2a4876a6a5843a25aaabbf50
MD5 48f26b04428db58c8f29d689d9feb89b
BLAKE2b-256 13fa88030e17bb1f4e8061960e1f08e356904c8d2504dccd874d3384581e1705

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.16-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55855c93bfe82149e7d1f962277ac5b29da3b1b3ae138a4c76612e90bfd5432c
MD5 6e906f6d830667ecabbebc0a6ae53f6e
BLAKE2b-256 d991711f1c517cb49db5614226da73afad5597906c39c32f73b886620f1c811d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.16-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8b10547951c8840739031d317beb79e5764d29cfea61b823ecc2490ccb5bf04e
MD5 32d556b16791420a205e579312b1e7d0
BLAKE2b-256 9a83fffb81296ad36b546886d77c5acf5ac671c702f7856da13b33c24f702c55

See more details on using hashes here.

Provenance

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