Name | pyFAI JSON |
Version |
2025.1.0
JSON |
| download |
home_page | None |
Summary | Python implementation of fast azimuthal integration |
upload_time | 2025-01-31 12:10:06 |
maintainer | None |
docs_url | None |
author | Gael Goret, Brian Pauw |
requires_python | >=3.8 |
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é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
pydata-sphinx-theme
importlib_resources
sphinxcontrib.programoutput
|
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| |Zenodo DOI| |RTD docs|
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
* Application of signal separation to diffraction image compression and serial crystallography. J. Appl. Cryst. (2025): https://doi.org/10.1107/S1600576724011038
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 <https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environments>`_ .
Provide the *--user* option to perform an installation local to your user-space (**not recommended**).
Under UNIX, you may have to run the command via *sudo* to gain root access and perform a system wide installation (which is **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 current development version 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
All files are unpacked into the directory pyFAI-main::
cd pyFAI-main
Install dependencies::
pip install -r requirements.txt
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 (not needed at ESRF)::
export http_proxy=http://proxy.site.org:3128
Finally, install pyFAI in the virtualenv after testing it::
pip install .
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 .
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.8, ... 3.12 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 manually install a recent version of `Python` (>=3.8) prior to installing pyFAI.
Apple provides only an outdated version of Python 2.7 which is now incomatible.
If you want to build pyFAI from sources, you will also need `Xcode` which is available from the Apple store.
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.8) prior to pyFAI.
The Visual Studio C++ compiler is also needed when building from sources.
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)
* Edgar Gutierrez Fernandez (ESRF)
* Maciej Jankowski (ESRF)
Contributors
------------
* 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=latest
:target: https://pyfai.readthedocs.io/en/latest/
.. |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": null,
"name": "pyFAI",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": null,
"author": "Gael Goret, Brian Pauw",
"author_email": "=?utf-8?q?J=C3=A9r=C3=B4me_Kieffer?= <jerome.kieffer@esrf.fr>, Edgar Gutierrez Fernandez <edgar.gutierrez-fernandez@esrf.fr>, Valentin Valls <valentin.valls@esrf.fr>, =?utf-8?q?Lo=C3=AFc_Huder?= <loic.huder@esrf.fr>, \"Jonathan P. Wright\" <wright@esrf.fr>",
"download_url": "https://files.pythonhosted.org/packages/de/ee/84dad8a6bb028e04027593464e13751af767b6b971ba86d14678202a36d4/pyfai-2025.1.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| |Zenodo DOI| |RTD docs|\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* Application of signal separation to diffraction image compression and serial crystallography. J. Appl. Cryst. (2025): https://doi.org/10.1107/S1600576724011038\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 <https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environments>`_ .\nProvide the *--user* option to perform an installation local to your user-space (**not recommended**).\nUnder UNIX, you may have to run the command via *sudo* to gain root access and perform a system wide installation (which is **neither recommended**).\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 current development version 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\nAll files are unpacked into the directory pyFAI-main::\n\n cd pyFAI-main\n\nInstall dependencies::\n\n pip install -r requirements.txt\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 (not 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 .\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 .\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 python3 build-doc.py\n\nDependencies\n------------\n\nPython 3.8, ... 3.12 are well tested and officially supported.\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 manually install a recent version of `Python` (>=3.8) prior to installing pyFAI.\nApple provides only an outdated version of Python 2.7 which is now incomatible.\nIf you want to build pyFAI from sources, you will also need `Xcode` which is available from the Apple store.\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.8) prior to pyFAI.\nThe Visual Studio C++ compiler is also needed when building from sources.\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* Edgar Gutierrez Fernandez (ESRF)\n* Maciej Jankowski (ESRF)\n\nContributors\n------------\n\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=latest\n :target: https://pyfai.readthedocs.io/en/latest/\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/\n Upstream-Name: pyfai\n Source: https://github.com/silx-kit/pyFAI\n Files-Excluded: pyFAI/third_party/_local\n \n Files: *\n Copyright: 2011-2017 European Synchrotron Radiation Facility\n License: MIT/X11 (BSD like)\n \n Files: package/debian?/*\n Copyright: 2012-2014 Jerome Kieffer <jerome.kieffer@esrf.fr>\n \t 2013-2016 Picca Fr\u00e9d\u00e9ric-Emmanuel <picca@debian.org>\n \t 2015-2016 European Synchrotron Radiation Facility\n License: GPL-3.0+\n \n Files: pyFAI/resources/openCL/bitonic.cl\n openCL/bsort.cl\n Copyright: Matthew Scarpino\n License: public-domain\n \n Files: doc/source/mathjax.py\n Copyright: 2007-2013 by the Sphinx team\n License: BSD-3\n \n Files: pyFAI/third_party/transformation.py\n Copyright: 2006-2018, Christoph Gohlke, University of California\n License: BSD-3\n \n \n License: BSD-3\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions\n are met:\n * Redistributions of source code must retain the above copyright\n notice, this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above\n copyright notice, this list of conditions and the following\n disclaimer in the documentation and/or other materials provided\n with the distribution.\n * Neither the name of the <organization> nor the names of its\n contributors may be used to endorse or promote products derived\n from this software without specific prior written permission.\n .\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT\n HOLDER> BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY\n OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n \n License: GPL-3.0+\n This package is free software; you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation; either version 3 of the License, or\n (at your option) any later version.\n .\n This package is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n .\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>\n .\n On Debian systems, the complete text of the GNU General\n Public License version 3 can be found in \"/usr/share/common-licenses/GPL-3\".\n \n License: public-domain\n You can use this free for any purpose. It's in the public domain. It\n has no warranty\n \n License: MIT/X11 (BSD like)\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n .\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n .\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n ",
"summary": "Python implementation of fast azimuthal integration",
"version": "2025.1.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": null,
"digests": {
"blake2b_256": "0ad4c2aa9be611718fb9d56b43d021c796fff63489b51aa55ff3ef584e67639a",
"md5": "9dbb3b5e6c564f60471f7d9d9fd197cc",
"sha256": "6ec4c6d69d8d159c73bbf08ba13270fe7736d2f972a9d303cdf65542ac1ab4fe"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9dbb3b5e6c564f60471f7d9d9fd197cc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 5492144,
"upload_time": "2025-01-31T12:08:07",
"upload_time_iso_8601": "2025-01-31T12:08:07.493715Z",
"url": "https://files.pythonhosted.org/packages/0a/d4/c2aa9be611718fb9d56b43d021c796fff63489b51aa55ff3ef584e67639a/pyfai-2025.1.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e2f1f7d574db1ee17c2b5a05d09dfcbb3f0590b7243cb4d892b01ee53bb61027",
"md5": "13788ae6a61b2e8d7109aa02ca9de4e5",
"sha256": "adf4cb89b195c8fb7b6ae31d27740b407e680bf8eeb6f5442f157cb0b821ea5d"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp310-cp310-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "13788ae6a61b2e8d7109aa02ca9de4e5",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 5805178,
"upload_time": "2025-01-31T12:08:11",
"upload_time_iso_8601": "2025-01-31T12:08:11.223311Z",
"url": "https://files.pythonhosted.org/packages/e2/f1/f7d574db1ee17c2b5a05d09dfcbb3f0590b7243cb4d892b01ee53bb61027/pyfai-2025.1.0-cp310-cp310-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "21aadcc6ec656e6cd7e9e84defc9a33a1bc7846e4b72d76d70a513624b384b96",
"md5": "482954cee9bdbe461ad99747233902a9",
"sha256": "83a618c8df389e30d74c3eb4fa1f19ebfb63dce7ecc800fa897646b358f773f6"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "482954cee9bdbe461ad99747233902a9",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 6753077,
"upload_time": "2025-01-31T12:08:14",
"upload_time_iso_8601": "2025-01-31T12:08:14.652946Z",
"url": "https://files.pythonhosted.org/packages/21/aa/dcc6ec656e6cd7e9e84defc9a33a1bc7846e4b72d76d70a513624b384b96/pyfai-2025.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3d04e9416b5cb5deee35f851e842a840eaa9dd5414ebe5cc9f16a8b469655f7b",
"md5": "9ec84b3f68d872868b176ec88f85ab89",
"sha256": "349767d9e4db3765e496ad24944c565fec488205fe602c8252dcad3665f57689"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "9ec84b3f68d872868b176ec88f85ab89",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 7440356,
"upload_time": "2025-01-31T12:08:18",
"upload_time_iso_8601": "2025-01-31T12:08:18.182056Z",
"url": "https://files.pythonhosted.org/packages/3d/04/e9416b5cb5deee35f851e842a840eaa9dd5414ebe5cc9f16a8b469655f7b/pyfai-2025.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "effda29192521db6b79dadd69328cabf963b3f1132db90d456d7160350163399",
"md5": "b11383a38e981c0aad25b1b50e5e76a3",
"sha256": "c8228a06643cfbd6d1270530559130a28317e13506d1d93940e785d68e7cda3f"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "b11383a38e981c0aad25b1b50e5e76a3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 7281057,
"upload_time": "2025-01-31T12:08:21",
"upload_time_iso_8601": "2025-01-31T12:08:21.903055Z",
"url": "https://files.pythonhosted.org/packages/ef/fd/a29192521db6b79dadd69328cabf963b3f1132db90d456d7160350163399/pyfai-2025.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a23178266abb09e8bd0d578b491ed277bafcf945825fbbb8667f865dce284065",
"md5": "40ced81996a55fd0c3671992a9e5faf8",
"sha256": "ca2986af0e39e100b511cee741cba3b41e62ed1d9cd0598a951a8c592ade2b2d"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "40ced81996a55fd0c3671992a9e5faf8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 5471160,
"upload_time": "2025-01-31T12:08:24",
"upload_time_iso_8601": "2025-01-31T12:08:24.642931Z",
"url": "https://files.pythonhosted.org/packages/a2/31/78266abb09e8bd0d578b491ed277bafcf945825fbbb8667f865dce284065/pyfai-2025.1.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "ed2fac2e7ee62b682effc85ceb200f2e213f01a8b8c4a26b7e9b47ee2780db76",
"md5": "a20dcb0a8d0ba5bd2b028f3e2363e865",
"sha256": "4a5155633d3e47f241cc06a9bfd1921942995d13793cdba976d5eba938974199"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "a20dcb0a8d0ba5bd2b028f3e2363e865",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 5493286,
"upload_time": "2025-01-31T12:08:28",
"upload_time_iso_8601": "2025-01-31T12:08:28.002677Z",
"url": "https://files.pythonhosted.org/packages/ed/2f/ac2e7ee62b682effc85ceb200f2e213f01a8b8c4a26b7e9b47ee2780db76/pyfai-2025.1.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d107379a61e6fe0ed67b56de17c7c84b3358c16ec5e06d883515378f1ec9be1d",
"md5": "e8f7977475eabfea471d409b9286a4d4",
"sha256": "e6b98500a7087074be889f070a0f7ebc6827e82ac6d84f2c67b3e9392e27d262"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp311-cp311-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "e8f7977475eabfea471d409b9286a4d4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 5811518,
"upload_time": "2025-01-31T12:08:31",
"upload_time_iso_8601": "2025-01-31T12:08:31.368630Z",
"url": "https://files.pythonhosted.org/packages/d1/07/379a61e6fe0ed67b56de17c7c84b3358c16ec5e06d883515378f1ec9be1d/pyfai-2025.1.0-cp311-cp311-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "8ed34cf170d0f6f86a8ce6a55555bede57fd02b503bd1e673ddb437b0292fb0b",
"md5": "fecc3348c205f8a78ebd6b91a3e24ab5",
"sha256": "899745f33d6c7bb4103546cbc58de5fc4f86874971a7263ab7f70b092910ffb8"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "fecc3348c205f8a78ebd6b91a3e24ab5",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 6738829,
"upload_time": "2025-01-31T12:08:35",
"upload_time_iso_8601": "2025-01-31T12:08:35.031143Z",
"url": "https://files.pythonhosted.org/packages/8e/d3/4cf170d0f6f86a8ce6a55555bede57fd02b503bd1e673ddb437b0292fb0b/pyfai-2025.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "99dc77a297a3f24c9f2156c5b1278e23fdfa527cfca1569773453db33d7a2ffd",
"md5": "1a59d8ed52617b6e79141bd6829e368c",
"sha256": "f72183e195a4ec6ccb67f2b2ca3f9ce9ce19ca05bcff4e2573ddd4f586e0fae0"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "1a59d8ed52617b6e79141bd6829e368c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 7454034,
"upload_time": "2025-01-31T12:08:37",
"upload_time_iso_8601": "2025-01-31T12:08:37.703743Z",
"url": "https://files.pythonhosted.org/packages/99/dc/77a297a3f24c9f2156c5b1278e23fdfa527cfca1569773453db33d7a2ffd/pyfai-2025.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "aca5100845c495bb98c1b1414b711b81088f797cae16c0c04ce7bef032a7a07a",
"md5": "7d49252000e145ec312ea2c8b3bd4975",
"sha256": "5923b24a07ce1916c29d960fda80e368d77b08e229b8e02703ce4bff26836ad5"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "7d49252000e145ec312ea2c8b3bd4975",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 7241298,
"upload_time": "2025-01-31T12:08:41",
"upload_time_iso_8601": "2025-01-31T12:08:41.539565Z",
"url": "https://files.pythonhosted.org/packages/ac/a5/100845c495bb98c1b1414b711b81088f797cae16c0c04ce7bef032a7a07a/pyfai-2025.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "52071e763bdb6313dcc1b994ce7f20beca8f56c3162cfbaa039ef557fcbbd12f",
"md5": "85db71a49ae42c18e13106ef6a6561e1",
"sha256": "8c24623e553bf38e6b842af4a483c80a85e738e63757a0465e03014f4616fc66"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "85db71a49ae42c18e13106ef6a6561e1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 5480411,
"upload_time": "2025-01-31T12:08:44",
"upload_time_iso_8601": "2025-01-31T12:08:44.199840Z",
"url": "https://files.pythonhosted.org/packages/52/07/1e763bdb6313dcc1b994ce7f20beca8f56c3162cfbaa039ef557fcbbd12f/pyfai-2025.1.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6b2fc72577d9f7ebaa917ac1bcd6da2029e551022c152abde10ba0258085e97b",
"md5": "866458aaac7b1788a355f149871e9a09",
"sha256": "291a5a5d7bc401d675ab38ba769ca6e69794187b705252619caa2424d738d333"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "866458aaac7b1788a355f149871e9a09",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 5450523,
"upload_time": "2025-01-31T12:08:46",
"upload_time_iso_8601": "2025-01-31T12:08:46.909099Z",
"url": "https://files.pythonhosted.org/packages/6b/2f/c72577d9f7ebaa917ac1bcd6da2029e551022c152abde10ba0258085e97b/pyfai-2025.1.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c25bd200889bbc0a9541181782ee8a6de757423d588ee17226fdbc7b99f4a14d",
"md5": "1c8372421b31d0483396c836c96fa197",
"sha256": "7a0059da6f622d46980ed90a8b8cf9ea7df492186fe409b9af61c3999456077f"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp312-cp312-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "1c8372421b31d0483396c836c96fa197",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 5762448,
"upload_time": "2025-01-31T12:08:49",
"upload_time_iso_8601": "2025-01-31T12:08:49.733275Z",
"url": "https://files.pythonhosted.org/packages/c2/5b/d200889bbc0a9541181782ee8a6de757423d588ee17226fdbc7b99f4a14d/pyfai-2025.1.0-cp312-cp312-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "43a649cb9e2a2c91e683800d79416dd55ecdf6a0d7efb251069d2aca7c29c5f4",
"md5": "0df1de1db0e8c4afb0f4618ba046f8da",
"sha256": "86ac53a65e940f9b5e51d86a1f23106443a21c690b8825f27bcc88525a09b8a7"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "0df1de1db0e8c4afb0f4618ba046f8da",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 6425965,
"upload_time": "2025-01-31T12:08:53",
"upload_time_iso_8601": "2025-01-31T12:08:53.379740Z",
"url": "https://files.pythonhosted.org/packages/43/a6/49cb9e2a2c91e683800d79416dd55ecdf6a0d7efb251069d2aca7c29c5f4/pyfai-2025.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e20dbedc5849d8137329babc88d8fe8eb6b8f82b45d609a12a8c7008ab934b4c",
"md5": "ee1864939ca93c5ea9ad02409bca1aec",
"sha256": "0b517c479e9ac6ef0229634f7ae74cb0673c6e61f12a316e9c1f8056ecb49a4a"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "ee1864939ca93c5ea9ad02409bca1aec",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 7102268,
"upload_time": "2025-01-31T12:08:57",
"upload_time_iso_8601": "2025-01-31T12:08:57.031006Z",
"url": "https://files.pythonhosted.org/packages/e2/0d/bedc5849d8137329babc88d8fe8eb6b8f82b45d609a12a8c7008ab934b4c/pyfai-2025.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "3ff5bd022c2aafc1b1b50f057404821b4fb92cf3be2a4ea3e4a95a43d42c6027",
"md5": "ab5b0a15154f97ab9a7e7a098701af01",
"sha256": "f06a00a27baaecf13a4a43e9ceb98f36832c7bb33714bd605f862ad999faa695"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ab5b0a15154f97ab9a7e7a098701af01",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 6972387,
"upload_time": "2025-01-31T12:09:00",
"upload_time_iso_8601": "2025-01-31T12:09:00.497723Z",
"url": "https://files.pythonhosted.org/packages/3f/f5/bd022c2aafc1b1b50f057404821b4fb92cf3be2a4ea3e4a95a43d42c6027/pyfai-2025.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "66c4975bb51e9db6407a0459c80772388ed544c5e0c89d84bd33e3c94d99aaaa",
"md5": "0eaeb32dab6f088bdc2fc9bdb3ec96fb",
"sha256": "e4641c0a0fee263919d7b9db5ddd75441ae5e7b59281bf3d757a75bc42452cca"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "0eaeb32dab6f088bdc2fc9bdb3ec96fb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 5393104,
"upload_time": "2025-01-31T12:09:03",
"upload_time_iso_8601": "2025-01-31T12:09:03.272355Z",
"url": "https://files.pythonhosted.org/packages/66/c4/975bb51e9db6407a0459c80772388ed544c5e0c89d84bd33e3c94d99aaaa/pyfai-2025.1.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "f91112e7378853471e4de349b7dc213e7d797316d62e48e380885c41f22a3500",
"md5": "c9542337eff60f4c6de990e509cfba43",
"sha256": "ac343a2e67f7a1df4ef30f1d90a7a30e2513a9a7b903141e9f7eb696ce28f97e"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "c9542337eff60f4c6de990e509cfba43",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 5404652,
"upload_time": "2025-01-31T12:09:06",
"upload_time_iso_8601": "2025-01-31T12:09:06.043528Z",
"url": "https://files.pythonhosted.org/packages/f9/11/12e7378853471e4de349b7dc213e7d797316d62e48e380885c41f22a3500/pyfai-2025.1.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6fa97bb535d27b931c97be4d4a0b6b257822f7aa8e749a968357d95caf5da7b9",
"md5": "d602d6ece20f6e45f663a3a12def02c6",
"sha256": "3b2659bd5d9a3ad20fc75de81c97cd102bd0f262b1554f563049ce96c8a92fa5"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp313-cp313-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "d602d6ece20f6e45f663a3a12def02c6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 5701840,
"upload_time": "2025-01-31T12:09:09",
"upload_time_iso_8601": "2025-01-31T12:09:09.539230Z",
"url": "https://files.pythonhosted.org/packages/6f/a9/7bb535d27b931c97be4d4a0b6b257822f7aa8e749a968357d95caf5da7b9/pyfai-2025.1.0-cp313-cp313-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "5a647d331366cb90018cd5db771e5c56600ae57e94936073922cb56628748390",
"md5": "338490c160df1c98ee2e972d83fa32f0",
"sha256": "bea78cbbf5cd493b8109e6d7f890f15eff49e046c9e325587c08090f0d942662"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "338490c160df1c98ee2e972d83fa32f0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 6394870,
"upload_time": "2025-01-31T12:09:13",
"upload_time_iso_8601": "2025-01-31T12:09:13.088672Z",
"url": "https://files.pythonhosted.org/packages/5a/64/7d331366cb90018cd5db771e5c56600ae57e94936073922cb56628748390/pyfai-2025.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "e30c03489f4c7b30873a1e9abf1e3c5a5411a815ecc353133d26628c1eb9523b",
"md5": "35982472b4e988a143dca3aceacf7676",
"sha256": "a3c6bb920a9ccddc19d7f2ca5c8d8883814d282b5e8f3ea635d108f8d715638c"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "35982472b4e988a143dca3aceacf7676",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 7071797,
"upload_time": "2025-01-31T12:09:16",
"upload_time_iso_8601": "2025-01-31T12:09:16.962728Z",
"url": "https://files.pythonhosted.org/packages/e3/0c/03489f4c7b30873a1e9abf1e3c5a5411a815ecc353133d26628c1eb9523b/pyfai-2025.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "db6701e25d9effd51937dd0b4c228815383b98a848280a67d526259902a2eab7",
"md5": "fc8218f8cc2658dfa201be2eb691683e",
"sha256": "a205a10039cb4a0510a571d21175eb6e7039038a469b07728fa46efb63afcbbd"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "fc8218f8cc2658dfa201be2eb691683e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 6931104,
"upload_time": "2025-01-31T12:09:20",
"upload_time_iso_8601": "2025-01-31T12:09:20.784905Z",
"url": "https://files.pythonhosted.org/packages/db/67/01e25d9effd51937dd0b4c228815383b98a848280a67d526259902a2eab7/pyfai-2025.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "6be28074c03f8cb0b3592e87d0361836fef9ff2bbd23e463ae226a3ba5d8dadb",
"md5": "51c680f945d37854eef6dac69ab67439",
"sha256": "ab12f123fb8bfdad72443694e1c2f72087cd3d8f2f37e7706a3fb7971499907b"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "51c680f945d37854eef6dac69ab67439",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 5376977,
"upload_time": "2025-01-31T12:09:23",
"upload_time_iso_8601": "2025-01-31T12:09:23.577324Z",
"url": "https://files.pythonhosted.org/packages/6b/e2/8074c03f8cb0b3592e87d0361836fef9ff2bbd23e463ae226a3ba5d8dadb/pyfai-2025.1.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2b66d8c5e7b02d3ed7dc4817659cfc4c465b7a39b66b4cb759d7fb648f50240c",
"md5": "8010ea57c9ae4681bc517bedb9713afd",
"sha256": "0264cbc453f4af0cdb2c4b9b6b5cede6514fbb33998ba09f12781d768868b442"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8010ea57c9ae4681bc517bedb9713afd",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 5465650,
"upload_time": "2025-01-31T12:09:26",
"upload_time_iso_8601": "2025-01-31T12:09:26.295420Z",
"url": "https://files.pythonhosted.org/packages/2b/66/d8c5e7b02d3ed7dc4817659cfc4c465b7a39b66b4cb759d7fb648f50240c/pyfai-2025.1.0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "78f7db2570bfd7b5431ddfdd60b9ebccf7f734449548b87d3a060c00ef938c03",
"md5": "f3607ec0c19037bb3f78f970cd703984",
"sha256": "8fe39bb9e257a63edef518ad41022e81d655782994ded5a87121fd898faf246a"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f3607ec0c19037bb3f78f970cd703984",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 6784182,
"upload_time": "2025-01-31T12:09:30",
"upload_time_iso_8601": "2025-01-31T12:09:30.114260Z",
"url": "https://files.pythonhosted.org/packages/78/f7/db2570bfd7b5431ddfdd60b9ebccf7f734449548b87d3a060c00ef938c03/pyfai-2025.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "33d9d08e92446e5a25f58259c0a561fe71509463679becaa8198540b9f362dbe",
"md5": "fbf3bdbc61619e4970ef47ad541c254c",
"sha256": "667c98bc55c14c2a0d3e27c1d82407c1c0ee5627f7ad427d9310cf4f515def3a"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "fbf3bdbc61619e4970ef47ad541c254c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 5505819,
"upload_time": "2025-01-31T12:09:32",
"upload_time_iso_8601": "2025-01-31T12:09:32.723719Z",
"url": "https://files.pythonhosted.org/packages/33/d9/d08e92446e5a25f58259c0a561fe71509463679becaa8198540b9f362dbe/pyfai-2025.1.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "abd1ef9638d4b24fca2b4f73d21f525004d80b34a2d8b597e24b239496556d2b",
"md5": "8455acd348c0cda12fce5c73e7b05a4a",
"sha256": "450e3092564bc31e45bc32d951a70b80c0d70b4df0759ac4d2ae109bdb8d9704"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp39-cp39-macosx_11_0_x86_64.whl",
"has_sig": false,
"md5_digest": "8455acd348c0cda12fce5c73e7b05a4a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 5819856,
"upload_time": "2025-01-31T12:09:35",
"upload_time_iso_8601": "2025-01-31T12:09:35.432708Z",
"url": "https://files.pythonhosted.org/packages/ab/d1/ef9638d4b24fca2b4f73d21f525004d80b34a2d8b597e24b239496556d2b/pyfai-2025.1.0-cp39-cp39-macosx_11_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "1233f1aefc67cd2adab6e68f0c5e36b15fd5676129cf4386d47bff7ec054b951",
"md5": "9115426de98eaa4487144bead934d30a",
"sha256": "11bf9ccb5b4f2250f465a83ebeba6e78349357a479cb299ceb89f2ff357a8342"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "9115426de98eaa4487144bead934d30a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 6759214,
"upload_time": "2025-01-31T12:09:38",
"upload_time_iso_8601": "2025-01-31T12:09:38.979368Z",
"url": "https://files.pythonhosted.org/packages/12/33/f1aefc67cd2adab6e68f0c5e36b15fd5676129cf4386d47bff7ec054b951/pyfai-2025.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "d6dfc94f22b80bd06882e5bae86a29d4ef79790d7943622501c9412116c289bd",
"md5": "dc56e26aeeab0a421fba1609a559417b",
"sha256": "da5661c3c94a4dcfa8db4a58f8a2efb734ae57c837f94b106801f856f39f0401"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "dc56e26aeeab0a421fba1609a559417b",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 7459227,
"upload_time": "2025-01-31T12:09:42",
"upload_time_iso_8601": "2025-01-31T12:09:42.788929Z",
"url": "https://files.pythonhosted.org/packages/d6/df/c94f22b80bd06882e5bae86a29d4ef79790d7943622501c9412116c289bd/pyfai-2025.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2c4a1e521fa7904f938cf4c2f3cb16aaeda345123f07a1131c9993875316f8e8",
"md5": "bfdc689e23d22269c98360f38d29666d",
"sha256": "10edcebee824d4429f723f523e4d0492bf35fdeb85e9915eb11eccab6f43f537"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bfdc689e23d22269c98360f38d29666d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 7293181,
"upload_time": "2025-01-31T12:09:46",
"upload_time_iso_8601": "2025-01-31T12:09:46.705505Z",
"url": "https://files.pythonhosted.org/packages/2c/4a/1e521fa7904f938cf4c2f3cb16aaeda345123f07a1131c9993875316f8e8/pyfai-2025.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "c3542940803fb90504c8f96ea8b0b6e17021b669fbaafcee89e7e8ac9cfda66f",
"md5": "d0160f732ba65bb97417895c94a1fa2c",
"sha256": "626569939c89cf2514bc7243d6f751faa396c0a592959725df1d206c7fa0dedd"
},
"downloads": -1,
"filename": "pyfai-2025.1.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "d0160f732ba65bb97417895c94a1fa2c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 5484788,
"upload_time": "2025-01-31T12:09:49",
"upload_time_iso_8601": "2025-01-31T12:09:49.615778Z",
"url": "https://files.pythonhosted.org/packages/c3/54/2940803fb90504c8f96ea8b0b6e17021b669fbaafcee89e7e8ac9cfda66f/pyfai-2025.1.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "deee84dad8a6bb028e04027593464e13751af767b6b971ba86d14678202a36d4",
"md5": "521bb8695015a78d2b2dfdcfb04994b7",
"sha256": "396cb36876d4a9cd989b670b73868001c2b5070f7f3be2c496397605f6f7d181"
},
"downloads": -1,
"filename": "pyfai-2025.1.0.tar.gz",
"has_sig": false,
"md5_digest": "521bb8695015a78d2b2dfdcfb04994b7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 67019493,
"upload_time": "2025-01-31T12:10:06",
"upload_time_iso_8601": "2025-01-31T12:10:06.029791Z",
"url": "https://files.pythonhosted.org/packages/de/ee/84dad8a6bb028e04027593464e13751af767b6b971ba86d14678202a36d4/pyfai-2025.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-01-31 12:10:06",
"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": [
[
">=",
"2"
]
]
},
{
"name": "PyOpenGL",
"specs": []
},
{
"name": "PyQt5",
"specs": []
},
{
"name": "hdf5plugin",
"specs": []
},
{
"name": "nbsphinx",
"specs": []
},
{
"name": "pydata-sphinx-theme",
"specs": []
},
{
"name": "importlib_resources",
"specs": []
},
{
"name": "sphinxcontrib.programoutput",
"specs": []
}
],
"lcname": "pyfai"
}