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.3.tar.gz (88.7 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.3-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.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (243.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

fastgl-0.1.3-pp311-pypy311_pp73-macosx_14_0_arm64.whl (1.3 MB view details)

Uploaded PyPymacOS 14.0+ ARM64

fastgl-0.1.3-pp311-pypy311_pp73-macosx_13_0_x86_64.whl (1.4 MB view details)

Uploaded PyPymacOS 13.0+ x86-64

fastgl-0.1.3-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.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (242.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

fastgl-0.1.3-pp310-pypy310_pp73-macosx_14_0_arm64.whl (1.3 MB view details)

Uploaded PyPymacOS 14.0+ ARM64

fastgl-0.1.3-pp310-pypy310_pp73-macosx_13_0_x86_64.whl (1.4 MB view details)

Uploaded PyPymacOS 13.0+ x86-64

fastgl-0.1.3-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.3-cp313-cp313-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

fastgl-0.1.3-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.3-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.3-cp313-cp313-macosx_14_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

fastgl-0.1.3-cp313-cp313-macosx_13_0_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

fastgl-0.1.3-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.3-cp312-cp312-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fastgl-0.1.3-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.3-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.3-cp312-cp312-macosx_14_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

fastgl-0.1.3-cp312-cp312-macosx_13_0_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

fastgl-0.1.3-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.3-cp311-cp311-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fastgl-0.1.3-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.3-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.3-cp311-cp311-macosx_14_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

fastgl-0.1.3-cp311-cp311-macosx_13_0_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

fastgl-0.1.3-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.3-cp310-cp310-musllinux_1_2_i686.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fastgl-0.1.3-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.3-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.3-cp310-cp310-macosx_14_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

fastgl-0.1.3-cp310-cp310-macosx_13_0_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

File details

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

File metadata

  • Download URL: fastgl-0.1.3.tar.gz
  • Upload date:
  • Size: 88.7 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.3.tar.gz
Algorithm Hash digest
SHA256 514ae2fa99ebb8d76dddff273ca5c722aa5e101ab49e520eb6aa8203a034410a
MD5 d4a88d19ac733f47c3fb1f4f53247c1b
BLAKE2b-256 28fc5efcb1e1bfcf3ed7d79763408e1ec1c55d990ed8821630becce2c7b1412a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 277e762c6d4275bb6d968eccc628bd7b499a1717a69be7f755ebe8e42ac48414
MD5 a12416bab31a613f5d6e3ce5b42d1387
BLAKE2b-256 7aebfe4a298181548d1d16303e7019bdde70d6afd118f3be165277b292a174e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d16f44e36169bbe5bc89f2d7c09d4d57c4531ba4e4ff28c54eb32813798dccc6
MD5 73bdfc17cbbcb86116c253e5b45c565c
BLAKE2b-256 c4687e9848fff9c499d9fe05be4032b3b7b697fef6af22dd63130d3859135e0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-pp311-pypy311_pp73-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 ba74f00ca8284d4ad1b6e7a1e29ddb03efd479028459017b70df1d892e60daab
MD5 6e8a41bec2301f48fb6806bd3d7ba8cb
BLAKE2b-256 2505c8ce94cfa2e4931c1ddb6b1941b830fa663cb5710c6a91e22bb099a6d510

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-pp311-pypy311_pp73-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e5389109f38175190c1defa8d3e257cbe9543a10ce074ba24f3cc5a16c0d5515
MD5 97e112cc7123cd8bc65ec918de686bfb
BLAKE2b-256 2089ea531faceaf84c19867330c50d2c8b952dbfed8c50109f1132266d46da22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 060177cbe8c53251cc2d18826e0d41c3b5106abea524ba97ee62a5de10dfd04e
MD5 38db69f768e92a41513f0f2eadd406e2
BLAKE2b-256 be35b9053eabd0ef2db4c6220dd7e0936df52e6f5c28b8613d6fff6e41a65a6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7d27cbecc3a782d2017d5d2b622908f88c55f80a49503fe887282a6eb664b3f9
MD5 804f1dd9988ce92bebc7b4748feaece0
BLAKE2b-256 e5ceafd51af66dec833ea139999d870e07f70120fb55770552e95c2452146eb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-pp310-pypy310_pp73-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f65ac1d8721111a28b548587474bd7e51686ad5d965974c862c24eeadb3ef43e
MD5 6fd7ed97487c04aa3c605ef742d66c6e
BLAKE2b-256 88c4e3a080e5d6defdc7b5c7aff2077db5ac20156d6254a4f5b472e21b714c4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-pp310-pypy310_pp73-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 0e35515414c5c897cc678381cf8a80fd85550f4685701ef02ae3149b68766994
MD5 ee07746fd161aeaca96dfd9d3a747dab
BLAKE2b-256 72c13d6d3fa019a0e5291f2677604fcf8a5175c94fe88ba82101f24c2228888e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79c951625cc4b67d13b9c0e20bc1058de9f49494292d66f03c32eaeeadd67470
MD5 aa2cd9f6bfb5f2494b4a90d7544ed5d8
BLAKE2b-256 938f349740dc4b147fe6cdf7d27fb3b558e465ed5e8265ff4566d7d49d0cde11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dcef8e9893219c40b620e2eec2e73e43e440da7faf276538964859c4dc08ed53
MD5 979e17f23c1590b466811cc60a32db3d
BLAKE2b-256 139d9b7807a7a67c1dba6fe20ac4f44a12e60693423850cdb64814a188e78c44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79e851957c977a40bba83db0c9e9b967ebb6309c4c0dfebe2ef3c37337cd4df0
MD5 6d466d98daa24cc41f7d8a9a2d116524
BLAKE2b-256 1c0f13ff8de8251a4a37eb96b6659522f0a6d316458f808c0979c400dd03ac2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a914d73430ac9092f3bdab2fcfa6cf0173d4b1ea631049d4a05f0ab77f2c848
MD5 0040d37f018810decd6424195eed0e25
BLAKE2b-256 0b72e12eb2a8fb98d6416b4eefc56e510f6207a84c3c4bf463910e221c8200e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 cb669097b52a5acae9b49d0dcf738a9e18dd0cf0b542b98553e62f8e12b5cbda
MD5 77082c680551a218111190340a193eb7
BLAKE2b-256 1b6de1ff47a9ad08e10795d069f5e119e442b6f1565c1cedf68ed3f82bd742de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 23e6bfaed70ce15c096d8e9cee07a87af868c577fb33e533beed1078610411a1
MD5 472b3f4628436b67bd69b86c931da22c
BLAKE2b-256 c7922367787bbaecc560f6aa0055dba5aee27324ecfe77003caf49279bb38313

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b49186442aebcfa45a6c8541986925ab078f3833a337da6a2c4f09b202cdf47
MD5 45210321660c65e7034277571b5f19e5
BLAKE2b-256 025fc43bf50910b7f1051ae486ad8bdd7240aaa2733d7a650d87f6f83a2891f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b585218a4016e5fa83681759ec73415e967344f45f56d85d811102ebb6fb2034
MD5 5d5329075585b474afe69496c0677709
BLAKE2b-256 220993c1b73e5a9500b570ff16b71e4c1372bc07e15b26607387ca5a94e07cee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eebfdd6da48456696c3a8af18011705fb69c1d72c65c4068722532eb3eeaf01c
MD5 b89dca9f53189a5cfe57eaf2f2f3a122
BLAKE2b-256 3f2618c2bb6649a903a808a28bcfc5bb6714413b21b739d468a1fcdd3e67b991

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e299016382166c54e6447fa2381120fbac433bc1b02aefbdd0b5470718388753
MD5 42d87167d394a2f8ecf37aa9a4f55d46
BLAKE2b-256 e8bd8cd1dcd13daf5ae2b2a2697655e9b693e50bee12f8957c6f0fb323feae2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 5ed0973ecbba3163440ed8f91a2125407930e7720d5d5d7d325465d3369ec790
MD5 778969f3e9c2306ab2a3bb6d9ea6c279
BLAKE2b-256 67ad256685360fc1c11c144f2044d08b106438c95a5164ff9860bac251e511bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ccc1cbc9bd52ba55d76b89df8de67ff74143391069622ea85ff395117090a60d
MD5 29b75fa45d17bc4a84815f54fed118d0
BLAKE2b-256 a479a5dffd1bdfd94724737d24454f4930b75696d74a1cb84d57d9e6d957b71c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89d2e2cbe1f876053ae88ae22b468f816ac7cf44d88bddaceee1e2bb7e5a2c99
MD5 37207675cfb9477d084501bbe25f2152
BLAKE2b-256 fbf3f041c9fe2feb165e1090deb9fd747c75762f796549c8fee2df6cbe31dd96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d5d309930e9eef7509bc15d862e807c570d933e6c1ed2b734c66c1b94e5c9933
MD5 5271318b5a6139e766467d1885679b9f
BLAKE2b-256 b64938eb42835192041f18e6995a648dba713f86157d367f2acbe33df20becaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b05c5cf1a79a426a8563aca1f4aa8dd7acfb08b3ad46103225084f879138fc41
MD5 1a47dd128a95c54da1a0440ed933c382
BLAKE2b-256 a67cd723459a62fcc4095b77fc792696ef96a62e286d23dbd38cdc4af67eba9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6aa0c2e66421c37d89f0538ffbfc80e200820211689b55d6ffcb19f18aeb0df2
MD5 7a68bc894f365e4251223aa86f093312
BLAKE2b-256 5be8fe3876591618f7dd8b735b045e20491331bfe9dd0568912629c737a0996c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 4acab57dc5034930bf3eda161ca36d33ae04dcd0d2c35df862d5a57adb57b5eb
MD5 7c412f55dd77522750d1b2c2e3e827b8
BLAKE2b-256 d3c69251b0095762faa4cebabba5dc855e5256cde6b4fc91de563394cbf232e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 7c45ad21c8633712465a104f69c090bf8ed89bf80909573de554cf463ad8a49b
MD5 f71cee0eb51bd34da421ff3b3e0a1c76
BLAKE2b-256 d21d371715b622c75ad4b0780ad53212fc0a5b5a92dab4388209200dc3d60797

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4fdf497e0bec2023be18c56ddad66b1d798ea9d15ef3eb46b24681ffe15db8e
MD5 e309f03a19ec8f98bae62172a6a96eb5
BLAKE2b-256 622bb23a6d49c4348c5005db5b1c3279d8ec59ffe6b9f0decebb8822b7d4d808

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 648b524f8bea85352939f31f692dab9a370c0351a55c0b9657a830dd0eaba900
MD5 4d9a998c54005e6601608690ae14c9e1
BLAKE2b-256 d8245bfd56fc2519c51c76f1fe0fa8e517639f9b6fb0c86b2a35ca19d956ee44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d565a01e020d1fbdf846a7469744112590601ef648b8de2631ca6937c62baa5a
MD5 9ad29f2f048992c168eaf65452bd0791
BLAKE2b-256 4f65ede0cef11413f26a7683cf2ecc3e7c2bc04f8fc32197b09120c64678cef8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 33a71a03cb1a871331f730d87a1d274975ef491d50dda0218ad9ad5241a20a67
MD5 2d1a35d4c017c97b15639fc27fbbff6b
BLAKE2b-256 d0570982c175cd36e416fbf5d4cbdf9b2abaa5821e9245ddd4e281faf4a8dfb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 d7f61718076fbf21abc2e602abdf4789d4248294901417e0def72057ecf148ff
MD5 c0354a79ada39a56d155cd914991891d
BLAKE2b-256 4ae0066e8b0dd5f0783360d7d833fbdd9238e1bd2d80fd4541a83ca57920d694

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.3-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 3efa9d5b0158f19a3fa01c0121c311df5e84d65d2b359c53ff302a867a3dcd53
MD5 90dd20f577fd8d2cd89861e44fed6ad1
BLAKE2b-256 6a2375480abaf1fc0e91cbdfecf4efba110acc5f5f67c266501e2106d8d022be

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