Skip to main content

A quadint class, for using quadratic integers.

Project description

This library provides a QuadInt class for dealing with Quadratic integers.

Additionally, a complexint class is provided by default where D == -1 obviously. This class acts just like Python's built-in complex except it is backed by Python integers instead of doubles. This allows for infinite precision.

Examples

from quadint import complexint

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

c = a * b
print(c)  # Outputs "-9+12j"

print(type(c.real))  # Outputs "int"
from quadint import make_quadint

Q2 = make_quadint(-2)

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

c = a * b
print(c)  # Outputs "(-21+12*sqrt(-2))"

Disclaimer

This is intended for use with discrete mathematics, and ideally will be limited to the operations: add, sub, mul, and pow.

Trying to divide using this class, or using floats with this class, will (probably) result in integer conversion cutoff.

As an example of this problem, note the equivalences below:

from quadint import complexint

a = complexint(3, 6)

print(a / 3)  # Outputs "(1+2j)
print(a / 3.5)  # Outputs "(1+2j)"

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

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.2-cp313-cp313-win_arm64.whl (61.7 kB view details)

Uploaded CPython 3.13Windows ARM64

quadint-0.0.2-cp313-cp313-win_amd64.whl (70.6 kB view details)

Uploaded CPython 3.13Windows x86-64

quadint-0.0.2-cp313-cp313-win32.whl (60.8 kB view details)

Uploaded CPython 3.13Windows x86

quadint-0.0.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (206.6 kB view details)

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

quadint-0.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (197.8 kB view details)

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

quadint-0.0.2-cp313-cp313-macosx_11_0_arm64.whl (109.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

quadint-0.0.2-cp312-cp312-win_arm64.whl (61.7 kB view details)

Uploaded CPython 3.12Windows ARM64

quadint-0.0.2-cp312-cp312-win_amd64.whl (70.8 kB view details)

Uploaded CPython 3.12Windows x86-64

quadint-0.0.2-cp312-cp312-win32.whl (61.0 kB view details)

Uploaded CPython 3.12Windows x86

quadint-0.0.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (208.1 kB view details)

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

quadint-0.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (199.1 kB view details)

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

quadint-0.0.2-cp312-cp312-macosx_11_0_arm64.whl (109.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

quadint-0.0.2-cp311-cp311-win_arm64.whl (60.9 kB view details)

Uploaded CPython 3.11Windows ARM64

quadint-0.0.2-cp311-cp311-win_amd64.whl (69.8 kB view details)

Uploaded CPython 3.11Windows x86-64

quadint-0.0.2-cp311-cp311-win32.whl (60.5 kB view details)

Uploaded CPython 3.11Windows x86

quadint-0.0.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (202.2 kB view details)

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

quadint-0.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (194.9 kB view details)

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

quadint-0.0.2-cp311-cp311-macosx_11_0_arm64.whl (108.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

quadint-0.0.2-cp310-cp310-win_arm64.whl (60.8 kB view details)

Uploaded CPython 3.10Windows ARM64

quadint-0.0.2-cp310-cp310-win_amd64.whl (70.2 kB view details)

Uploaded CPython 3.10Windows x86-64

quadint-0.0.2-cp310-cp310-win32.whl (60.7 kB view details)

Uploaded CPython 3.10Windows x86

quadint-0.0.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (200.8 kB view details)

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

quadint-0.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (193.7 kB view details)

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

quadint-0.0.2-cp310-cp310-macosx_11_0_arm64.whl (109.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

quadint-0.0.2-cp39-cp39-win_arm64.whl (60.8 kB view details)

Uploaded CPython 3.9Windows ARM64

quadint-0.0.2-cp39-cp39-win_amd64.whl (70.1 kB view details)

Uploaded CPython 3.9Windows x86-64

quadint-0.0.2-cp39-cp39-win32.whl (60.6 kB view details)

Uploaded CPython 3.9Windows x86

quadint-0.0.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (200.5 kB view details)

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

quadint-0.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (193.2 kB view details)

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

quadint-0.0.2-cp39-cp39-macosx_11_0_arm64.whl (108.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

quadint-0.0.2-cp38-cp38-win_amd64.whl (67.1 kB view details)

Uploaded CPython 3.8Windows x86-64

quadint-0.0.2-cp38-cp38-win32.whl (58.2 kB view details)

Uploaded CPython 3.8Windows x86

quadint-0.0.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (190.3 kB view details)

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

quadint-0.0.2-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (180.4 kB view details)

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

quadint-0.0.2-cp38-cp38-macosx_11_0_arm64.whl (104.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

Details for the file quadint-0.0.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: quadint-0.0.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 61.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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 37eccdd8972fa5f5080365eb559c13879c35df26790ba30d028e47c1db62a8cf
MD5 0f1803e7f92da39a407fc8c646a5d842
BLAKE2b-256 a085c245830fa10e8e2af7a9995953a1d060d862de8755df878bd12cd6fc2f06

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 70.6 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dcd13a96d9cea03c5a6f91ca795cf717ec87fe6d36d5541b8e1e2cf6979e58e9
MD5 eb4e1f8fbae4f741172b43a99a1835d7
BLAKE2b-256 38805d271704105d78a7f9c4674b3e1d6a711294d671536fd2884fa866c958f3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 60.8 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c257163f09cbe0aeb4ea849cae2a84e6601c1b1f5d427e82f54e1894786bf6b7
MD5 212392f65be2687ef288146b38066556
BLAKE2b-256 440c0d9e3bc5765ce03f35aa4e76aed1c911248e175a71b3c8a864888aa48541

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.2-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.2-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.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 106e4fecf84e9c8795180f3d51bc074786b79b9e927430e259b548c0a78e8b7f
MD5 b49847f381b1a522a39fbffc12c6e4bb
BLAKE2b-256 5f08249cf762797d1e32f3536074b6de453999d98c49772baba9c3d9853d517f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6f2891afe9ab91f00e9a952671872142fee3cb155c722aa14d7dd9dc87de8018
MD5 34f26995ec65eb8221371cdcf91d81bd
BLAKE2b-256 6bc95a1341595cab664712dac99dac9de72c9cfd17828e83518469c34b9d3b0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c6aff865e12cb6b4bb62f87b2ceadc47203690833a4479e570a5f16025a505a
MD5 19ca39573069e21a9e173733d866d77a
BLAKE2b-256 a18c10d613a5591f67168c128c5aafbc91af798f8c6e161df38fd5a517a90b41

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 61.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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d80f7b7b50b2102806e7089d92d6e2b3ffc55e4d10a639ad03252fe94cf9b396
MD5 c8c2fc764f5a97fa6ba292b18705dff2
BLAKE2b-256 6d561f42f3a6e12609651f7fa0cd11e2787f0d438f912504c8c888c334f4468a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 70.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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 77b9a46f2e7ddb8ca230067fcad6a5623aeaa1ceb0b5b0254092ff55faf16d81
MD5 5fd2951ce27ceb776d2f7a9e0c861965
BLAKE2b-256 5a50a6980e6c0428ba0974357eb7a12f11bc9b40ab2bf527ab283183d47a3de6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 61.0 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 88ba1a9ef522718a0d857891524b22ddc98d1fd7f727f51bac62b216faca171d
MD5 59d77a35b4b454b9f907c9b27a84824f
BLAKE2b-256 e80ebcf3fe2a6e2f8009d057045e78c12c2ceec72566f0e38e64a3ea998112a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.2-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.2-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.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba3f5ea08678fa4cb8de0768e4b4afcad558c283fdfb1fe4193f8ad855672289
MD5 32c917ba5709726cdbfb3076871d9ce4
BLAKE2b-256 446f4da29a306b130d9fe1298953a8ef184cf9f017c52a6388790b6ff639d0fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6ec246e7d65207dfd7f64fbebd25d4e4612e20dad9c8e726067f06fcc9bc462b
MD5 71ff8e90167f46e444382e36029fc237
BLAKE2b-256 969ed103b3e49619dcac7a468e1b111f44e271ed80ed7f8b536ec6e62ab946d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79970b2bb03dd9725eb34595427dcca7382fa2b5b6c3699a6029a3d1be56e53d
MD5 6d38b0f643891a1c390ba510dccbcec9
BLAKE2b-256 67ca592a2f22e093b3eb0260de50f4472b7019904f83ffcf41bb549a86466dd6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 60.9 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.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2d1a56f44dc0297ede108273671e793a6a3ac0910ae760bfec762a29b0da073a
MD5 e7fab1b0f6352a3f4edca61c82d1e533
BLAKE2b-256 d71c076a000882f0dcb4793da0259efa5b4a1c805bbd06c9960c5ff78991c99c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 69.8 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cd72f3ec80e90553f6cb384dc61746617a64435a676121aacc0ee192418f873f
MD5 ef9dc21e4db19c42fb0dfe77789d7a6f
BLAKE2b-256 5c2c70fc6bc051c144f79072a1d27359d2b1ab31c71cf94b6eb9b1a17e1b219f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 60.5 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2511419acca23a549c7eb56db5d9e4b8b4ef9c72cd430946c27cbe2ac00ca25e
MD5 c531c84339d0aefb3ad8166afd42d0f1
BLAKE2b-256 e26e2235ff43421a972db8e869b31b87799d0d360cfe542a7128ce655ac812da

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.2-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.2-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.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76c9765af1fc66bd693ca47b2784326fabdcfc31596eef83ce96a97d21798749
MD5 d5b755a1887e960068acf67a0f8ff0db
BLAKE2b-256 292f4406d32452d1bb9ecbd67fa51a6a4e7ccecf2cf7e5ce289fea584bd6e4c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d35cad7275e188ed26ef2b8ccc8c03d382357675999fe61243f6e457c34e1aa
MD5 6dd2441af7973a4b8b1433a8aaf90621
BLAKE2b-256 56138e646c0557dae67922b3d9517b44615f005800299cddc315dbb999fbf2cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5829dbdaccfc7ac290d4919f66016428c3725a710552dd9b75d9368a30c7da13
MD5 0b943497ad4576c3a0c13962de899a83
BLAKE2b-256 bab38687a380a15988a9e3e767c2aaadd7ccb940f0b330f620847a8c79d344bf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 60.8 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.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e03e6aac6bde5c0b134c7b40ec24d72a170fabf426b1d2568e5faa458fda5ffb
MD5 25d822fac4f49441e22b12ece20d4b7b
BLAKE2b-256 7008bf60c911143db57cc629ae7824d7530f445b8874eb7fbf39062f6b2a248e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 70.2 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9cc91f08e6cb123a8b0e1c8ef45c68381f5e39fb8bfa825073c57fdacf4d8a3a
MD5 24b333157d549326a3eedca3ccd0992a
BLAKE2b-256 5e873a564352847937555583d3eb9b3e13bcaec962f73bf7b51d0cc6503a8856

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 60.7 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 42ce69cedfe7f57f5a4eb2c34c9f556367dc6ae2b092e409f0753c67ba41e8d2
MD5 3afcac5967fc9101cf0dbd1707bb2d83
BLAKE2b-256 c8303ae5b5793a174920e71392d60050dac2ea03233f611eac2e7b3d328f4b38

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.2-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.2-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.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9f1e7d3483e6ff86f1cace2d5e263764f293c1e82760245799624023a1e87c9b
MD5 0306cabca7bf5a9b8f452c298f4f7fb9
BLAKE2b-256 493f0731bcba6127ad01df5504bf9099c640bc6f080c5e24a4b7e4f61b1cee50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 593f466f8dd84a34c1cb56c8dd4b9a9cde9a133d97f7ea77ceaa7aab9df013e0
MD5 7db123eb55ee1240ecbfa607f0eec7cb
BLAKE2b-256 9af5e2115d2d8d3499da6aea2b7565fcf766ab2bd7f6b97a528b3b75f303acbb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 764e1433c7d3624cd4bad85458651c368ca65a5f9ca33114669bb5254cbfbf6d
MD5 d6e3d64eef043f9a27418b45d5700062
BLAKE2b-256 5d6761ffd79cc49f9be2e93d53f8e2204746525bee00557046734c14a8b30aa2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.2-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 60.8 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.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 bb79dd47d1f0b47e89755d2f22d6bc7078bf148c21f54b32fac0f531345b2036
MD5 fce676c6f89c9d09b1c6472336f37289
BLAKE2b-256 f6624eb5df08351159f1feabb894542d89c3911d362259d35d9fead1557c6593

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 70.1 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 43cc5a919a12dc344855b75850eff8ec3c336b41b15fddb12353292a04d58c74
MD5 00429b831403f9cd2be2652f6fc93313
BLAKE2b-256 02c338426a140086b8ddd888e44c8b97470239abdf646a6356da994effb0511f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 60.6 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6ba176de01e1e36706eb00f45fb0cab666f57fe24d1204d9aba7d633933832c4
MD5 cd158b4d99684e94bcd45dad70048212
BLAKE2b-256 6af07032be228138b8088fa404ef66f75fc053734bbde2b1f41cb713b08fe9f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.2-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.2-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.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 204cdcf47e3d62c1c968218846cc2e848ce1de1559aec7434090b9f80ac9c492
MD5 85d4144c371ba945bad62c3d6105e5fa
BLAKE2b-256 6f41da411bcae715623167f4833e41ceba3597fd6c50f464ea4d628a9e866b91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a969c38119573d75eb0fb864f89ff699204a6d547aa49d5985d530cdd7894031
MD5 54c062300b076112cbb56041b5437069
BLAKE2b-256 f79f48663e09d021d074188812f690e3344ed8ff910a2b73b8ed3c61fce451a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a42c5160d5ee14d766e2b5e54ce441008bdfa154f6f3334c75eccb591401a89
MD5 e37ff58c2ce960157769690e7ace8dab
BLAKE2b-256 a9519a2f014ceae3a81bbd26920fadcc011fe18b438b7bfe2e4554c800a6c110

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 67.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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ddcf26f922bd79416b54c376a8296789ddc3f630f9798bacfdfb0600ba2dc77f
MD5 5601a88f17114be2fbd5453cc9fa27ef
BLAKE2b-256 d0e99d83b5472a88cd3641b2bb1c5c3f4ac602734aa835138d574910089e2910

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: quadint-0.0.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 58.2 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.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 932a37de2cca4076422f120f1dcfa443b9c5b4b6e6c203155a2039dcd6ffe853
MD5 5eed57ad23a69d062a02c24c4555e14f
BLAKE2b-256 d4c08aef8a1298a6847d166a02060e0e75886171e66af163c5e8b458c2cb707e

See more details on using hashes here.

Provenance

The following attestation bundles were made for quadint-0.0.2-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.2-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.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 158f2685b630c1417e3a61bfc0c8eb43811c6bac0b9b88bd0dd533dff795eb5b
MD5 b32ad93e411c24b0977cf4bc0846d17f
BLAKE2b-256 857b2502d2dd7d456a6772df6700da001c76433bebefced46f96553d6ed4dd04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.2-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc8168915af0d3d248a394c9a6ed5726285e0a94f3e16a56a7c5e7ecb90cee37
MD5 76abbbe12a22440df45015e3eb9ef410
BLAKE2b-256 f07b0677cb69dd265d6d887c96ec895c69e157d7f28d3dc62ae9c354e0bef7ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for quadint-0.0.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5468849e6286bb6e47ec54ff4d87f9041d9adaca9ae8d10930884f3989f43499
MD5 f8fef4a83f8c238fda9a222d2b59ebd6
BLAKE2b-256 90953d312ed5e135f8f3fb682f1473673dd24ede18199fdc95b67c27230380cf

See more details on using hashes here.

Provenance

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

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