Skip to main content

Python bindings for the Fast Gauss-Legendre (FastGL) algorithm

Project description

FastGL computes Gauss-Legendre quadrature nodes and weights O(1000)x faster than scipy.special.roots_legendre. It does so by implementing an iteration-free algorithm developed in Bogaert (2014). This Python package is a thin wrapper around the C++ code from that paper. A classical iterative algorithm from Kendrick Smith is also implemented, which is around 20x faster than the SciPy implementation. Both are OpenMP parallelized.

  • Free software: BSD license

Usage

This module contains functions to compute the sample points and weights for Gauss-Legendre quadrature given the quadrature order.

>>> from fastgl import roots_legendre
>>> N = 100
>>> mu, w_mu = roots_legendre(N) # FastGL calculation
>>> mu, w_mu = roots_legendre_brute(N) # Classical Iterative calculation

Here, mu is a numpy array containing the cosine of the sample points (ranging from -1 to 1) and w_mu is a numpy array containing the corresponding quadrature weights.

Installing

Make sure your pip tool is up-to-date. To install fastgl, run:

$ pip install fastgl --user

This will install a pre-compiled binary suitable for your system (only Linux and Mac OS X with Python>=3.10 are supported).

If you require more control over your installation, e.g. using Intel compilers, please see the section below on compiling from source.

Compiling from source (advanced / development workflow)

The easiest way to install from source is to use the pip tool, with the --no-binary flag. This will download the source distribution and compile it for you. Don’t forget to make sure you have CC and FC set if you have any problems.

For all other cases, below are general instructions.

First, download the source distribution or git clone this repository. You can work from master or checkout one of the released version tags (see the Releases section on Github). Then change into the cloned/source directory.

Once downloaded, you can install using pip install . inside the project directory. We use the meson build system, which should be understood by pip (it will build in an isolated environment).

We suggest you then test the installation by running the unit tests. You can do this by running pytest.

To run an editable install, you will need to do so in a way that does not have build isolation (as the backend build system, meson and ninja, actually perform micro-builds on usage in this case):

$ pip install --upgrade pip meson ninja meson-python cython numpy pybind11
$ pip install  --no-build-isolation --editable .

Contributions

If you have write access to this repository, please:

  1. create a new branch

  2. push your changes to that branch

  3. merge or rebase to get in sync with master

  4. submit a pull request on github

If you do not have write access, create a fork of this repository and proceed as described above.

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

fastgl-0.1.8.tar.gz (89.3 kB view details)

Uploaded Source

Built Distributions

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

fastgl-0.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (234.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fastgl-0.1.8-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (243.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

fastgl-0.1.8-pp311-pypy311_pp73-macosx_14_0_arm64.whl (406.0 kB view details)

Uploaded PyPymacOS 14.0+ ARM64

fastgl-0.1.8-pp311-pypy311_pp73-macosx_13_0_x86_64.whl (450.6 kB view details)

Uploaded PyPymacOS 13.0+ x86-64

fastgl-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (233.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fastgl-0.1.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (242.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

fastgl-0.1.8-pp310-pypy310_pp73-macosx_14_0_arm64.whl (404.9 kB view details)

Uploaded PyPymacOS 14.0+ ARM64

fastgl-0.1.8-pp310-pypy310_pp73-macosx_13_0_x86_64.whl (449.2 kB view details)

Uploaded PyPymacOS 13.0+ x86-64

fastgl-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

fastgl-0.1.8-cp313-cp313-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

fastgl-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (234.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fastgl-0.1.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (243.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

fastgl-0.1.8-cp313-cp313-macosx_14_0_arm64.whl (405.3 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

fastgl-0.1.8-cp313-cp313-macosx_13_0_x86_64.whl (450.1 kB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

fastgl-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fastgl-0.1.8-cp312-cp312-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fastgl-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (235.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fastgl-0.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (243.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

fastgl-0.1.8-cp312-cp312-macosx_14_0_arm64.whl (405.3 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

fastgl-0.1.8-cp312-cp312-macosx_13_0_x86_64.whl (450.0 kB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

fastgl-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fastgl-0.1.8-cp311-cp311-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fastgl-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (235.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fastgl-0.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (243.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

fastgl-0.1.8-cp311-cp311-macosx_14_0_arm64.whl (405.9 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

fastgl-0.1.8-cp311-cp311-macosx_13_0_x86_64.whl (450.6 kB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

fastgl-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fastgl-0.1.8-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fastgl-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (234.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fastgl-0.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (243.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

fastgl-0.1.8-cp310-cp310-macosx_14_0_arm64.whl (404.8 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

fastgl-0.1.8-cp310-cp310-macosx_13_0_x86_64.whl (449.2 kB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

File details

Details for the file fastgl-0.1.8.tar.gz.

File metadata

  • Download URL: fastgl-0.1.8.tar.gz
  • Upload date:
  • Size: 89.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for fastgl-0.1.8.tar.gz
Algorithm Hash digest
SHA256 ab8aee7610640dcdaa2d4933a1c1e94f76427ceb087ecd998281fac6880b3d0e
MD5 a84c9679629688f56526ef967591657e
BLAKE2b-256 7d89e470b702f2192baf89e8b7ec8f9bba75143051fce95e3a5ab7238777007b

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9e59aae080ce97a4ee98e9c4e859d0494a78ed1db03d48df6577f02fa98f24e
MD5 2498e265655c8763adfcfe9f48895048
BLAKE2b-256 08b25bb66680bff0e91489f333684fed89bac0001d789c491a450b7707fc56e4

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8822f20938ada8034af47b2ce1f5ba5a23f06deea17d6aab94aed6358bf4d36a
MD5 44b190746b291fd09b6b559c97be9687
BLAKE2b-256 8dd9f57923e0456cc17d503e557dd1b980c444b4c4d2b2eaf0d4554e65a56765

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-pp311-pypy311_pp73-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-pp311-pypy311_pp73-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 d042179ada52fc0419e2afeaf9cf23f3a9fc04ce5c1ce93ae089df765bf2107b
MD5 44f164f4cdf80e2cb394279af164a105
BLAKE2b-256 3ee8204baa0c943d87317412705c7974ba40f9a2ef149fdeb189634b9799d9b8

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-pp311-pypy311_pp73-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-pp311-pypy311_pp73-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 3ec8a55196c4859aba010ad8a1e6107afbeeffd9d175a2329788c1c866b79030
MD5 3ace5c76794385ea492150a237022a8a
BLAKE2b-256 2d3f64fce3ea032e5d2553819faa7a94c2b954014528e327fc0afcf5df1c9ef4

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 155792a500b9012a1208ee8b3b94765dbb3f5e0e9d70c35db067226dc7a50e7d
MD5 50ef62f20985fdd91067642525ff0ad3
BLAKE2b-256 8483f03f0eb34c9e626d92e33faee1990e9074935c9933d9ab16ce233e1a34ba

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07622e1c053a5375dbc39416aae1b010ed7d7212ccd3919a7357d3a6efcc19de
MD5 b115465a40c02d526a558fbf2318aa9a
BLAKE2b-256 6ab56167da2f448c5652357f3e0c03f2c86a642f2eb4b3ef43ce11ab01efe420

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-pp310-pypy310_pp73-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-pp310-pypy310_pp73-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 cd542d33833741e478c3b351f42230085e742606d96f0cde14ac0ebad84b925f
MD5 bb44e912d03ad014e8178ae4dc2fb12d
BLAKE2b-256 f9864efb5c318552babdfaa66bde6d3eb085d7af5d596aab66824f85dde2e1eb

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-pp310-pypy310_pp73-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-pp310-pypy310_pp73-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 0f891339291fcd4a22560729baee0a9fca34b24e0c24f69906d748a5a5b62f82
MD5 b41b616a22f22ace397408cb319f0a72
BLAKE2b-256 4447cc62291e39c48aa00280e87d844103e2bd8e69cc3e25a218d3d19d13a6ce

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1de63d2526a2a7c0f9a782de781e15d4e574a8702da490a4800bc969fdece2b
MD5 5fc40f0d5e8d893b4834ff8184ab2000
BLAKE2b-256 6c94d3166f9f5ebb04afe379bafd31d420c0859a694aac5c338f26aed679442d

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e749c16ca86aeae1033b415c4095b3b13097bbbae57d4bc37fa7092eeee51b99
MD5 1481be107bbf5ecd6d5fc5dcfd3703e8
BLAKE2b-256 309eda1bac4de6d0926dda351c27dd1741462bc54fd2a0f4606f56bd464d0351

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0467388eaa694fe24acda1900fe7c771202746faa213d73db44e1cd04104e853
MD5 9805b74c692c6fa3d909ae6230b59f84
BLAKE2b-256 e55d238d0a13d136090b17ee74a22943394eef8ae49211a5ee252055a878923c

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7e6028d59b51cb20a5d38f57226105b7ba374b7533252a329bc34c828d777f62
MD5 9760c855e06ed3f1ca6e95ab50216f5e
BLAKE2b-256 e847d79d582a0a375587db189912ff43e45df7ebdcf54087ab5e8fe6cee951fe

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1d0815ecfba3e71dd81791e2e604c26f14bac37e916754552ba443fac1859917
MD5 263924786121e0b104d225a350b19c92
BLAKE2b-256 288a3b5c4836681ed5d202d3c5a26026dbedda4e7a39885f778ea5abc6758a89

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 3c0faf2613eb21d461679a2385607467b1e1312ceeb963fac252084f1d08e82a
MD5 469d0fde200f387f9a8deb24e598dea6
BLAKE2b-256 3c055d7965d759c80e869b451a5cfb33682147af6726ec2fca7c555993173685

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5d0a8a89adcae8a741f2c900fb94cbe202afe5a6f9020c2d460e7ed33535ccc
MD5 ea0add7f64b9f01aed0a150727b07543
BLAKE2b-256 df66a21ab13fd63c5fe32eb5caa057956b3805e0d0a0577448ee197b5abb0406

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e660597d9ccedb35a1070a1c9fc6d6dbde65314d93ad9f5a479e3df909bc09c9
MD5 e0229f189e9e434ec21db69ea0d94da7
BLAKE2b-256 3893ff6e99968bdb74dd158cdf83a3eff573e0347b76ed1fbb3100f666fcac94

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ecec0bf780b163117a581f992cef9f76e4ca6b1099109c58b80e713eb783fd48
MD5 a1721e9c5079544405d8c3b656f9ad0c
BLAKE2b-256 4a2a8d8a4338ef338a9ed63ae1753d71f98793719589b5d9841452dbcd3ebc74

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1206a7dd85125323c27bac33844197c9098a899b81a136bed951190b56fad150
MD5 ede823f3914fcf798710c61eca17e434
BLAKE2b-256 8295182c5b8e218b1aaac0771d9a7175f489c3aa326ce375b4df9fdc27c43b21

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1f1372dac57b6fb7ffddd09983b0ceaefae48c2c3b71ee76417196a6a0320213
MD5 b875b21d05f8822488030fb6b15a513e
BLAKE2b-256 56ae84a96e651897919b6f8d58a0d5bf099e749feb4bf312db5e6c32ac5839ab

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 783069507cc657160eb5fbe5090e9099d4f0bf33f6c785d8cf10821921f8d98a
MD5 d1893d459f8c967dda2c9853029d1d2d
BLAKE2b-256 230e87c6cc8ae8c5c797763303126ae096b99cd7740e2aa36bf110e081a805ac

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 936bfd9bc2a3e0be98a94b3e9d28c1014c4596340450c35ef3eb4c82fa8c90b4
MD5 c7c95961adbdf34843058bc21215ee8a
BLAKE2b-256 97a96542c7906c9a440253dcfe86abab8412ad0623aadd5cdd0e8be0c8198e8f

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7ed331022c76c317197bd32a15982fa9c568ee07981bed7443aa96bac340f6cf
MD5 c6ec3ef575296612cee8a803c39bbc5f
BLAKE2b-256 041968dac8ad2360ba62c7c516a9102a1058abc8b1ae55d7791b4b9fc9b2f589

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f866dbd4b9b8e6d01e2f3518c0e3f5b16d2d60100772b98a1abae56c1818b85
MD5 99388e5bfc55f10ca533e7dcea573f67
BLAKE2b-256 bf695a710f1e875ea35600e5187c0a6a31be79f0010ed6253486a44d765af3f3

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2ff20378003cd27609f07e49be132d6344563820abad0b5b0b5e817743ae84c4
MD5 a123d56f7854840b57e062953ffdf5f0
BLAKE2b-256 fc1db5b039f08b891b5b444eacd66b4fe1c3f409c09da0d20a7de69db6d058f0

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 1972ee9527aed942101f1557c58769b913225f8143cfaa96fc59f12137f0f776
MD5 e31c65a93c2a629a6280213311ab1b7c
BLAKE2b-256 31460c3e84fe7143a55935e379242e41491b03cd686b4ba1786dcc9428db82bc

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 f6e30166a6d19d28a87254b38b298ecaa148b71c1ea1ec762f473b9aa38ed805
MD5 6715ed719011598b524610c2f65efe5f
BLAKE2b-256 dad91a7c2ae56358ce65bc4d2973d8a0c38cf66fff31c7c06d73a82873f5b172

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aaddaa3771b3ef4ea711989d230dcb4dbe0aa1a45a1b6472c539c8c469ead026
MD5 24ee473aef625a78dc14176c582d59be
BLAKE2b-256 b0851e90e2f71675818c2b579041ea4c6dc0c5e456c1485e7f9ece897d24798b

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 98410137afa651345d4f247476d2fa8e993b927345551a0f3a8deca94299fc51
MD5 19751e74a97eadd3c655763e2f76f5f0
BLAKE2b-256 134ea3741748c593ec3c91d248468e2d7cb919eb8284d52ec5256cbf460acf2f

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92fc6775c19bb48784686582e5404fee343b97586ade22240b174a0f0ccf35e0
MD5 66991fd716e65afbb8224fb3750a5c0c
BLAKE2b-256 e04d3958f27076f6b056ae557501714461480aaf4fef6d849756a32126974374

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e1eca6aac76272fdf22584e61af3eb639a0b2809bdd2d3ad4304516a62c3fce1
MD5 7b4fa00510104c18c18181daa8e5765f
BLAKE2b-256 321365c2e171539b8a16e0905193d13fb6dadaeb6c82af366af6e840e6055b22

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 afbef0cab010ba364e8815b78f6d2ed50fe9dd660243fa5811ec3b7aa59dd8a2
MD5 392cc6ec643bafe6aee06cef9a3fb69d
BLAKE2b-256 eb60aef8098e8504fe18bf0a82bb284bd5e5499db9d861b70f1e5de88639e4d4

See more details on using hashes here.

File details

Details for the file fastgl-0.1.8-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for fastgl-0.1.8-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 efe96105f2a5981412fde044a9ab00a6c7ad0feeaa2dde6977d3b915896e7d24
MD5 2b8ccf02d2da065b1d057d7bb56e5bdd
BLAKE2b-256 25b35093a79fa15b7ebe0fd967e2ed78f649499ba76f261ad83fa3049104ecee

See more details on using hashes here.

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