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.0.tar.gz (88.5 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.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (234.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fastgl-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (243.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

fastgl-0.1.0-pp311-pypy311_pp73-macosx_14_0_arm64.whl (126.2 kB view details)

Uploaded PyPymacOS 14.0+ ARM64

fastgl-0.1.0-pp311-pypy311_pp73-macosx_13_0_x86_64.whl (129.7 kB view details)

Uploaded PyPymacOS 13.0+ x86-64

fastgl-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (233.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

fastgl-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (242.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

fastgl-0.1.0-pp310-pypy310_pp73-macosx_14_0_arm64.whl (124.9 kB view details)

Uploaded PyPymacOS 14.0+ ARM64

fastgl-0.1.0-pp310-pypy310_pp73-macosx_13_0_x86_64.whl (128.5 kB view details)

Uploaded PyPymacOS 13.0+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

fastgl-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (234.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

fastgl-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (243.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

fastgl-0.1.0-cp313-cp313-macosx_14_0_arm64.whl (125.6 kB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

fastgl-0.1.0-cp313-cp313-macosx_13_0_x86_64.whl (129.5 kB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

fastgl-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (234.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fastgl-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (243.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

fastgl-0.1.0-cp312-cp312-macosx_14_0_arm64.whl (125.5 kB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

fastgl-0.1.0-cp312-cp312-macosx_13_0_x86_64.whl (129.4 kB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

fastgl-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (235.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fastgl-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (243.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

fastgl-0.1.0-cp311-cp311-macosx_14_0_arm64.whl (126.1 kB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

fastgl-0.1.0-cp311-cp311-macosx_13_0_x86_64.whl (129.7 kB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

fastgl-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (233.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fastgl-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (242.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

fastgl-0.1.0-cp310-cp310-macosx_14_0_arm64.whl (124.9 kB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

fastgl-0.1.0-cp310-cp310-macosx_13_0_x86_64.whl (128.6 kB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

File details

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

File metadata

  • Download URL: fastgl-0.1.0.tar.gz
  • Upload date:
  • Size: 88.5 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.0.tar.gz
Algorithm Hash digest
SHA256 cbfedf7e8a3b1c25011a0baa9193b30a578162dceb6688eb10e87fde2bda85b0
MD5 85f7e2ad4a505cb4c3e1d4b1db958d27
BLAKE2b-256 928510f61e2ebf160a74006edc67adb37a4a84509d587b109ac98a72fd067468

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6987d07deb091012a41a1ca1e87cd090ba12f8857a88cce95b9eac0ab6401139
MD5 eb97ee44c86d2c2c1108fab60eaffacb
BLAKE2b-256 3316f3a4f86d54ca5eea2e28004069920f8529923cd4228b0c4ca839b3cf7517

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 29e06029b74593b09a86ae7df87a10bf47b62ea1d861c782c7eba453aeb08ca5
MD5 a0b9254c3e9e063181afa80277becb17
BLAKE2b-256 beb03825e1e0060d425d4dcdcddba6c482949ef0e18c1e5150e27373ead78aba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-pp311-pypy311_pp73-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 68775ee3e1800cb656691efed4c9f1c65fdf0a278ab42773045c239aab444475
MD5 e6bbe0cfa5bb6d5c5543bda44566d0f8
BLAKE2b-256 2971d58be5d718090e041831adaa1a05569f3d6db7863a557808d380383a392e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-pp311-pypy311_pp73-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 085a55aead43ec4512d284ed0c73af202eef280c9da9141652c113f184c75345
MD5 74ad845ac7db79de7888b3517f032d23
BLAKE2b-256 892541e970f4ca6e52932088e13280971c636e3de3fee9ecb78d0c67850e3b15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73356397b70629b6bbd3507595e3b54a386c0246979ac89ddbaa50c59bd31eef
MD5 7cd2aec22d50908d172a4f8f7787d9b5
BLAKE2b-256 e2e1f08fe5022049a74762dc6abb666fb7256ec04b32611c17954a0252aaab3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1126ccdc10ed018271ea5f8a8d2031e541018256df2a4124ce29e88b1fa0b324
MD5 b31e7bedd7b044949075f1f59d0b065c
BLAKE2b-256 1af163009327cddc68829ffbcbdf92073048b934a00c82805b88b91e4f0e572e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-pp310-pypy310_pp73-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 f86b10255cb369833e451cdbbfe7d80dc908d5f66c3bdd8b4b46b3528c962c61
MD5 7d1fa2cc52c5a6b4fbcdfcc4e081ddbb
BLAKE2b-256 3dd021d4d806671363e9fd70909ad4a81def1b88378abbe5c0be6282f91a6375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-pp310-pypy310_pp73-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 7c492c97525c35b3b48f66bd70150f53348a879e15e7153acc9339a85f77e5b6
MD5 cbf08871353b83a46b4d0e60c37224a6
BLAKE2b-256 23d39940f488efef5d7b17c8aaef4afdbb2b2360a7efa4b6833efe9421989b48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8aded8a3ef13725176ed4eeb75d6a67c91c9673c297e46edd20e327cb3168dc
MD5 1ea02ff83e1c8068bb4601faada7708d
BLAKE2b-256 b0faeea79e492014825c947089cb5dd6f6eb9390612c1fd66e3240d1ddd3d97e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a08be2b0d803242a05a6e4ce8ee88e9a6f30f684fab605de100842a3287be063
MD5 8ac7ece216c676dbc0026d988cc14a89
BLAKE2b-256 ac871e9bf7feace6a7d369b7508e14ff8843bc0f02ea6d84bf2961b8ff3f1732

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4f2c0e1cf32a130b87885178e0cab61242731ec39c535509dc2c2bd890de7b5
MD5 367ac9989e38487c3bdadc8454b3c817
BLAKE2b-256 b9a5638facae59163e52f9d6898dd05b2a9c92e9bfdb700bd8eaad3945dbc36b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7d201bf920bdea2d8c98c6da577064b6838b233a89951225f3676203894b6403
MD5 1dd59a30cc359c36746310d94b8586e1
BLAKE2b-256 02ae6f62b0cca0d7ec5a2f450f4453563de42733be06838758e7af77c9315b70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 7b08bbfc91ec1110db3eba0cb9be4e6f4b6e68bfc1b32789ce468b29ef89ad37
MD5 e1d85ff4df0260be2242017cce7bfbd4
BLAKE2b-256 7e62f50a957127e99a31268ec50f8a42c8b13fe5e3641d35b0e9fdfb69ca520f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 ea0c35e4ed802dbe9975a7f96aa4b418021431c458d6a3a7f74389f1f88fdc0e
MD5 47473d9f7d1d992aca98b1be97dae44d
BLAKE2b-256 9746717f74961bc5b4ff00b8c4f848c37736febd5ccf2550d477857afeb7fa1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 623df119d0f3c7afb3e7ee2a0946e4ced414380ab8c0b33faa55b1d78f2b528e
MD5 10b1221ba1ba2f802019ffd094ae82cb
BLAKE2b-256 7b0a4c7f36e35e84c4577fc95e06bd33952105e3b326f661c7621cd42de75a80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce1932486e32bc81f9bd36251a3129c265be2c51bb0c6df40250b3bb7c37ef6a
MD5 1360f7999f4c05c7132ff219696e7ec5
BLAKE2b-256 1b5568905ffa34480d29b78b5181f3835bc99cf7d9977ec66278f8b5edffe70a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d86b084d19306b5f99cb34c189dde3b4fbc46c8478ddfac032b1aee43461f50
MD5 c7e7e3d75556107cda8f179864fb3c8b
BLAKE2b-256 e4c1c593abdc95769963d6bc9aca176d2b70c98c34114f5434f02296a95d75e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7af7745955f2a96f20cc9968fd4f9ef68f5e37be8b88ef9cacde7fcd11d22997
MD5 f0ca5e795313cff08d43e5968d10b4d8
BLAKE2b-256 f50882140c936adcd79e67492e768bc4eeec8641a1c46f52696bc1babe6d7f0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 275dc3c1b0dc53d4b3ba1790422ef8c8a1218e1667369ec92e6a03ff5ded8544
MD5 311b9fc433e32990480cf2e53e48871e
BLAKE2b-256 b05e4755ca23c4fa127b6ed13642a66bb01e9f46b53880601e6e7a01faa7509c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9bccae4e7d01def83dbc76636514ec85772a549299429d9d161b0846477d81bb
MD5 7d9b032fa2668e73b74ad99a65a707c0
BLAKE2b-256 92aa9c14908481e82e1b81955d8db3a5d01d2f691d0b94c1efed15aaeab6d8a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 faa02b0cb004953369afbd101d24631c6235252933b4be66cb564d2d448ecd4d
MD5 0f20f764e21f16d71a7dfc36c9fb455a
BLAKE2b-256 7836cf1b42bb18445565abd0c2032b27617517fd651c003048526e38769d03f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2078ec38370a4cdb75d236fd1ba37a3527d057a1ba17edc8aac08c4ebf1ae25b
MD5 23e0317d49d14a8b8fdb93522530356f
BLAKE2b-256 019087e2bb6f863903960b577d6ad8b5adc59f3e4aed0462c20d4134f660ddc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ddacf94ff203a22009a648350899f8573898a678eaacada26545d02cee024a4
MD5 f6442325b815122dc5aec0a1c07e3430
BLAKE2b-256 395d7d354f80baa72a8694b35e6b027b7aaa0fa3f0d32c5cfa89f4c09100d6df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ec4a9939685bef65088eb0ae14f454a45599fe8888be98b51a7869da843e5973
MD5 44c3109ccbc259f35550c2391b1518a4
BLAKE2b-256 b7dabcbef5cb73cc5b9357d44042279f90935ec27df00ae503baf31569635d12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 35ba180fa333b0eb9983b08e51df1eff85dd23182a115915f000fe0871254044
MD5 81d250b8272b2316944ea635b087a7b8
BLAKE2b-256 065148c8a021b8b4990528ac0a81e23df9782f6af7d67447cdd158fd29fbac93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 54be0a05ca0befa5526aa125ba105b97f801a359955b82a949226bc42369afdb
MD5 2c280aa3bf791c2bfa034c6f3ab7af79
BLAKE2b-256 d8458d88727876de74dd2b97a051146a870e23d2ccf1df17a3aefa133f0411bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf05c56db666c2f51e50a6d3cc6732563522edac700e4f223f99d76a022ce46f
MD5 a796fdf31be3d0b5ee3ef1f41e3567ec
BLAKE2b-256 73628a6192972f9f5300360501ca55ed95980719f124df9d6a2a5695c62003db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ead66391b973e3c14e9d1afff73f3d15c3f6b252f6b3284226c25da93fbfeeec
MD5 d21c5befdc9b9ac3f6bd5385381d8de7
BLAKE2b-256 4d50974212859928723c03bbaef9b9521f0a2a5d6af2881dcdad05ea873cc572

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b91f54feb5fce18e4114c95ca75ca50f4b8069d368ee94cf1f6bdd800b02828
MD5 02a1da8886cfc514b588f7da7d40fc15
BLAKE2b-256 e74c76b168a145647e49dad9d135132ae371f8fc4ff0ea6af2d6a07e7e726fc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b4dff12651f2013f19fbcc9c5a5b1912c11b7cf12ea8542936931c26f53fcf9d
MD5 ad4efb22af8314fd95f07be2f2839a25
BLAKE2b-256 070fe1205007d4970aa9891effc0d4c5e676e0734bd5dddda6cce57a73990935

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 0853bc7fd4d9e2316bbfeaf1a8ed060942a96d76f56c04a7ce3f0333fee52179
MD5 730b791b9050aeede28a9751d5f33909
BLAKE2b-256 b2234f61c1e5be76bd89e3d5e0d98422262b5d72f8c5daf49891f060c0c7f6af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fastgl-0.1.0-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 8e62ee7466efa1d3f792ae230bd5722039cb5c4004b599d074deff5c70eca35c
MD5 fc12807f9b40e2a74eaa482aa4a21f2c
BLAKE2b-256 259c49d028115d496edb6a643b9127c2162dbeaa67b802b33d75ecdf1b266195

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