Skip to main content

Functions represented as Chebyshev series

Project description

cheby

This package provides:

  • Basis of Chebyshev polynomials of the first kind
  • Functions represented as Chebyshev series

It is intended to be used for the resolution of differential equations using spectral methods. It is primarily a C++ library with a Python wrapper using pybind11. It also relies on Eigen for linear algebra.

Installation

The simplest way is to use pip:

pip install cheby

The package can be installed directly from source:

git clone https://github.com/GwenaelGabard/cheby
cd cheby
git submodule update --init --recursive
pip install .

This will require a C++ compiler and cmake.

Usage

The Python class Basis1D provides the following features:

  • Evaluation of Chebyshev polynomials of the first kind and their derivatives
  • Chebyshev points of the first and second kinds
  • Differentiation matrix
  • Matrix for Dirichlet recombination

The Python classes RealFunction and ComplexFunction provide representations of univariate functions as Chebyshev series. THey provide the following features:

  • Construction of the Chebyshev representation based on a Python function
  • Evaluation of the function and its derivatives
  • Addition, subtraction and multiplication
  • Primitive and integrals (over the whole domain or over a subsegment)
  • Roots and extrema
  • Integer powers

See the Jupyter notebooks in the examples folder for examples of usage.

Unit tests

Unit tests are written using pytest. They can be run using

pytest tests

License

This project is licensed under the MIT License - see the LICENSE file for details

Project details


Download files

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

Source Distribution

cheby-0.3.12.tar.gz (1.9 MB view details)

Uploaded Source

Built Distributions

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

cheby-0.3.12-cp312-cp312-win_amd64.whl (196.1 kB view details)

Uploaded CPython 3.12Windows x86-64

cheby-0.3.12-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cheby-0.3.12-cp312-cp312-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

cheby-0.3.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cheby-0.3.12-cp312-cp312-macosx_11_0_arm64.whl (166.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cheby-0.3.12-cp312-cp312-macosx_10_9_universal2.whl (355.3 kB view details)

Uploaded CPython 3.12macOS 10.9+ universal2 (ARM64, x86-64)

cheby-0.3.12-cp311-cp311-win_amd64.whl (194.9 kB view details)

Uploaded CPython 3.11Windows x86-64

cheby-0.3.12-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cheby-0.3.12-cp311-cp311-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

cheby-0.3.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cheby-0.3.12-cp311-cp311-macosx_11_0_arm64.whl (165.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cheby-0.3.12-cp311-cp311-macosx_10_9_universal2.whl (352.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

cheby-0.3.12-cp310-cp310-win_amd64.whl (194.1 kB view details)

Uploaded CPython 3.10Windows x86-64

cheby-0.3.12-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cheby-0.3.12-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

cheby-0.3.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (303.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cheby-0.3.12-cp310-cp310-macosx_11_0_arm64.whl (164.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cheby-0.3.12-cp310-cp310-macosx_10_9_universal2.whl (350.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

cheby-0.3.12-cp39-cp39-win_amd64.whl (198.3 kB view details)

Uploaded CPython 3.9Windows x86-64

cheby-0.3.12-cp39-cp39-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

cheby-0.3.12-cp39-cp39-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

cheby-0.3.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (303.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

cheby-0.3.12-cp39-cp39-macosx_11_0_arm64.whl (164.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

cheby-0.3.12-cp39-cp39-macosx_10_9_universal2.whl (350.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file cheby-0.3.12.tar.gz.

File metadata

  • Download URL: cheby-0.3.12.tar.gz
  • Upload date:
  • Size: 1.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cheby-0.3.12.tar.gz
Algorithm Hash digest
SHA256 9e7b424798e394039d3034a6ad585a74851877b91bd9f0c7492e7430036701a2
MD5 2568608c51b01d3bccbbbd8ae32badbf
BLAKE2b-256 1323a8d71bf0d80cab8f662e322344eedaf5b9cbd88a658871ec79088b9c8051

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12.tar.gz:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cheby-0.3.12-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 196.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 cheby-0.3.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 41edbe7b698a4f140f378cd322e6c7c8ed980f5ef237839bc4dad457d373d108
MD5 cc34b29d89e3c71a1695833a8ee6dcaa
BLAKE2b-256 dbe9ff020b52504e581d505048ea3ed84b3b2f31b49fb3256662dadd946d22b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp312-cp312-win_amd64.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cheby-0.3.12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a06429bb16e5e74b9798fa54eaa97f9bac1b554a799858c5a11c3e6f1feff5c
MD5 ed8986d1cf9cfa712d5549146c94463a
BLAKE2b-256 7a5c62c166283b282af9f685f7460cf635f451b3001dc44d949a395c124bb08b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cheby-0.3.12-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2dfcf747dd8ed061147e0fa44f39619329e78b1992dbcb10711faf762c2128b8
MD5 738fb6b46f5007c3fc27b6cdc1baf2b6
BLAKE2b-256 614777e980232374aa03a485dba20c5b5f12c8af5c2df296495817c5f6d1e6ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cheby-0.3.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ccd65ee611bc66c34a1e73e3fdb7da8a74cadcd8af6bfd98d97fe953c2ba62f
MD5 d12f75db17c74e17bdde347f0eba2d64
BLAKE2b-256 b1b87b879245c8caf7ea985bc74e0ade6fe4a6d76b5816b96910f7b9085f1c1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cheby-0.3.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c961867eb21c24251108c58f263a6ded8dd0361ab0e89ef6cf79e1b600fcef3
MD5 3a620b323b9d4bad830f2f3949d08655
BLAKE2b-256 f8ad907f70e8f2e1271dd001faa93843fc23b95590ab150aa93b22c731dbda26

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for cheby-0.3.12-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 80fb0d143ff7562c52bc339a97c6832926e75f60321f81d3cf3113eec3a5675b
MD5 cc7a947d7306cf8ff54e7be8815ada51
BLAKE2b-256 4efa4334d828cbee9a03b3a7db0d890633f21b5e5adc38b26e9f58279266b840

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp312-cp312-macosx_10_9_universal2.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cheby-0.3.12-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 194.9 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 cheby-0.3.12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8b52fa9ace36011a5724174f83c4f3e04fd5c6a73c3ffa1aa7c4c733b1eaa96d
MD5 a7dc27ed9ab5ceec8d98852abcfad05d
BLAKE2b-256 e693570ce31fbcc32bb7cbe7596b0fd3f7089ced285a3af4a55ec6cefb535e19

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp311-cp311-win_amd64.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cheby-0.3.12-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 354d811619706baf071d38f0ab3e3275105d36772260bc0f683fab11bdb35036
MD5 f2b87c3e35b4e218babae41a58667f6f
BLAKE2b-256 44d5bbc84c3d487452627c91354740f8748b35e90a58904fa4d96a141727ab00

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cheby-0.3.12-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5558f415eaa01a1ae1ed387912ab211c1dd54a50b7f8efb3fb1836a91d290a49
MD5 3850ca26c30ae4104609b29bfe545c17
BLAKE2b-256 94bd5672342942a5593b84555e1b3d8a6966aa46c190d39a0fc2bd54a6fd1f44

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cheby-0.3.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09b30af9769aae441d496287794e9c933ad57516991d55c78b11df0c800bc2b9
MD5 bfdd70eed78ac743ac0c38b3278e6ba5
BLAKE2b-256 c2b42da3df5e682c26bd5fbc55d1240fdcdc3a8cce9f105f8fa9098555a4bc62

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cheby-0.3.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0b5954291d61aeb1c27d434b67a5ecaef1e352971ed73fc757eb5e1f607ebaf
MD5 d84e4a862f6383af6e5a32b6bae09c8d
BLAKE2b-256 79c0ddcb965e7f6e691321bc01f0be7c40db3bbbc74974bed7312c6e951e858f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for cheby-0.3.12-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 be0e0eec74abee23ec298e0f705ec596064a40d183577e8edafbe6bb464468dd
MD5 055e7ae4bca515a720e94e9691002470
BLAKE2b-256 501b58a00be083dbbb23a3eff42dbe99d7312fb3b1830b5da207a66525793510

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: cheby-0.3.12-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 194.1 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 cheby-0.3.12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b6c79e33de5093636cb68e28a9ace59067ad742c349aa976ad8f47becf46f69c
MD5 7c2d6bd7280ecd48327bf724f9e7e7fc
BLAKE2b-256 d0733a35f6209cc024838e77d60bf0a2787080618b37b99f492c47eb4b5c45d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp310-cp310-win_amd64.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cheby-0.3.12-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d0a0d625a5453a9c3a40ca0a21eec7544e3611f2e65c99d97b4808007458961
MD5 fc175efa327710d63777dc6af25bc1dc
BLAKE2b-256 170270c87110885cc729e115aab7002448ac016ff13a758a86b27fd4c5b6593e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cheby-0.3.12-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9df43c9976e20c91d769d3b414fcbc25e1173bb372a9354e96930a4d71570be7
MD5 976ed1594735fefa771007b33af871f7
BLAKE2b-256 ce72ea4653096447512bd0fc99d8651b2f25eb104d15137c582e20ae4f8e20e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cheby-0.3.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47d91628317e096bdd80410ca601c2d2421025a8a87236a868d2016a48749b81
MD5 c58d174076632280a2faba6ae0cbb1e5
BLAKE2b-256 92e13f19942cda102568a4f38861777f16cbf3428ff24f2a539ec7780802175d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cheby-0.3.12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f27f05d99e417a15f105fe0514d94f5b5011be5dc8c79e708a7dc4c963284e14
MD5 d75076e69ad8f64c8c6c64385efe1560
BLAKE2b-256 4f3b64ead2798d3ffe2585a72af0e444dd37ad26052e062b0322c7e539ba2f6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for cheby-0.3.12-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 db6a6a8867fd67482363f0db31cac588f07e2eda9ea8ae4412e380280eb049a2
MD5 f849cf04b708fb4df6141413625c0157
BLAKE2b-256 a41622b80d7aad9220ecb022e80061f419a4369c5818e82815d8a0bf12f92f34

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: cheby-0.3.12-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 198.3 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 cheby-0.3.12-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2d685664465a3fd1dabf74a0c390aabae827b53a7207bccc8b56c7d26341fc6c
MD5 23792813a1e42ab7109eabb3267503a9
BLAKE2b-256 b11c32d046c1fcf5ebd36a36cabf308c1610eaab1567f3eb5b9fba2983d92e4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp39-cp39-win_amd64.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cheby-0.3.12-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a99aab18d18df84c3e7a1b75f6db246c48a1fd12c50b47491609eb506ac3be9
MD5 db121e9dc7c6bb6a79d4cebc56dd7a05
BLAKE2b-256 388e3811c4961baef07ab7f16575879d9f9aece560b3bbc2ac0a5eb4e47375da

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cheby-0.3.12-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7c87c3c0f7a44846cc2f9841785bc0cf923377dd44074f135deaadd250de3385
MD5 9da6b268ffcc2054585d8bd788792572
BLAKE2b-256 8777527c6686435643346dbe21140a16231f576ee37059148ab4d6c2d85842f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cheby-0.3.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33ebf9396f4074df27dcbf155cafb46faa7bdd370935ebe8f0445931d942755d
MD5 ad6a723f934e13e84dd3c3462cf8efaa
BLAKE2b-256 11e4a6d0c177d7d33c5aa52cd6f6e25bcb114ec7f51abf6ba3eafdf49a3a6eb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cheby-0.3.12-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c584461cc7c7fec010d805c0322b55a5e89257e37c1c461933e6d17921babc8
MD5 f092841e256f2a4359c7c8b48644f707
BLAKE2b-256 6a559ed2169a9a30f180ac8ff967a3110e07bece5e03e8354cddbfc2102b489f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on GwenaelGabard/cheby

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

File details

Details for the file cheby-0.3.12-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for cheby-0.3.12-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0f66a36e78887a5b9fd2e2f9e095206e8454eb4874236aa85f46c1d323aa83c3
MD5 60244c137fbd108ecbb6b6942a76e62d
BLAKE2b-256 3b43ef62d8cfce463ec95d42f72ba3ee29341d1ba1bfb8089322631a6d8b8ee1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cheby-0.3.12-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: release.yml on GwenaelGabard/cheby

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