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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymacOS 14.0+ ARM64

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

Uploaded PyPymacOS 13.0+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymacOS 14.0+ ARM64

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

Uploaded PyPymacOS 13.0+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13macOS 14.0+ ARM64

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

Uploaded CPython 3.13macOS 13.0+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12macOS 14.0+ ARM64

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

Uploaded CPython 3.12macOS 13.0+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11macOS 14.0+ ARM64

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

Uploaded CPython 3.11macOS 13.0+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10macOS 14.0+ ARM64

fastgl-0.1.4-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.4.tar.gz.

File metadata

  • Download URL: fastgl-0.1.4.tar.gz
  • Upload date:
  • Size: 88.9 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.4.tar.gz
Algorithm Hash digest
SHA256 664f72b50cff42ad4c23f0bb0254f278c31d54dbe5fd35764170940d6edc12aa
MD5 87fd9c11e07cb5da98f416b5632afd25
BLAKE2b-256 525afc89fef865c37441fd3007b5c85a3c267be458032f065e41fe14ec1c8a41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b5525865f614777610047bde62f6f0c90aebdd3d66725ec9d30fdc8d78d3067
MD5 f043d66eaa54a65b512b9c2e3a086c11
BLAKE2b-256 cf66b1fe4698b23fb14216080fe3e8a6222b11c6c72406bd89b50e0c27592805

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bfc8dec47c449afa54b453c30009fd951532260f6a4d4e439b641064074c715
MD5 8fca58df8f7eb23fa4091d82f34231be
BLAKE2b-256 885bf53b07b53c6ca562cf17ac47a253971397519692e0041d092c95dd2a87af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-pp311-pypy311_pp73-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 856fc989b2b4c087f9687d95e0d3a2b02aba17acd244f69cfbd2b657d2dcd825
MD5 9e09d6e0befa9fa04f514b16a2c739ba
BLAKE2b-256 c9cc543fbeb57b82047dd2be5f088f48c2e88bc47696b04d6c5aa6ff15053bb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-pp311-pypy311_pp73-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 18755d43b3768fb48c330783221bc16a68b798b6ae869b34c1b21d452a89cdb4
MD5 dfbf90b62d9d30b62493f479b20da14e
BLAKE2b-256 4cd436edd0310a17cd7074317b1bc355d8e4cfff6689c919c5ecdd22d7b6a4d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 543cff5c85322938958d6a46cc14dbe1c0a564f8eaf9d76940daa22f4ce0113e
MD5 606416fd29362433887d45f1c62af116
BLAKE2b-256 2e601cba504d0b92c6e5e097027b321e54891cb895cd743a6444d399d1dd3f28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6a4fcd640b4b6c0e211c99b6cf3ffc38a88640655d78132a6b6c342aff35ff55
MD5 8f698c54bc584567830a8baa236b0632
BLAKE2b-256 0eed36dd2ec0ae08e02e3a2e91f364e5ba5c21e11c2b6f0c0c7c21d5573c90f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-pp310-pypy310_pp73-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0a63c1d6cc614a6b02244072b79d48ca6f12cfb084069f68b3dc968b7ffa52e4
MD5 2b9218d00ba5b798eb7f7df89833bcb0
BLAKE2b-256 09338f695fdb3ce3cb714555fde59795efe410dc8003ee6b5b170370dac1e54f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-pp310-pypy310_pp73-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 91d97aeabf137118b1b0aa8eb0e97a9b239c850f6cf19c20f492295ecce293f3
MD5 231e022e97c68088c4a5e6d14895f96e
BLAKE2b-256 de4979af30175e0bd23f9cf3edd5b02b6bd406fc18b3c531696be62cf55b35a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34e0c3ee2df05c14729e676dc89969600ce3f2723dcf8bedbf2759f09f7e7225
MD5 151fb81a560d0af9842be31026f85e1f
BLAKE2b-256 e3299bbebade9ae98c1c3c52ad0f0632f52863d958c473a6d12f0a385c819e84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6420329b5dd5e308c18359645efbb55280993e6299f7cc258a0d6c99c1e5e41f
MD5 611be16ea9b39a1d6d74e4ca4e4ec2fc
BLAKE2b-256 51fb41db5af70bffdfa0b902aba533574b2be35833641012841eb3b2c42b8cf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79e8fb20e40c519829927607a3a02f1b5e89e67855197974bce70071dcb132e2
MD5 ee9d2b80baf5f1157b54e7a0b8aa724d
BLAKE2b-256 0a5bec17bf70cde9e9388b4703378c612fbe451ee3d3c972ae6647365cb082ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 948f4071a6e31956b35a67ad94cc816a237ca023cdb2e193081b1b64ac585a4a
MD5 cc42e644e868ba280089136e9bfc0687
BLAKE2b-256 491dff2170821c4869d854ae6ef4bd3c1e1906dcd452ae234f1ab5ea9df7a766

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 d0f7dd29eeeeb955413a5059b6aac1569a0e890d987292c980a3f113fc957a11
MD5 caa60d3a07de1b8e006beb39f82602d8
BLAKE2b-256 ba3b44f8365a7c6be69c49c9c80958f9e2a40e947d1d10ad699dbba79bd47eb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 db13d0113ee25eaf7ba541b44c7b37d44dc05cfeb749c819ec69adb3a4ec862a
MD5 6fe14ad111885f63d44853a60a391f72
BLAKE2b-256 f21502dc84854b1b47ad45bbe7acb5cd7787d8baba40adfd399ca8dab6f131a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a67a2420b45e59b94e92b662d998c375e189e1657e8ae7052ffe34f253140df2
MD5 2563d8e5f107b8a12076c5ed1aa83266
BLAKE2b-256 97b047b94e2c9d74d9be43c0af372701c3e0baeb03d6590433b61684566c8ba0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2ce00b6b1121745aafb5f0b5b01ffc9c339db75c2e5e1d4c8a34305372279859
MD5 830366ebbd513c5ab481a36149878004
BLAKE2b-256 26dc482f26fb425fde42452103626e935dd08432b7c96fafb5bd1c1fd981337d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8dec0b2c103786e6bf1f53c17cde66462d609f3287b4960ec9c6778ed6e79749
MD5 4573eb9200ba873927d37449c9213a4e
BLAKE2b-256 a91a1ee6317f9f65fada9c02e176e09f7ba18ebca3f30ee9aef5ae9b7272be61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 61cdaad10db5eab086acaabaebe4e50ed4f836ef09512f8645abf3034bec2cf1
MD5 351137baaad7344c07408380a2a83343
BLAKE2b-256 cde432b584e8f2034f7205a88fc3c09bdc1b5f328d279cb643317e8c01249eab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 7157f1f89628301570ba79324d512de3bb24a526b1b9f68a44786e214872ef0d
MD5 5f44349a321875bb5cf4639d6cbc363b
BLAKE2b-256 0cb6b57d6d0d1c02c30cf7fc2be0dcefab4c8482a3ef4bc3577c73ac9f66cd92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 11f88f054f07687fe17a1d40dff5b38b4c08a6ef4b2a9ad982604d93dc2eb423
MD5 e30bba09c9da712f13934d8544f7a7ea
BLAKE2b-256 604cbb5217537f8ac3ce8e6ad0a974f2ff6cbe70e12d2ba288ca29982c8a1453

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69b9b58853d183b4fd0285404e9cb163dbf8b905aad2952a4c1f4b77bbae4f9b
MD5 f3acdae7f24c6063e531137ca1dd669a
BLAKE2b-256 fc80379b607ced9701fbe03fc3da1baefcac80857c373cd3737449050904a1fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 61d6e7ab8f3b7173d862656534ae88ea77c317079356dc5b6f8daaf38c7c6384
MD5 786edbb83b31fff0a5064f380d0d6c45
BLAKE2b-256 4e4c532d300c0d1de15bdc7617bdc27372edaa27d8fb29cf0e4deb1dcf4ed589

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1075e5e190637856d851ae8fb858c9e692ca03f2eeda3b38fd1716f412b6b311
MD5 7c64574331735d633244b338e337a89f
BLAKE2b-256 d49853dc97699cbb2acce8b17ae3a1b7d1454765b69139f26753f7cfd11ad86a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ff4868880c77ba3b46945e8190fdf004d31eb13b72ea7a4dd90c5832e3e13952
MD5 1297f7d3d5acf698d8a428b0ad6f4c66
BLAKE2b-256 388c587b6dc541101dc8be6891eef2390e49225c2a4ede419d9cb928f5b00f48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3c4ade0603562064f4b1196c16db24c5de2f6cd78d4edc5b8de6bc2467763198
MD5 bd3d58ff40748991b4aa85d0fc3615e9
BLAKE2b-256 00ffb47c30a59b143701e7a161b23aa4961b0468de3f3e31ace8052d5090ee74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e2ae7ccfeb6a1dfe4f51b2c66e3ebd84c297cf5ad6df312a10a32399fe82b139
MD5 4c683c89917ba527fe4a10170805a2e6
BLAKE2b-256 34b591438f727cbd0bb5661265c8506108d9cef3c1e6c4220ebc4af53125dc9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 adc4b985f271158e487ff418ff891c8d08c4594cd84b89547c70e6753c8dd3c4
MD5 6694d0329463a437a73922f4ac68ebe1
BLAKE2b-256 660321237fc4b79ce87aedac9a62a46a135a38225d9c74353b4e5cc6da05a061

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 919906cfeb310534a2f94877837b2b89662b1e7abca7c5176b84368718a90a91
MD5 d85771cfa696da76d369aa70909670e9
BLAKE2b-256 852c3b2265fcb956e241037b3a48125d149d2d7347c1c1dea546a7a1dedb4a89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eec29793c8840fc789bb424090e02759c1f58d81a9d3ddad0b514de6bd91394e
MD5 3764c6df2b1d285bafdb07070d896bf4
BLAKE2b-256 51e13bcbae82b749eddc5a1926ffedf55841c2b008d180c93cf962d823dde25d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1246456c23629a6e7b4156ae8a5368402049fc79e73454c1592affe58c87493f
MD5 e42497f3082ad8422c73aec0ce26224b
BLAKE2b-256 1dbca1d704e4a543b3d25060420ad7d03be70f917ad1bd627095f696b4819578

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c5d9413841bdc4ee431b96e225d8ed067b98aa8c2a174bff8ba5087fc06939fe
MD5 abd01ef179a2eb4d9b3ff5755f686fe3
BLAKE2b-256 6d9e0a471615c551d2c648dbcebfc35f9b817b99f9d1683a566ef7621f825141

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.4-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ed1a743de18a66ddc7d289e57fa511cc05a5e60f62e59cf7f4316cb7bd5d9076
MD5 9669ed97a1abb7f8e7f67a12dfbe01f1
BLAKE2b-256 2234708bf29d9e5f4591abaa5b8d49e2694e2e3302cd77de9255a23d1664d110

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