Skip to main content

FabIO is an I/O library for images produced by 2D X-ray detectors and written in Python

Project description

pyFAI: Fast Azimuthal Integration in Python
===========================================

Main development website: https://github.com/silx-kit/pyFAI

|Github Actions| |Appveyor Status| |myBinder Launcher| |RTD docs| |Zenodo DOI|

PyFAI is an azimuthal integration library that tries to be fast (as fast as C
and even more using OpenCL and GPU).
It is based on histogramming of the 2theta/Q positions of each (center of)
pixel weighted by the intensity of each pixel, but parallel version uses a
SparseMatrix-DenseVector multiplication.
Neighboring output bins get also a contribution of pixels next to the border
thanks to pixel splitting.
Finally pyFAI provides also tools to calibrate the experimental setup using Debye-Scherrer
rings of a reference compound.

References
----------

* The philosophy of pyFAI is described in the proceedings of SRI2012: https://doi.org/10.1088/1742-6596/425/20/202012
* Implementation in parallel is described in the proceedings of EPDIC13: https://doi.org/10.1017/S0885715613000924
* Benchmarks and optimization procedure is described in the proceedings of EuroSciPy2014: https://doi.org/10.48550/arXiv.1412.6367
* Calibration procedures are described in J. Synch. Radiation 2020: https://doi.org/10.1107/S1600577520000776

Installation
------------

With PIP
........

As most Python packages, pyFAI is available via PIP::

pip install pyFAI[gui]

It is advised to run this in a vitural environment.
Provide the *--user* to perform an installation local to your user (not recommended).
Under UNIX, you may have to run the command via *sudo* to gain root access an
perform a system wide installation (neither recommended).


With conda
..........

pyFAI is also available via conda::

conda install pyfai -c conda-forge

To install conda please see either `conda <https://conda.io/docs/install/quick.html>`_ or `Anaconda <https://www.continuum.io/downloads>`_.

From source code
................

The latest release of pyFAI can be downloaded from
`Github <https://github.com/silx-kit/pyFAI/archive/main.zip>`_.
Presently the source code has been distributed as a zip package.
Download it one and unpack it::

unzip pyFAI-main.zip

As developement is also done on Github,
`development branch is also available <https://github.com/silx-kit/pyFAI/archive/main.zip>`_

All files are unpacked into the directory pyFAI-main::

cd pyFAI-main

Build it & test it::

python3 run_tests.py

For its tests, pyFAI downloads test images from the internet.
Depending on your network connection and your local network configuration,
you may have to setup a proxy configuration like this (no more needed at ESRF)::

export http_proxy=http://proxy.site.org:3128

Finally, install pyFAI in the virtualenv after testing it::

pip install --upgrade .

The newest development version can also be obtained by checking out from the git
repository::

git clone https://github.com/silx-kit/pyFAI.git
cd pyFAI
pip install --upgrade .

If you want pyFAI to make use of your graphic card, please install
`pyopencl <http://mathema.tician.de/software/pyopencl>`_

Documentation
-------------

Documentation can be build using this command and Sphinx (installed on your computer)::

python3 build-doc.py


Dependencies
------------

Python 3.7, ... 3.10 are well tested and officially supported.
For full functionality of pyFAI the following modules need to be installed.

* ``numpy`` - http://www.numpy.org
* ``scipy`` - http://www.scipy.org
* ``matplotlib`` - http://matplotlib.sourceforge.net/
* ``fabio`` - http://sourceforge.net/projects/fable/files/fabio/
* ``h5py`` - http://www.h5py.org/
* ``pyopencl`` - http://mathema.tician.de/software/pyopencl/
* ``pyqt5`` - http://www.riverbankcomputing.co.uk/software/pyqt/intro
* ``silx`` - http://www.silx.org
* ``numexpr`` - https://github.com/pydata/numexpr

Those dependencies can simply be installed by::

pip install -r requirements.txt


Ubuntu and Debian-like Linux distributions
------------------------------------------

To use pyFAI on Ubuntu/Debian the needed python modules
can be installed either through the Synaptic Package Manager
(found in System -> Administration)
or using apt-get on from the command line in a terminal::

sudo apt-get install pyfai

The extra Ubuntu packages needed are:

* ``python3-numpy``
* ``python3-scipy``
* ``python3-matplotlib``
* ``python3-dev``
* ``python3-fabio``
* ``python3-pyopencl``
* ``python3-pyqt5``
* ``python3-silx``
* ``python3-numexpr``

using apt-get these can be installed as::

sudo apt-get build-dep pyfai

MacOSX
------

One needs to install `Python` (>=3.7) and `Xcode` prior to start installing pyFAI.
The compiled extension will use only one core due to the limitation of the compiler.
OpenCL is hence greately adviced on Apple systems.
Then install the missing dependencies with `pip`::

pip install -r requirements.txt


Windows
-------

Under Windows, one needs to install `Python` (>=3.7) and the Visual Studio C++ compiler.
Then install the missing dependencies with `pip`::

pip install -r requirements.txt

Getting help
------------

A mailing-list, pyfai@esrf.fr, is available to get help on the program and how to use it.
One needs to subscribe by sending an email to sympa@esrf.fr with a subject "subscribe pyfai".


Maintainers
-----------

* Jérôme Kieffer (ESRF)

Contributors
------------

* Valentin Valls (ESRF)
* Frédéric-Emmanuel Picca (Soleil)
* Thomas Vincent (ESRF)
* Dimitris Karkoulis (ESRF)
* Aurore Deschildre (ESRF)
* Giannis Ashiotis (ESRF)
* Zubair Nawaz (Sesame)
* Jon Wright (ESRF)
* Amund Hov (ESRF)
* Dodogerstlin @github
* Gunthard Benecke (Desy)
* Gero Flucke (Desy)

Indirect contributors (ideas...)
--------------------------------

* Peter Boesecke
* Manuel Sánchez del Río
* Vicente Armando Solé
* Brian Pauw
* Veijo Honkimaki

.. |Github Actions| image:: https://github.com/silx-kit/pyFAI/actions/workflows/python-package.yml/badge.svg
.. |Appveyor Status| image:: https://ci.appveyor.com/api/projects/status/github/silx-kit/pyfai?svg=true
:target: https://ci.appveyor.com/project/ESRF/pyfai
.. |myBinder Launcher| image:: https://mybinder.org/badge_logo.svg
:target: https://mybinder.org/v2/gh/silx-kit/pyFAI/main?filepath=binder%2Findex.ipynb
.. |RTD docs| image:: https://readthedocs.org/projects/pyFAI/badge/?version=main
:alt: Documentation Status
:scale: 100%
:target: https://pyfai.readthedocs.io/en/main/?badge=main
.. |Zenodo DOI| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.832896.svg
:target: https://doi.org/10.5281/zenodo.832896

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

pyfai-2023.1.0.tar.gz (43.8 MB view details)

Uploaded Source

Built Distributions

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

pyfai-2023.1.0-cp311-cp311-win_amd64.whl (17.1 MB view details)

Uploaded CPython 3.11Windows x86-64

pyfai-2023.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyfai-2023.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pyfai-2023.1.0-cp311-cp311-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyfai-2023.1.0-cp311-cp311-macosx_10_15_x86_64.whl (16.1 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

pyfai-2023.1.0-cp310-cp310-win_amd64.whl (17.4 MB view details)

Uploaded CPython 3.10Windows x86-64

pyfai-2023.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyfai-2023.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pyfai-2023.1.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ x86-64

pyfai-2023.1.0-cp310-cp310-macosx_11_0_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

pyfai-2023.1.0-cp310-cp310-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyfai-2023.1.0-cp310-cp310-macosx_10_15_x86_64.whl (16.1 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

pyfai-2023.1.0-cp39-cp39-win_amd64.whl (17.3 MB view details)

Uploaded CPython 3.9Windows x86-64

pyfai-2023.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyfai-2023.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pyfai-2023.1.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

pyfai-2023.1.0-cp39-cp39-macosx_11_0_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ x86-64

pyfai-2023.1.0-cp39-cp39-macosx_11_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyfai-2023.1.0-cp39-cp39-macosx_10_15_x86_64.whl (16.5 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

pyfai-2023.1.0-cp38-cp38-win_amd64.whl (17.2 MB view details)

Uploaded CPython 3.8Windows x86-64

pyfai-2023.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyfai-2023.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pyfai-2023.1.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

pyfai-2023.1.0-cp38-cp38-macosx_11_0_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.8macOS 11.0+ x86-64

pyfai-2023.1.0-cp38-cp38-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pyfai-2023.1.0-cp38-cp38-macosx_10_15_x86_64.whl (16.1 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

pyfai-2023.1.0-cp37-cp37m-win_amd64.whl (16.8 MB view details)

Uploaded CPython 3.7mWindows x86-64

pyfai-2023.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pyfai-2023.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

pyfai-2023.1.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

pyfai-2023.1.0-cp37-cp37m-macosx_10_16_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.7mmacOS 10.16+ x86-64

File details

Details for the file pyfai-2023.1.0.tar.gz.

File metadata

  • Download URL: pyfai-2023.1.0.tar.gz
  • Upload date:
  • Size: 43.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.5

File hashes

Hashes for pyfai-2023.1.0.tar.gz
Algorithm Hash digest
SHA256 56620c769d3f8e53667992019540443ea71bb236ed095efc90b8c91afb6bef66
MD5 d8a8ee4a8efb7acdef167f395fde0c04
BLAKE2b-256 d720a97fb81ca7b1520c7cd856725f6a894c1b543b82553517f7efae64f1ba11

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyfai-2023.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 17.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.5

File hashes

Hashes for pyfai-2023.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0c55949b937601415dba074e2a36af6eec83004a90345d90ce7b5a81013635d3
MD5 7fce5c301c22a11c2a55c5c15ba5615e
BLAKE2b-256 39c8e03d524c9bb969e54f1b42ac6cedbf7fde8e82ea243778e1fafb8e46e357

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fbbd09563311131134521b977e0d9e4cc26fa2aab55bb2ae71b35e089a6d8f4
MD5 c6c75b912802946f3011c1c550611709
BLAKE2b-256 be415c579bd1af15017f005bd830e94f8ed199608cd1c681cb0d4dc66871d444

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 21f95808c4a9982cb2a5933477b3ca25440b2d174761fd4c6f4e2d4241ce3cf2
MD5 a6b6b0afe79e64c5668529fbeb180599
BLAKE2b-256 7b36a5a5c7277fd1b68e5d1d20de19c666e353cb6bf392c8dce13080bd51815c

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d0bf3c985544501a8cb0e733ca194ab709b50a147ca399ca4acfbec3eba5507
MD5 da24a8eab94aa9c1751c0a892fb06b58
BLAKE2b-256 bd4bd2ffbe653e1fb1728664de03bafbd49d89fbaa542fb4034ac66c5e90924e

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e257380f11fc5b2efe4991c4c94eef8d85617b0abc928e9f574ae91cd239abf3
MD5 a7a0e85f269acc73b21a5afb862643af
BLAKE2b-256 b962e82fb5082e25ca98aa5f0c61bafa5965ab01a3d2c1ccc66d534115552d72

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyfai-2023.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 17.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.5

File hashes

Hashes for pyfai-2023.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0ea2a3d9199a0b4c0ed225e467ab6cc35396cfec850f5561b678aa7cef387eac
MD5 be2f22cbb04e0c7c11278c2258601d12
BLAKE2b-256 37e44e1ec52a07317b7a1b8836fd3d26abfba2cc0c6ce6ea0b6ba6c1564489d4

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3684ac95b02902c4cbfb492462a8a43d3ac72485712d43afe2edd87c1a72d4f
MD5 04ca0a1addfdd3aea3addc3c26abf372
BLAKE2b-256 30b0d15803002b7c988362b91ddf93c709937ce9386a77aba2f03ce9e342e880

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f31cd09d2ae8631b593dd27b50ac3f190687b1538be3570bfea6182b6217f56e
MD5 cecdf62150a7bfda273aed6c91ae3888
BLAKE2b-256 a694a0090b180aeb7a3a2e818aa0cf1ecbdcd3760822fe98afbf480d7ff0a5bf

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d2654b2ddab013917b5a2fd62c17fa47d8dfcd4d456340402eb9f733fb26dc20
MD5 94db8ea318e487d3cf50ed80baf5d582
BLAKE2b-256 869767ac721ef149fcc231235a3ee9c4aba42c14be43b4d8f6bb0eb38770663e

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 f3f35ee1daa616a80674ef46b99523424427d26db7ccc05866ff1e1f559206ed
MD5 9e595c5ad7a9d9efe60242251e52bd4b
BLAKE2b-256 b8432b23d1b4c380d05b3cd7f59cb72eec6fe615d81ae27ff8bdca2e13169d84

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a33f9226217ae87487d1e93471139a26663f519f93a08ab5a86dc3e60f2b69c5
MD5 f3f27022c9c2dfc70a455df4131a4f38
BLAKE2b-256 80bb3073e6ed9eaadb5ee944999bc61c724bde80329c833d8d380a18915c7fd6

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3b7385f6caa3b95137d1cf5e1b175006443f4acc9e2787bd039e35a6cf875d92
MD5 e220f5f81107e4f10d164abd0bacdcc1
BLAKE2b-256 b7d4e71ce29ac79b5ffa24a4842c898536a3277f71312bdfe0e470d115dcf862

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyfai-2023.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 17.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.5

File hashes

Hashes for pyfai-2023.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 05e78d7eec27178c0909cf7abedb912232090c28708564f8a5f32d4c36f975c9
MD5 0400331e9c06a7088fec968dd9813796
BLAKE2b-256 1c88abe4d5b0b15f2375753b2b5d16ba09583f17a8d55f993384a2803f032877

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1462c7a6b9b972dfa5010b80e551c002bc6fa176ea7e45333aee23b3038cfed3
MD5 28f2b0d90e8d9e5444ba0fa6fd2e4e1c
BLAKE2b-256 d976c712eafa55328db9e2a502f9f8ab7a2fe546207e0798dd44442082197bf4

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d96cbb52ce1770dd1bda08958e050767bf5282ba30b99c366465842e6a8e1c3c
MD5 3e13ed6801544f3e5e944f68ccb8a422
BLAKE2b-256 10092c11f031e8a5c5539b68c1f60515a8043efe006dc2020ff4fa5d288abf11

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e9a739aee10871e47181927f1ec4c441767244de9e3e3f96416fff3caf04d662
MD5 edb0eaedfb4b06536ea911614bf7352d
BLAKE2b-256 d9ce89cf0e48bb821adf932550e9e5139a75278cfe4c9673b0e867b19b3ad6a3

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 35360d0744934eaaed135831e75420b5e63af63efca2638326b363b7a09d69f2
MD5 540005e37cb1ada53792f8b539723408
BLAKE2b-256 ea4974e841b36d2014c685b6a139568a6362e3ddf39ea2269e867a2ad49ce373

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 872a9d15664779ad82e5ae660e28bdfbba460b46b4a42c8d1e885425c21c3b4b
MD5 bc5a7fe3de1970986c29bed3d237fb8f
BLAKE2b-256 dc71354815e0739b095427f1cc1dc6a2d87a6a7a310ecef5f225bf939570dcff

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 95176eafe68c05d76dba4958c8b72363a9bd135c990fb5a6bb5e9d3972100ff3
MD5 e29c8ad7c855e144cb965ca1612b5d7c
BLAKE2b-256 481325e4442b3a293b17120599983c615ffc81b130be0a1a0c3464897e4ad960

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyfai-2023.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 17.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.5

File hashes

Hashes for pyfai-2023.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e93858fa1fa90121178f38c4cbe63ba3ec50dedfc981592eccb0b8d1b1cd4111
MD5 19f61c6c820f3e9047a3add0ff04fdbe
BLAKE2b-256 cafe94349de159e51731f3641a7a17f5845b49ce144d622aee53de1aff3bbd21

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e009adb24586731d3cf01d9ab12474e06167a68ac2f6f83cefe1eb32213a5ea
MD5 601d3cd1394dac5c40114bfbe53a8392
BLAKE2b-256 26e0cbf8c4d4d2393117452a0df1587db4ab3be7c28f1ca06fdbbb338ceef87c

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 14098c1124bff20ae886f121c2e753be838dbb089aef09309f9653dac2b4878e
MD5 8cfee4118e621f8f568619a01819d223
BLAKE2b-256 f412ee2ea6f4928855c8d92c45f852c03523e4f2be13b5204e16250523e3fb55

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cc47251431deeae28f8b73fbdd0b3a25bd3148f598904b4415268412d07cdc48
MD5 0d55ce8dd21badada5e11c8acf358509
BLAKE2b-256 d1aed13a83f2bcfb83819557102107ea73486498a18eaadbf529081646a93e54

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp38-cp38-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp38-cp38-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 07080d9ffdb8aa81424b576f636a646b741dad89a472f6328831dcfc7828879d
MD5 f59f876de3bcecdab11435706fe3b35c
BLAKE2b-256 d85d9908d012733d5f6284f7b6cbbafcbf2f54f0484d78271c1896fb61b68bf8

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0f501fef7055fb22f06b3a968e00ae2acb9a1f1a85779bbf11b007405a51436
MD5 6667ae3a84a389e9110001a612985911
BLAKE2b-256 4f22dadb5b8831942a9521480278dcd1ca97d9b0df77f2076ef57e577377dc07

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9766840a7de4f2a0bb3d6c72e21f074909ce0de369a80b4eff2f15f75303b786
MD5 3985b64470110b4e42a2c8ed5d681578
BLAKE2b-256 3607c9ead0753ba935062817aac4ea284b6d46237f5a8086e54734648b936787

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyfai-2023.1.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.5

File hashes

Hashes for pyfai-2023.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f83a5602f61a960e4b08e96db9692d74b07b1da426ab4a624b2cf93259e3d65e
MD5 9a212f998615f344d041a72b2a5666e8
BLAKE2b-256 c01fe62f6f9ff319d807add5713b44c34065972ca989b5cd2623f2c0229f659d

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7534d40691e84ec9ee16d8d2a821a9e2c8bc691c0de90153c834e9ef41cf4d7c
MD5 f25f208239c5de6d419f23f8d9c19a04
BLAKE2b-256 f4add49c1ccddbd5191e840f70e9b18038cb9c3218c6804d94b77f2362a3023f

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 35cad6a4b0aeba4f83c7df0dab061a57a57ad6549b1252254cbb7a5c8d96fcca
MD5 c9bd16c2ca17a17ec5a45c95403a6f6c
BLAKE2b-256 3ed48b3a7b675a97c83019a1d63ac11e50787b6feeaa53fcfd378f81ceba694b

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3a0afa73c60630bd89dd73ae8582667a99f759ac461d9796717cc2e52fa8e147
MD5 b3ea5c3ac5c0060e1dcd09311305cd35
BLAKE2b-256 0ede1ce9a4ab49666a03f9ee50122463722b52511ff4233eb182731adfb7396a

See more details on using hashes here.

File details

Details for the file pyfai-2023.1.0-cp37-cp37m-macosx_10_16_x86_64.whl.

File metadata

File hashes

Hashes for pyfai-2023.1.0-cp37-cp37m-macosx_10_16_x86_64.whl
Algorithm Hash digest
SHA256 4faaf0530564bf9fdb338322d78f55fb8b7bc9c6038c84afde4d44f5805c748f
MD5 6d5b992eff54aa5807149d80ae7726d3
BLAKE2b-256 7892c81156f44691f908cf0d5e34a7c03149c61dba35bd441f95d69fb0d81e5b

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