pyFAI


NamepyFAI JSON
Version 2024.2.0 PyPI version JSON
download
home_pagehttp://www.silx.org
SummaryPython implementation of fast azimuthal integration
upload_time2024-02-01 16:28:45
maintainer
docs_urlNone
authorGael Goret, Brian Pauw
requires_python>=3.7
licenseFormat: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: pyfai Source: https://github.com/silx-kit/pyFAI Files-Excluded: pyFAI/third_party/_local Files: * Copyright: 2011-2017 European Synchrotron Radiation Facility License: MIT/X11 (BSD like) Files: package/debian?/* Copyright: 2012-2014 Jerome Kieffer <jerome.kieffer@esrf.fr> 2013-2016 Picca Frédéric-Emmanuel <picca@debian.org> 2015-2016 European Synchrotron Radiation Facility License: GPL-3.0+ Files: pyFAI/resources/openCL/bitonic.cl openCL/bsort.cl Copyright: Matthew Scarpino License: public-domain Files: doc/source/mathjax.py Copyright: 2007-2013 by the Sphinx team License: BSD-3 Files: pyFAI/third_party/transformation.py Copyright: 2006-2018, Christoph Gohlke, University of California License: BSD-3 License: BSD-3 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the <organization> nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: GPL-3.0+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/> . On Debian systems, the complete text of the GNU General Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". License: public-domain You can use this free for any purpose. It's in the public domain. It has no warranty License: MIT/X11 (BSD like) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords
VCS
bugtrack_url
requirements wheel meson-python ninja numpy cython fabio scipy matplotlib numexpr h5py silx PyOpenGL PyQt5 hdf5plugin nbsphinx
Travis-CI
coveralls test coverage No coveralls.
            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)::

    pip install -r requirements.txt
    python3 build-doc.py


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

Python 3.7, ... 3.11 are well tested and officially supported.
For python 3.12, it requires silx version 2 which is still unreleased for now.
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
------------

* Edgar Gutierrez Fernandez (ESRF)
* Valentin Valls (ESRF)
* Frédéric-Emmanuel Picca (Soleil)
* Thomas Vincent (ESRF)
* Dimitris Karkoulis (Formerly ESRF)
* Aurore Deschildre (Formerly ESRF)
* Giannis Ashiotis (Formerly ESRF)
* Zubair Nawaz (Formerly Sesame)
* Jon Wright (ESRF)
* Amund Hov (Formerly 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

            

Raw data

            {
    "_id": null,
    "home_page": "http://www.silx.org",
    "name": "pyFAI",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "",
    "author": "Gael Goret, Brian Pauw",
    "author_email": "J\u00e9r\u00f4me Kieffer <jerome.kieffer@esrf.fr>, Edgar Gutierrez Fernandez <edgar.gutierrez-fernandez@esrf.fr>, Valentin Valls <valentin.valls@esrf.fr>, Jonathan P. Wright <wright@esrf.fr>",
    "download_url": "https://files.pythonhosted.org/packages/cb/a4/ff03aab0dec00b912cb98d226a33973fba41115377eefda00ccfafc16dee/pyfai-2024.2.0.tar.gz",
    "platform": null,
    "description": "pyFAI: Fast Azimuthal Integration in Python\n===========================================\n\nMain development website: https://github.com/silx-kit/pyFAI\n\n|Github Actions| |Appveyor Status| |myBinder Launcher| |RTD docs| |Zenodo DOI|\n\nPyFAI is an azimuthal integration library that tries to be fast (as fast as C\nand even more using OpenCL and GPU).\nIt is based on histogramming of the 2theta/Q positions of each (center of)\npixel weighted by the intensity of each pixel, but parallel version uses a\nSparseMatrix-DenseVector multiplication.\nNeighboring output bins get also a contribution of pixels next to the border\nthanks to pixel splitting.\nFinally pyFAI provides also tools to calibrate the experimental setup using Debye-Scherrer\nrings of a reference compound.\n\nReferences\n----------\n\n* The philosophy of pyFAI is described in the proceedings of SRI2012: https://doi.org/10.1088/1742-6596/425/20/202012\n* Implementation in parallel is described in the proceedings of EPDIC13: https://doi.org/10.1017/S0885715613000924\n* Benchmarks and optimization procedure is described in the proceedings of EuroSciPy2014: https://doi.org/10.48550/arXiv.1412.6367\n* Calibration procedures are described in J. Synch. Radiation 2020: https://doi.org/10.1107/S1600577520000776\n\nInstallation\n------------\n\nWith PIP\n........\n\nAs most Python packages, pyFAI is available via PIP::\n\n   pip install pyFAI[gui]\n\nIt is advised to run this in a vitural environment.\nProvide the *--user* to perform an installation local to your user (not recommended).\nUnder UNIX, you may have to run the command via *sudo* to gain root access an\nperform a system wide installation (neither recommended).\n\n\nWith conda\n..........\n\npyFAI is also available via conda::\n\n  conda install pyfai -c conda-forge\n\nTo install conda please see either `conda <https://conda.io/docs/install/quick.html>`_ or `Anaconda <https://www.continuum.io/downloads>`_.\n\nFrom source code\n................\n\nThe latest release of pyFAI can be downloaded from\n`Github <https://github.com/silx-kit/pyFAI/archive/main.zip>`_.\nPresently the source code has been distributed as a zip package.\nDownload it one and unpack it::\n\n    unzip pyFAI-main.zip\n\nAs developement is also done on Github,\n`development branch is also available <https://github.com/silx-kit/pyFAI/archive/main.zip>`_\n\nAll files are unpacked into the directory pyFAI-main::\n\n    cd pyFAI-main\n\nBuild it & test it::\n\n    python3 run_tests.py\n\nFor its tests, pyFAI downloads test images from the internet.\nDepending on your network connection and your local network configuration,\nyou may have to setup a proxy configuration like this (no more needed at ESRF)::\n\n   export http_proxy=http://proxy.site.org:3128\n\nFinally, install pyFAI in the virtualenv after testing it::\n\n    pip install --upgrade .\n\nThe newest development version can also be obtained by checking out from the git\nrepository::\n\n    git clone https://github.com/silx-kit/pyFAI.git\n    cd pyFAI\n    pip install --upgrade .\n\nIf you want pyFAI to make use of your graphic card, please install\n`pyopencl <http://mathema.tician.de/software/pyopencl>`_\n\nDocumentation\n-------------\n\nDocumentation can be build using this command and Sphinx (installed on your computer)::\n\n    pip install -r requirements.txt\n    python3 build-doc.py\n\n\nDependencies\n------------\n\nPython 3.7, ... 3.11 are well tested and officially supported.\nFor python 3.12, it requires silx version 2 which is still unreleased for now.\nFor full functionality of pyFAI the following modules need to be installed.\n\n* ``numpy``      - http://www.numpy.org\n* ``scipy`` \t - http://www.scipy.org\n* ``matplotlib`` - http://matplotlib.sourceforge.net/\n* ``fabio`` \t - http://sourceforge.net/projects/fable/files/fabio/\n* ``h5py``\t     - http://www.h5py.org/\n* ``pyopencl``\t - http://mathema.tician.de/software/pyopencl/\n* ``pyqt5``\t     - http://www.riverbankcomputing.co.uk/software/pyqt/intro\n* ``silx``       - http://www.silx.org\n* ``numexpr``    - https://github.com/pydata/numexpr\n\nThose dependencies can simply be installed by::\n\n   pip install -r requirements.txt\n\n\nUbuntu and Debian-like Linux distributions\n------------------------------------------\n\nTo use pyFAI on Ubuntu/Debian the needed python modules\ncan be installed either through the Synaptic Package Manager\n(found in System -> Administration)\nor using apt-get on from the command line in a terminal::\n\n   sudo apt-get install pyfai\n\nThe extra Ubuntu packages needed are:\n\n* ``python3-numpy``\n* ``python3-scipy``\n* ``python3-matplotlib``\n* ``python3-dev``\n* ``python3-fabio``\n* ``python3-pyopencl``\n* ``python3-pyqt5``\n* ``python3-silx``\n* ``python3-numexpr``\n\nusing apt-get these can be installed as::\n\n    sudo apt-get build-dep pyfai\n\nMacOSX\n------\n\nOne needs to install `Python` (>=3.7) and `Xcode` prior to start installing pyFAI.\nThe compiled extension will use only one core due to the limitation of the compiler.\nOpenCL is hence greately adviced on Apple systems.\nThen install the missing dependencies with `pip`::\n\n   pip install -r requirements.txt\n\n\nWindows\n-------\n\nUnder Windows, one needs to install `Python` (>=3.7) and the Visual Studio C++ compiler.\nThen install the missing dependencies with `pip`::\n\n   pip install  -r requirements.txt\n\nGetting help\n------------\n\nA mailing-list, pyfai@esrf.fr, is available to get help on the program and how to use it.\nOne needs to subscribe by sending an email to sympa@esrf.fr with a subject \"subscribe pyfai\".\n\n\nMaintainers\n-----------\n\n* J\u00e9r\u00f4me Kieffer (ESRF)\n\nContributors\n------------\n\n* Edgar Gutierrez Fernandez (ESRF)\n* Valentin Valls (ESRF)\n* Fr\u00e9d\u00e9ric-Emmanuel Picca (Soleil)\n* Thomas Vincent (ESRF)\n* Dimitris Karkoulis (Formerly ESRF)\n* Aurore Deschildre (Formerly ESRF)\n* Giannis Ashiotis (Formerly ESRF)\n* Zubair Nawaz (Formerly Sesame)\n* Jon Wright (ESRF)\n* Amund Hov (Formerly ESRF)\n* Dodogerstlin @github\n* Gunthard Benecke (Desy)\n* Gero Flucke (Desy)\n\nIndirect contributors (ideas...)\n--------------------------------\n\n* Peter Boesecke\n* Manuel S\u00e1nchez del R\u00edo\n* Vicente Armando Sol\u00e9\n* Brian Pauw\n* Veijo Honkimaki\n\n.. |Github Actions| image:: https://github.com/silx-kit/pyFAI/actions/workflows/python-package.yml/badge.svg\n.. |Appveyor Status| image:: https://ci.appveyor.com/api/projects/status/github/silx-kit/pyfai?svg=true\n   :target: https://ci.appveyor.com/project/ESRF/pyfai\n.. |myBinder Launcher| image:: https://mybinder.org/badge_logo.svg\n   :target: https://mybinder.org/v2/gh/silx-kit/pyFAI/main?filepath=binder%2Findex.ipynb\n.. |RTD docs| image:: https://readthedocs.org/projects/pyFAI/badge/?version=main\n    :alt: Documentation Status\n    :scale: 100%\n    :target: https://pyfai.readthedocs.io/en/main/?badge=main\n.. |Zenodo DOI| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.832896.svg\n   :target: https://doi.org/10.5281/zenodo.832896\n",
    "bugtrack_url": null,
    "license": "Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: pyfai Source: https://github.com/silx-kit/pyFAI Files-Excluded: pyFAI/third_party/_local  Files: * Copyright: 2011-2017 European Synchrotron Radiation Facility License: MIT/X11 (BSD like)  Files: package/debian?/* Copyright: 2012-2014 Jerome Kieffer <jerome.kieffer@esrf.fr> 2013-2016 Picca Fr\u00e9d\u00e9ric-Emmanuel <picca@debian.org> 2015-2016 European Synchrotron Radiation Facility License: GPL-3.0+  Files: pyFAI/resources/openCL/bitonic.cl openCL/bsort.cl Copyright: Matthew Scarpino License: public-domain  Files: doc/source/mathjax.py Copyright: 2007-2013 by the Sphinx team License: BSD-3  Files: pyFAI/third_party/transformation.py Copyright: 2006-2018, Christoph Gohlke, University of California License: BSD-3   License: BSD-3 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the <organization> nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.  License: GPL-3.0+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/> . On Debian systems, the complete text of the GNU General Public License version 3 can be found in \"/usr/share/common-licenses/GPL-3\".  License: public-domain You can use this free for any purpose. It's in the public domain. It has no warranty  License: MIT/X11 (BSD like) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "Python implementation of fast azimuthal integration",
    "version": "2024.2.0",
    "project_urls": {
        "Documentation": "http://www.silx.org/doc/pyFAI/latest/",
        "Download": "https://github.com/silx-kit/pyFAI/releases",
        "Homepage": "http://www.silx.org",
        "Source": "https://github.com/silx-kit/pyFAI",
        "Tracker": "https://github.com/silx-kit/pyFAI/issues"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2cdb54913212271d706e868d0c12241cb0aa084a52d29fd6ec4f5a772fc1920a",
                "md5": "782b3af6d4a222ee4130c4eb29b29d21",
                "sha256": "cd84cac53c3213c01bc35b6708262dd60e889e349486cb2d0f78a78e3a12c5c0"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp310-cp310-macosx_10_9_arm64.whl",
            "has_sig": false,
            "md5_digest": "782b3af6d4a222ee4130c4eb29b29d21",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5251960,
            "upload_time": "2024-02-01T16:26:27",
            "upload_time_iso_8601": "2024-02-01T16:26:27.584839Z",
            "url": "https://files.pythonhosted.org/packages/2c/db/54913212271d706e868d0c12241cb0aa084a52d29fd6ec4f5a772fc1920a/pyfai-2024.2.0-cp310-cp310-macosx_10_9_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4581f7034684d73b00566a7b1393c4571f1fa679f6ca0b5d9f27203c06637401",
                "md5": "439214ecf78a370729beb19179b7bef7",
                "sha256": "088851ebcd1e753bf6e3a7a7ce3878475f7474e370925feb54dfc41c2804c896"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "439214ecf78a370729beb19179b7bef7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5547955,
            "upload_time": "2024-02-01T16:26:31",
            "upload_time_iso_8601": "2024-02-01T16:26:31.234630Z",
            "url": "https://files.pythonhosted.org/packages/45/81/f7034684d73b00566a7b1393c4571f1fa679f6ca0b5d9f27203c06637401/pyfai-2024.2.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9aa51fd6bcc36c9875decc29a077b99cda5329a3d1a734b0c4e487dc5d1dea44",
                "md5": "232f72b6061f834739bc52e8bd445b4b",
                "sha256": "6db0ff3135fe39d3a21b15a738a7fdde62d0d1c3bca096bbf9596ce3166d751c"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "232f72b6061f834739bc52e8bd445b4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5246683,
            "upload_time": "2024-02-01T16:26:33",
            "upload_time_iso_8601": "2024-02-01T16:26:33.924566Z",
            "url": "https://files.pythonhosted.org/packages/9a/a5/1fd6bcc36c9875decc29a077b99cda5329a3d1a734b0c4e487dc5d1dea44/pyfai-2024.2.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2a877c566bfaa7da7e7347f4eeb1c134ed24bdc367b260d3b5d25e50ee72a446",
                "md5": "a0f69b7ba474227651070f10e803be97",
                "sha256": "ec310d9b9b619d3b9ba3006b9b32d7c4ec6185f1dc352da4d26e122d42f78629"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a0f69b7ba474227651070f10e803be97",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 6582607,
            "upload_time": "2024-02-01T16:26:37",
            "upload_time_iso_8601": "2024-02-01T16:26:37.599255Z",
            "url": "https://files.pythonhosted.org/packages/2a/87/7c566bfaa7da7e7347f4eeb1c134ed24bdc367b260d3b5d25e50ee72a446/pyfai-2024.2.0-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "baa45ed370d8f52e656509193a52897723da37270eea6aa234d3724a8c873f19",
                "md5": "a60c8c2355d96ce14441e347658700bb",
                "sha256": "abffa58e5adda3ae3fe42aa253ba37054ccb01488a78e1ac8143c58287f97a41"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "a60c8c2355d96ce14441e347658700bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 7140897,
            "upload_time": "2024-02-01T16:26:41",
            "upload_time_iso_8601": "2024-02-01T16:26:41.493731Z",
            "url": "https://files.pythonhosted.org/packages/ba/a4/5ed370d8f52e656509193a52897723da37270eea6aa234d3724a8c873f19/pyfai-2024.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "be1566a04876ca1b179019db4647ff0c465e7dc77d804b9f1a9486ddf7d7e292",
                "md5": "79ef76f6ba128c575ea58505453bc795",
                "sha256": "3b678812a6a93d9111d661feba9c1aba845a6eeb39c5911d2a7271940403d2a7"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "79ef76f6ba128c575ea58505453bc795",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 6993888,
            "upload_time": "2024-02-01T16:26:45",
            "upload_time_iso_8601": "2024-02-01T16:26:45.130398Z",
            "url": "https://files.pythonhosted.org/packages/be/15/66a04876ca1b179019db4647ff0c465e7dc77d804b9f1a9486ddf7d7e292/pyfai-2024.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06229d8ca7dad81661876bff97b714f18c690b89bf0fc79977bd19d066de038d",
                "md5": "095d2eeceed31f2c813b684387ae01bf",
                "sha256": "8bdb0e9c7e0086981981c58f285f351dff25d90e1137726fe6f79870b2c9369e"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "095d2eeceed31f2c813b684387ae01bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5748289,
            "upload_time": "2024-02-01T16:26:48",
            "upload_time_iso_8601": "2024-02-01T16:26:48.645851Z",
            "url": "https://files.pythonhosted.org/packages/06/22/9d8ca7dad81661876bff97b714f18c690b89bf0fc79977bd19d066de038d/pyfai-2024.2.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f1c467eec99baf7fced5b9220c4e199f38058dfca2bf560b8c6db5bc5a533d41",
                "md5": "02ae06973130046a49c04a31600ec3af",
                "sha256": "1284abd5cc858641fd51670adce4f898ccefed752fa0a570948b6867cebabcae"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp311-cp311-macosx_10_9_arm64.whl",
            "has_sig": false,
            "md5_digest": "02ae06973130046a49c04a31600ec3af",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5253340,
            "upload_time": "2024-02-01T16:26:52",
            "upload_time_iso_8601": "2024-02-01T16:26:52.510268Z",
            "url": "https://files.pythonhosted.org/packages/f1/c4/67eec99baf7fced5b9220c4e199f38058dfca2bf560b8c6db5bc5a533d41/pyfai-2024.2.0-cp311-cp311-macosx_10_9_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "677122bbbdb52cd092428bcb95ee07921d48e5be1be49edc9b28ee43e43a7ca6",
                "md5": "8642038142c430de2e1ee4031e1b8c86",
                "sha256": "b409307aba0eb90a041fca2e636cfcea8f5b6d642b2578678f7a7294ab403df0"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8642038142c430de2e1ee4031e1b8c86",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5876864,
            "upload_time": "2024-02-01T16:26:55",
            "upload_time_iso_8601": "2024-02-01T16:26:55.990797Z",
            "url": "https://files.pythonhosted.org/packages/67/71/22bbbdb52cd092428bcb95ee07921d48e5be1be49edc9b28ee43e43a7ca6/pyfai-2024.2.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "271cc9e68a410bd955ddfa1cf93f93d493d71dfa8cca9c78a95078144a07415a",
                "md5": "95a83913865051ba21f8c0876a1aaf68",
                "sha256": "9c78718c7f6153030e11f9e58ca375a090952a47b2475262d6346657e6434561"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "95a83913865051ba21f8c0876a1aaf68",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5247851,
            "upload_time": "2024-02-01T16:26:59",
            "upload_time_iso_8601": "2024-02-01T16:26:59.189545Z",
            "url": "https://files.pythonhosted.org/packages/27/1c/c9e68a410bd955ddfa1cf93f93d493d71dfa8cca9c78a95078144a07415a/pyfai-2024.2.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eda89cd3fcd0e6b9dae60d7a3ffdff80c7074b23e221befbee3093ed990f8cfd",
                "md5": "1e4a451ef2d4cddf886ad166378be40c",
                "sha256": "1e3b44c345bdbeed28106aed8c1bf648fe10fdd3df2a7d97a892b8cb67124f27"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1e4a451ef2d4cddf886ad166378be40c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 7147964,
            "upload_time": "2024-02-01T16:27:03",
            "upload_time_iso_8601": "2024-02-01T16:27:03.550871Z",
            "url": "https://files.pythonhosted.org/packages/ed/a8/9cd3fcd0e6b9dae60d7a3ffdff80c7074b23e221befbee3093ed990f8cfd/pyfai-2024.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "98e0ebe230505139d25cb0ce36bb1b2cf3fb832ffbc09f356dddc1654fa8c8ec",
                "md5": "51cb10f08456bdd9117d9ad4a11cad0f",
                "sha256": "f7be06b71d422a6bb59a6f927816a10de3b95cd0752a81f4fd848f107ff4a177"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "51cb10f08456bdd9117d9ad4a11cad0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 6936295,
            "upload_time": "2024-02-01T16:27:07",
            "upload_time_iso_8601": "2024-02-01T16:27:07.136738Z",
            "url": "https://files.pythonhosted.org/packages/98/e0/ebe230505139d25cb0ce36bb1b2cf3fb832ffbc09f356dddc1654fa8c8ec/pyfai-2024.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f89a2991c4f3859314f6083d0bbf300b16e224963845c110e1bf508c6672aa28",
                "md5": "afe6937644213f02eb877397fd21fb8c",
                "sha256": "742a20cbd882dc029b405bb568334c6a2933222127dc0abab9ea74d72a243c90"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "afe6937644213f02eb877397fd21fb8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5773628,
            "upload_time": "2024-02-01T16:27:10",
            "upload_time_iso_8601": "2024-02-01T16:27:10.665214Z",
            "url": "https://files.pythonhosted.org/packages/f8/9a/2991c4f3859314f6083d0bbf300b16e224963845c110e1bf508c6672aa28/pyfai-2024.2.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54cd5b428d613275b2dbd756e731f09c67aafc9d7c00249a5ab3b49899711827",
                "md5": "8ba8beb12e54ba9e9507e3b04da77946",
                "sha256": "63dce8d02d9679be1798d8c59baf29aeb9b2de9374583bf93f7b66a851ee417d"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8ba8beb12e54ba9e9507e3b04da77946",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 5782223,
            "upload_time": "2024-02-01T16:27:14",
            "upload_time_iso_8601": "2024-02-01T16:27:14.428495Z",
            "url": "https://files.pythonhosted.org/packages/54/cd/5b428d613275b2dbd756e731f09c67aafc9d7c00249a5ab3b49899711827/pyfai-2024.2.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a157afecaeb24ac46e156c369e72ff5c64dd13654e14885d365b90a159ca229",
                "md5": "e6a416ba29f998b5ffa28a35c32a5363",
                "sha256": "027e24f420358613cfef6d9df69c9d4863f5a7d5122f96868dd86a205bd8af0c"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e6a416ba29f998b5ffa28a35c32a5363",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 5210157,
            "upload_time": "2024-02-01T16:27:18",
            "upload_time_iso_8601": "2024-02-01T16:27:18.048820Z",
            "url": "https://files.pythonhosted.org/packages/1a/15/7afecaeb24ac46e156c369e72ff5c64dd13654e14885d365b90a159ca229/pyfai-2024.2.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1889d58f77512a1f24f54167206dfe1c5844eb18fdfc34cf21431ca385088b83",
                "md5": "fa692b2155e8c41059353755fe35f7ad",
                "sha256": "fbd4375ed84962575399ef2a165dedc3c7862d84a6da99375b483d2c8ce1c5a0"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fa692b2155e8c41059353755fe35f7ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 6643840,
            "upload_time": "2024-02-01T16:27:21",
            "upload_time_iso_8601": "2024-02-01T16:27:21.562892Z",
            "url": "https://files.pythonhosted.org/packages/18/89/d58f77512a1f24f54167206dfe1c5844eb18fdfc34cf21431ca385088b83/pyfai-2024.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "62628143703854d00931b99ccd0cfa08141c7537c4423de214755ab2921a5432",
                "md5": "9431498b0587d0e3a02c938370035c25",
                "sha256": "615f196e3312c9918566798b38a3d7619dae1f0cba7dae237a0eeebf710103cd"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9431498b0587d0e3a02c938370035c25",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 5139223,
            "upload_time": "2024-02-01T16:27:25",
            "upload_time_iso_8601": "2024-02-01T16:27:25.105039Z",
            "url": "https://files.pythonhosted.org/packages/62/62/8143703854d00931b99ccd0cfa08141c7537c4423de214755ab2921a5432/pyfai-2024.2.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb7dabcc1ee322d86fa433f64e5440f866ba3c6e3e39c6194485d7caaf4bc487",
                "md5": "ef3c66fbe5c0491a4f9197f34eeac2f6",
                "sha256": "31a9a53d786fc0b711475f4de8ab20d639de9ac3bee7e66efb4037ec01cf8b8f"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ef3c66fbe5c0491a4f9197f34eeac2f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 5458296,
            "upload_time": "2024-02-01T16:27:28",
            "upload_time_iso_8601": "2024-02-01T16:27:28.168243Z",
            "url": "https://files.pythonhosted.org/packages/cb/7d/abcc1ee322d86fa433f64e5440f866ba3c6e3e39c6194485d7caaf4bc487/pyfai-2024.2.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3fbf18b0c4d06184745d1691750309361018e7a86628aa6519bf56af3fcfdb40",
                "md5": "9d05b5d6d5e45defd5c134e789dec01f",
                "sha256": "387e84ba90d16486eda576312a162e187fb7c9208899cbfffea20f530a012790"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9d05b5d6d5e45defd5c134e789dec01f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 6434149,
            "upload_time": "2024-02-01T16:27:31",
            "upload_time_iso_8601": "2024-02-01T16:27:31.589867Z",
            "url": "https://files.pythonhosted.org/packages/3f/bf/18b0c4d06184745d1691750309361018e7a86628aa6519bf56af3fcfdb40/pyfai-2024.2.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b5a9043b159b298613dd4454d369bc4ff5d272182daeb5c2cd34fb8ab6ecedf1",
                "md5": "b3a47e4e96c569bf5ebbb0d1952ce7ca",
                "sha256": "86ee408811eaae6755e99fa56e44783bf6709ac0de000e076bf91bddba7f26f4"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b3a47e4e96c569bf5ebbb0d1952ce7ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 7105832,
            "upload_time": "2024-02-01T16:27:35",
            "upload_time_iso_8601": "2024-02-01T16:27:35.138203Z",
            "url": "https://files.pythonhosted.org/packages/b5/a9/043b159b298613dd4454d369bc4ff5d272182daeb5c2cd34fb8ab6ecedf1/pyfai-2024.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "69f86ff729615239f1d33b742b783ec840f3d53aed95f9d67e9e0eb8681247aa",
                "md5": "192f33524089f1309abbd03e6076738d",
                "sha256": "bb76e5fb842853ed3474c1ec2a1cdd06d946898ff12b660ab7cbd66c5f1432a5"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "192f33524089f1309abbd03e6076738d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 6852360,
            "upload_time": "2024-02-01T16:27:38",
            "upload_time_iso_8601": "2024-02-01T16:27:38.301201Z",
            "url": "https://files.pythonhosted.org/packages/69/f8/6ff729615239f1d33b742b783ec840f3d53aed95f9d67e9e0eb8681247aa/pyfai-2024.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "67b77d45480a9e692cf4963599d5f27e057a0f44b28994d0dbd5af2e6443236c",
                "md5": "de57ddbb70b56e980bccf334a5be4f3e",
                "sha256": "d6b2ba800aaacbb91320bda6014740599d49fedc9063d48a2ab2f0b570487d38"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "de57ddbb70b56e980bccf334a5be4f3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 6481590,
            "upload_time": "2024-02-01T16:27:41",
            "upload_time_iso_8601": "2024-02-01T16:27:41.376275Z",
            "url": "https://files.pythonhosted.org/packages/67/b7/7d45480a9e692cf4963599d5f27e057a0f44b28994d0dbd5af2e6443236c/pyfai-2024.2.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1e90b97d5cfb7adffebd8dc00463ee744d0903faf092a0a618688f00ebe6483",
                "md5": "3a30fd66738378fda630a74552c74ed3",
                "sha256": "3b7a5403719216e0e2d9847974d4c12f03248e474f1ea0d5b02caca607621777"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3a30fd66738378fda630a74552c74ed3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5534491,
            "upload_time": "2024-02-01T16:27:44",
            "upload_time_iso_8601": "2024-02-01T16:27:44.345760Z",
            "url": "https://files.pythonhosted.org/packages/a1/e9/0b97d5cfb7adffebd8dc00463ee744d0903faf092a0a618688f00ebe6483/pyfai-2024.2.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1de1fec405e5172b733dfe2f145493b488795af9525070c9e883fad7e5f71bc5",
                "md5": "7754f9982f60424b88c18935790511a9",
                "sha256": "74680c8958524801cf6b9a75910b3c7e713475ed0587ff836b1140c67fc33e7a"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7754f9982f60424b88c18935790511a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5244518,
            "upload_time": "2024-02-01T16:27:47",
            "upload_time_iso_8601": "2024-02-01T16:27:47.818534Z",
            "url": "https://files.pythonhosted.org/packages/1d/e1/fec405e5172b733dfe2f145493b488795af9525070c9e883fad7e5f71bc5/pyfai-2024.2.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3198df89781226073e12b82508c8ee06c99096c35aba4fe7870d26b46089d4a8",
                "md5": "471a380b8c742fa9b72692501e5ed430",
                "sha256": "a868bdd766f38245c9054f94fe41f535fe776d8611ddb838cd8becd342b57591"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "471a380b8c742fa9b72692501e5ed430",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 6616924,
            "upload_time": "2024-02-01T16:27:51",
            "upload_time_iso_8601": "2024-02-01T16:27:51.069017Z",
            "url": "https://files.pythonhosted.org/packages/31/98/df89781226073e12b82508c8ee06c99096c35aba4fe7870d26b46089d4a8/pyfai-2024.2.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d41c7411cfd067b4c2bc14697fc7d1d9fc7912ad07b995eeac42998544fb2cf9",
                "md5": "184086e79fe51cf457ea94ad97476009",
                "sha256": "c71f9492b9c4bd2d46a84ea2cefa82731795bb197ceed565bad4ec4380ac7434"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "184086e79fe51cf457ea94ad97476009",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 7205748,
            "upload_time": "2024-02-01T16:27:55",
            "upload_time_iso_8601": "2024-02-01T16:27:55.046120Z",
            "url": "https://files.pythonhosted.org/packages/d4/1c/7411cfd067b4c2bc14697fc7d1d9fc7912ad07b995eeac42998544fb2cf9/pyfai-2024.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "25e84e14342bbf59e92a3552345e890eb10ae54907c7789a859e6c6dd2c6d1ea",
                "md5": "2082a5c93a6186a984c70df2f3add1a8",
                "sha256": "823a407d3e03c2f0026af6d2350d8f41b8059d3ac66ecca996448167a8724a96"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2082a5c93a6186a984c70df2f3add1a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 6986636,
            "upload_time": "2024-02-01T16:27:58",
            "upload_time_iso_8601": "2024-02-01T16:27:58.307115Z",
            "url": "https://files.pythonhosted.org/packages/25/e8/4e14342bbf59e92a3552345e890eb10ae54907c7789a859e6c6dd2c6d1ea/pyfai-2024.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "693da3819b662e885171e34155235caf30655e551272f7d28e2922c534d84364",
                "md5": "14430e2e28a41166d9c7694cd21e1ec9",
                "sha256": "9d8d637989fcd9971969e171206b5b23c9b05790ca8d6c9ba67c12d81af8a8aa"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "14430e2e28a41166d9c7694cd21e1ec9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5955413,
            "upload_time": "2024-02-01T16:28:01",
            "upload_time_iso_8601": "2024-02-01T16:28:01.388866Z",
            "url": "https://files.pythonhosted.org/packages/69/3d/a3819b662e885171e34155235caf30655e551272f7d28e2922c534d84364/pyfai-2024.2.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6be988434165620a4db083bcf719eaa748171d4c48d7db1efd297415203e4ade",
                "md5": "ebca601c2ec5bdc2cdaf71a55386bc4f",
                "sha256": "a04eaba4bc3d18bad6b1a296ffa3d5f0cfa934711011b2bb4f66efb34f5c834d"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp39-cp39-macosx_10_9_arm64.whl",
            "has_sig": false,
            "md5_digest": "ebca601c2ec5bdc2cdaf71a55386bc4f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5265461,
            "upload_time": "2024-02-01T16:28:05",
            "upload_time_iso_8601": "2024-02-01T16:28:05.236592Z",
            "url": "https://files.pythonhosted.org/packages/6b/e9/88434165620a4db083bcf719eaa748171d4c48d7db1efd297415203e4ade/pyfai-2024.2.0-cp39-cp39-macosx_10_9_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c8386f06790c22b25c9e62392d2058917b11ab3f8af13d7f0df1090b1ad96cb7",
                "md5": "a31ab0ab1f48f5e2679493993401f4d1",
                "sha256": "69f23b2e4460fb5edb989963855d567d5ca1c988ad8f731b099a0020584845fd"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a31ab0ab1f48f5e2679493993401f4d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5561707,
            "upload_time": "2024-02-01T16:28:08",
            "upload_time_iso_8601": "2024-02-01T16:28:08.690170Z",
            "url": "https://files.pythonhosted.org/packages/c8/38/6f06790c22b25c9e62392d2058917b11ab3f8af13d7f0df1090b1ad96cb7/pyfai-2024.2.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d2167ad658a62a29e932631732a3fbb472162bdda4c65e9a44b5ba73e831ac37",
                "md5": "963375cee7ec5a8eeeeb6f8086882d09",
                "sha256": "9e3a9b68dc8280669cc35dac8bb3907cddfe749b56023e7e82d8fccf8f3f2208"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "963375cee7ec5a8eeeeb6f8086882d09",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5260050,
            "upload_time": "2024-02-01T16:28:11",
            "upload_time_iso_8601": "2024-02-01T16:28:11.844187Z",
            "url": "https://files.pythonhosted.org/packages/d2/16/7ad658a62a29e932631732a3fbb472162bdda4c65e9a44b5ba73e831ac37/pyfai-2024.2.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "943ac194180a354ea4ad8070d622fff82bfda76be7e3579069fd4cdd48aa7462",
                "md5": "ddba4330c6567062b897427e730dd91f",
                "sha256": "f0b941bd31853882ee40311632b9e67b233f8119b73611ce708007840233494f"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ddba4330c6567062b897427e730dd91f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 6594870,
            "upload_time": "2024-02-01T16:28:15",
            "upload_time_iso_8601": "2024-02-01T16:28:15.077988Z",
            "url": "https://files.pythonhosted.org/packages/94/3a/c194180a354ea4ad8070d622fff82bfda76be7e3579069fd4cdd48aa7462/pyfai-2024.2.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e44347e9650c7fc16163da738bf749d087368661e83b25abfeaa4e2aa59b67c",
                "md5": "c565f3dee247a98723c392ea80b48141",
                "sha256": "1b6f9fbca5fe68b14944a64b970dd9a6847a9cb678d32af965cf7346a727b2e9"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c565f3dee247a98723c392ea80b48141",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 7156591,
            "upload_time": "2024-02-01T16:28:18",
            "upload_time_iso_8601": "2024-02-01T16:28:18.784200Z",
            "url": "https://files.pythonhosted.org/packages/1e/44/347e9650c7fc16163da738bf749d087368661e83b25abfeaa4e2aa59b67c/pyfai-2024.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b978c58fa4806740d85bc1ec126e939fdc4410b8e93a29b0812fe65a16142c8",
                "md5": "2f59aaefff635f24dfffcb50536e79d0",
                "sha256": "71c105e28d160bf2a9a5f8bff35333b5143d22aa400c3e0d57d4e96b9cf73fb2"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2f59aaefff635f24dfffcb50536e79d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 7000280,
            "upload_time": "2024-02-01T16:28:22",
            "upload_time_iso_8601": "2024-02-01T16:28:22.701330Z",
            "url": "https://files.pythonhosted.org/packages/8b/97/8c58fa4806740d85bc1ec126e939fdc4410b8e93a29b0812fe65a16142c8/pyfai-2024.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "02ca0121339dd9fc82ec2df3c9ffba224cedc9541f9eb3c57ffa713e8d442d66",
                "md5": "f81aeaa09cfdb640f2d50a4d55e7beec",
                "sha256": "b1ff9ce0c138b2ddf3878154360582b3f5785c59a53792a25759f17081ba2685"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f81aeaa09cfdb640f2d50a4d55e7beec",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5758590,
            "upload_time": "2024-02-01T16:28:26",
            "upload_time_iso_8601": "2024-02-01T16:28:26.232793Z",
            "url": "https://files.pythonhosted.org/packages/02/ca/0121339dd9fc82ec2df3c9ffba224cedc9541f9eb3c57ffa713e8d442d66/pyfai-2024.2.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cba4ff03aab0dec00b912cb98d226a33973fba41115377eefda00ccfafc16dee",
                "md5": "8e23a238bf1a3dc811a956e5aad5f524",
                "sha256": "6274b6ea7290a2415f0888c07585e6e46975c32b99007adab0701b2dc8f84894"
            },
            "downloads": -1,
            "filename": "pyfai-2024.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "8e23a238bf1a3dc811a956e5aad5f524",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 56281110,
            "upload_time": "2024-02-01T16:28:45",
            "upload_time_iso_8601": "2024-02-01T16:28:45.721845Z",
            "url": "https://files.pythonhosted.org/packages/cb/a4/ff03aab0dec00b912cb98d226a33973fba41115377eefda00ccfafc16dee/pyfai-2024.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-01 16:28:45",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "silx-kit",
    "github_project": "pyFAI",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": true,
    "landscape": true,
    "requirements": [
        {
            "name": "wheel",
            "specs": []
        },
        {
            "name": "meson-python",
            "specs": []
        },
        {
            "name": "ninja",
            "specs": []
        },
        {
            "name": "numpy",
            "specs": [
                [
                    ">=",
                    "1.10"
                ]
            ]
        },
        {
            "name": "cython",
            "specs": [
                [
                    ">=",
                    "0.29.31"
                ]
            ]
        },
        {
            "name": "fabio",
            "specs": []
        },
        {
            "name": "scipy",
            "specs": []
        },
        {
            "name": "matplotlib",
            "specs": []
        },
        {
            "name": "numexpr",
            "specs": [
                [
                    "!=",
                    "2.8.6"
                ]
            ]
        },
        {
            "name": "h5py",
            "specs": []
        },
        {
            "name": "silx",
            "specs": [
                [
                    ">=",
                    "1.1"
                ]
            ]
        },
        {
            "name": "PyOpenGL",
            "specs": []
        },
        {
            "name": "PyQt5",
            "specs": []
        },
        {
            "name": "hdf5plugin",
            "specs": []
        },
        {
            "name": "nbsphinx",
            "specs": []
        }
    ],
    "lcname": "pyfai"
}
        
Elapsed time: 0.19131s