Skip to main content

Python implementation of fast azimuthal integration

Project description

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

Build Status Appveyor Status myBinder Launcher

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: doi:10.1088/1742-6596/425/20/202012 http://iopscience.iop.org/1742-6596/425/20/202012/

  • Implementation in parallel is described in the proceedings of EPDIC13: PyFAI: a Python library for high performance azimuthal integration on GPU. doi:10.1017/S0885715613000924

  • Benchmarks and optimization procedure is described in the proceedings of EuroSciPy2014: http://conference.scipy.org/category/euroscipy.html (accepted)

Installation

With PIP

As most Python packages, pyFAI is available via PIP:

pip install pyFAI [--user]

Provide the –user to perform an installation local to your user. Under UNIX, you may have to run the command via sudo to gain root access an perform a system wide installation.

With conda

pyFAI is also available via conda (for Linux and Mac, currently):

conda install pyfai -c conda-forge

To install conda please see either conda or Anaconda.

From source code

The latest release of pyFAI can be downloaded from Github. Presently the source code has been distributed as a zip package. Download it one and unpack it:

unzip pyFAI-master.zip

As developement is also done on Github, development branch is also available

All files are unpacked into the directory pyFAI-master:

cd pyFAI-master

Build it & test it:

python setup.py build test

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:

export http_proxy=http://proxy.site.org:3128
python setup.py build test

This is especially true at ESRF, where you will have to phone the hotline (24-24) to get this information or grab it from the intranet.

Finally, install pyFAI computer-wise if you have local root access. This command may request your password to gain root-access:

sudo pip install . --upgrade

If you prefer a local installation (only you will have access to the installed version):

pip install . --upgrade --user

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
python setup.py build bdist_wheel
sudo pip install . --upgrade

If you want pyFAI to make use of your graphic card, please install pyopencl

If you are using MS Windows you can also download a binary version packaged as executable installation files (Chose the one corresponding to your python version).

For MacOSX users with MacOS version>10.7, the default compiler switched from gcc to clang and dropped the OpenMP support. Please refer to the installation documentation …

Documentation

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

python setup.py build build_doc

Dependencies

Python 2.7, 3.4, 3.5, 3.6 and 3.7 are well tested. Python 2.6, 3.2 and 3.3 are no more supported since pyFAI 0.12 For full functionality of pyFAI the following modules need to be installed.

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:

  • python-numpy

  • python-scipy

  • python-matplotlib

  • python-dev

  • python-fabio

  • python-pyopencl

  • python-pyqt5

  • python-silx

  • python-numexpr

and the same with python3 using apt-get these can be installed as:

sudo apt-get install python-numpy python-scipy python-matplotlib  python-dev python-fabio python-pyopencl python-pyqt5 python-silx python-numexpr
sudo apt-get install python3-numpy python3-scipy python3-matplotlib  python3-dev python3-fabio python3-pyopencl python3-pyqt5 python3-silx python3-numexpr

MacOSX

You are advised to build pyFAI with the GCC compiler, as the compiler provided by Apple with XCode (a derivative of clang) lakes the support of OpenMP. If you use Xcode5 or newer, append the “–no-openmp” option to deactivate multithreading in binary modules. You will also need cython to re-generate the C-files and delete src/histogram.c before running:

pip install cython --user --upgrade
rm pyFAI/ext/histogram.c
python setup.py build --force-cython --no-openmp

Windows

Under 32 bits windows, pyFAI can be built using The MinGW compiler. Unfortunately, pyFAI will be limited to small images as the memory consumption, limited to 2GB under windows, is easily reached. With 64 bits windows, the Visual Studio C++ compiler is the only one known to work correctly.

Dependencies for windows have been regrouped in our wheelhouse, just use:

pip install --trusted-host www.edna-site.org -r requirements_appveyor.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)

  • Valentin Valls (ESRF)

Contributors

  • Frédéric-Emmanuel Picca (Soleil)

  • Thomas Vincent (ESRF)

  • Dimitris Karkoulis (ESRF)

  • Aurore Deschildre (ESRF)

  • Giannis Ashiotis (ESRF)

  • Zubair Nawaz (Sesame)

  • Jon Wright (ESRF)

  • Amund Hov (ESRF)

  • Dodogerstlin @github

  • Gunthard Benecke (Desy)

  • Gero Flucke (Desy)

Indirect contributors (ideas…)

  • Peter Boesecke

  • Manuel Sánchez del Río

  • Vicente Armando Solé

  • Brian Pauw

  • Veijo Honkimaki

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyFAI-0.18.0.tar.gz (33.8 MB view details)

Uploaded Source

Built Distributions

pyFAI-0.18.0-cp37-cp37m-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.7m Windows x86-64

pyFAI-0.18.0-cp37-cp37m-manylinux2010_x86_64.whl (16.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

pyFAI-0.18.0-cp37-cp37m-manylinux1_x86_64.whl (15.0 MB view details)

Uploaded CPython 3.7m

pyFAI-0.18.0-cp37-cp37m-macosx_10_6_intel.whl (8.2 MB view details)

Uploaded CPython 3.7m macOS 10.6+ intel

pyFAI-0.18.0-cp36-cp36m-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.6m Windows x86-64

pyFAI-0.18.0-cp36-cp36m-manylinux2010_x86_64.whl (16.1 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

pyFAI-0.18.0-cp36-cp36m-manylinux1_x86_64.whl (15.1 MB view details)

Uploaded CPython 3.6m

pyFAI-0.18.0-cp36-cp36m-macosx_10_6_intel.whl (8.2 MB view details)

Uploaded CPython 3.6m macOS 10.6+ intel

pyFAI-0.18.0-cp35-cp35m-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.5m Windows x86-64

pyFAI-0.18.0-cp35-cp35m-manylinux2010_x86_64.whl (15.6 MB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

pyFAI-0.18.0-cp35-cp35m-manylinux1_x86_64.whl (14.6 MB view details)

Uploaded CPython 3.5m

pyFAI-0.18.0-cp35-cp35m-macosx_10_6_intel.whl (7.8 MB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

pyFAI-0.18.0-cp34-cp34m-manylinux2010_x86_64.whl (15.8 MB view details)

Uploaded CPython 3.4m manylinux: glibc 2.12+ x86-64

pyFAI-0.18.0-cp34-cp34m-manylinux1_x86_64.whl (14.5 MB view details)

Uploaded CPython 3.4m

pyFAI-0.18.0-cp27-cp27mu-manylinux2010_x86_64.whl (14.6 MB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

pyFAI-0.18.0-cp27-cp27mu-manylinux1_x86_64.whl (14.0 MB view details)

Uploaded CPython 2.7mu

pyFAI-0.18.0-cp27-cp27m-win_amd64.whl (4.0 MB view details)

Uploaded CPython 2.7m Windows x86-64

pyFAI-0.18.0-cp27-cp27m-manylinux2010_x86_64.whl (14.6 MB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ x86-64

pyFAI-0.18.0-cp27-cp27m-manylinux1_x86_64.whl (14.0 MB view details)

Uploaded CPython 2.7m

pyFAI-0.18.0-cp27-cp27m-macosx_10_6_intel.whl (8.1 MB view details)

Uploaded CPython 2.7m macOS 10.6+ intel

File details

Details for the file pyFAI-0.18.0.tar.gz.

File metadata

  • Download URL: pyFAI-0.18.0.tar.gz
  • Upload date:
  • Size: 33.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.3

File hashes

Hashes for pyFAI-0.18.0.tar.gz
Algorithm Hash digest
SHA256 355a9722c928ef1904be8f1487c5f4ef52eebb3728e069e111d8e8a9a43b2b7b
MD5 ef1da52285f63ba5baef4b1408843555
BLAKE2b-256 b6cb9833fbe5c7cd4464757285d91450be53bbbf0db61b0823fcc474b2c3f2bf

See more details on using hashes here.

File details

Details for the file pyFAI-0.18.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pyFAI-0.18.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.3

File hashes

Hashes for pyFAI-0.18.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c1adbb90167f158155e5c6819c05593cda713afe7a401d6d477cfa1ac862ce2a
MD5 3e04ee1b881df4bbc4adecec24cc2ae2
BLAKE2b-256 23c794e7812c07d91e54b8aa46e0936ea62f2e72b3a2bb676fa22eef3234cfd6

See more details on using hashes here.

File details

Details for the file pyFAI-0.18.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyFAI-0.18.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 16.1 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.3

File hashes

Hashes for pyFAI-0.18.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 99cfdac29504d11d9d994d5b97234a903e02357ed42daef08ea06943c6175366
MD5 ba076608ddbd9bfae89a3a69e2f33078
BLAKE2b-256 8ff5c499c5c6d5498e68786d0d210e007d90b38fc2f4c914568d8800106bdb4f

See more details on using hashes here.

File details

Details for the file pyFAI-0.18.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyFAI-0.18.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 15.0 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.3

File hashes

Hashes for pyFAI-0.18.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a2cbab87a5dda52eeb8a34616dfa16e012bf2855b591c2b872db2465925c2712
MD5 28de50a65019d0bdb0400c88bc102c9e
BLAKE2b-256 f8cfc440fe2d56208f4b8e4890cf816e3482582a64de2753febf054b32ca5e7c

See more details on using hashes here.

File details

Details for the file pyFAI-0.18.0-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

  • Download URL: pyFAI-0.18.0-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.7m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.3

File hashes

Hashes for pyFAI-0.18.0-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 4c34368b8fc0b08d0363c3cc64f1dfadac7b2c58c2182050d3414b9384972100
MD5 904bc025e49599e1d0ccc0b51c667d17
BLAKE2b-256 df70b1c131c55a76e94eb96cbf4451cdf84743dbc8d4768d32b0ce9bdc7c74f7

See more details on using hashes here.

File details

Details for the file pyFAI-0.18.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pyFAI-0.18.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.3

File hashes

Hashes for pyFAI-0.18.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 327e7f62849dab98a180e51db42c0633b590a853ec8cdbdc1a312f1732bb8610
MD5 f690d9ac24bc93e2c80d51bdef0565f6
BLAKE2b-256 6d7c58124429398c316e30881980d852e89656680b69c826bfe345f236814124

See more details on using hashes here.

File details

Details for the file pyFAI-0.18.0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyFAI-0.18.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 16.1 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.3

File hashes

Hashes for pyFAI-0.18.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fe7554670648edaa3ebcfeef8eb1ad664ef7d20c0f914a3f6dfa0fb2ba2192dc
MD5 41f3f57c22da6cd6e574f521763e910a
BLAKE2b-256 8364005f7fe0b738c079cc3f8c00c80fdb4043dd5181d8e6c8cbcb69e9a33ce3

See more details on using hashes here.

File details

Details for the file pyFAI-0.18.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyFAI-0.18.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 15.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.3

File hashes

Hashes for pyFAI-0.18.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3be650414f3b1672696eb174eaa377f6dbebfd96634fd2978f15554014b99b86
MD5 cead44b1d50d1ac6b49df9a70fb34e59
BLAKE2b-256 a5b85f529643a22b800bcb4b77f481557dfa76c7940b0889cf20a68b8ca136fc

See more details on using hashes here.

File details

Details for the file pyFAI-0.18.0-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

  • Download URL: pyFAI-0.18.0-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 8.2 MB
  • Tags: CPython 3.6m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.3

File hashes

Hashes for pyFAI-0.18.0-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 e2660d4f7905a3d9c27114958f1734ffaca63c57d63f9f22d6b0cf31fc237000
MD5 28ea3206dd42bba19f41e0c7582882ef
BLAKE2b-256 ae1bcac44ac6fe4903600964e5eaacb1eb6ddfcbbbab8e58293b5fc639e793d5

See more details on using hashes here.

File details

Details for the file pyFAI-0.18.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: pyFAI-0.18.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.3

File hashes

Hashes for pyFAI-0.18.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 b479be792c08454f08e47d37bf012db14e930ab17b27948c230cf17e1ae7142d
MD5 20bc874052dc889a3109f58b8a2b5fd9
BLAKE2b-256 4abf7808514c29ed4fd6d34493678cee23fdca0cea5d7dd8cfd3fd3c7851b4b9

See more details on using hashes here.

File details

Details for the file pyFAI-0.18.0-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyFAI-0.18.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 15.6 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.3

File hashes

Hashes for pyFAI-0.18.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2dc1d9311bf8ab884d1404a0cc376e188bf72a248c8c0657f90edc7aa54e93c7
MD5 85c05a893bb9d990b44f2e0f09be2f3e
BLAKE2b-256 8fdfece3483d597cee1ad45acce496ee298ccf1792f2b34f0068d1e6dc9ff6bb

See more details on using hashes here.

File details

Details for the file pyFAI-0.18.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyFAI-0.18.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 14.6 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.3

File hashes

Hashes for pyFAI-0.18.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 f16b65d0b3414bf1544715765761921f72ba10611f694e6f201adcb635a16c75
MD5 f0d998d0d721db0e15d12fc486fe20cf
BLAKE2b-256 d53e5d5c3642c32234e83c1bab2af1e278dc8f139889ec40c3a73f24bd748ded

See more details on using hashes here.

File details

Details for the file pyFAI-0.18.0-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

  • Download URL: pyFAI-0.18.0-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.5m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.3

File hashes

Hashes for pyFAI-0.18.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 7e92971ad78580094a3039010fe86b66f8efbd2d53726cd4d26e78a0691bbda4
MD5 c1c11ba397dec2785d88da66084a3ce9
BLAKE2b-256 48d0c6dc02f68e235814fb8ea16839209e9241bfba3398136f6c3d919123bc6e

See more details on using hashes here.

File details

Details for the file pyFAI-0.18.0-cp34-cp34m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyFAI-0.18.0-cp34-cp34m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 15.8 MB
  • Tags: CPython 3.4m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.3

File hashes

Hashes for pyFAI-0.18.0-cp34-cp34m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0e2627aca5c3a1cf1d1e2bc9e1285f4526c4ca3b01711b849fb03ee821a13f4c
MD5 db0911bb118a6795d1f07c3b4067cadf
BLAKE2b-256 de8419639f4168efc2402d0fcece15c253a098c609f79f1d707f7199ce8632c3

See more details on using hashes here.

File details

Details for the file pyFAI-0.18.0-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyFAI-0.18.0-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 14.5 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.3

File hashes

Hashes for pyFAI-0.18.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e01fd5d9b767f33faa9905e41c39eeb1ebbe09707b5497b2cce19dbe693b2510
MD5 054ddbcd87a8652602b79cc093ca656a
BLAKE2b-256 3cc85fdddde541d215cf55bd96d3a3f413f86da159a6befb4688733c11ddc22a

See more details on using hashes here.

File details

Details for the file pyFAI-0.18.0-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyFAI-0.18.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 14.6 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.3

File hashes

Hashes for pyFAI-0.18.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 2bae0a72c6857ba040d07e0f0aa7758bc0a2134f5919affed75a9ebf6ca6bf8a
MD5 3d031d8bba0cc1fbd308792e1ed960ec
BLAKE2b-256 2fcf9a1d85beebd2e58a4c237d9cf1f25481ab0dd13fbc4f18f73d224d8415ca

See more details on using hashes here.

File details

Details for the file pyFAI-0.18.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyFAI-0.18.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 14.0 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.3

File hashes

Hashes for pyFAI-0.18.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c3c5cc4d90fd912ee690ce5b70825afc3cdc78241c2a9f7619a3818c0d84fac9
MD5 2cc9024ae4ecd6f52c7672fe424e9ed6
BLAKE2b-256 cc7e2fd8fa23ebd20b39edcaf6fe61fe157c4d8252e96d42bb270e224abd1f0f

See more details on using hashes here.

File details

Details for the file pyFAI-0.18.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: pyFAI-0.18.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.3

File hashes

Hashes for pyFAI-0.18.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 50b6bc088eeb61c39fa84725ee19635337c1f7662617bc48402a89103a329a6a
MD5 7865461c412e4ec94a47d615edc8cef1
BLAKE2b-256 0ab774da17e357a20751c73868844a1997ea0dcd9e28939009fa0bbb80b45677

See more details on using hashes here.

File details

Details for the file pyFAI-0.18.0-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: pyFAI-0.18.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 14.6 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.3

File hashes

Hashes for pyFAI-0.18.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5a6d4851ae16db1f997ae3a6c047cf649cc9109f9161988848d1c92bc6a68768
MD5 8865683fdce4db38652f12faf50a3078
BLAKE2b-256 c89a0d1a1b6c13d89852f017f34e9000c3710b41921833916529d6d07f4f4e1a

See more details on using hashes here.

File details

Details for the file pyFAI-0.18.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyFAI-0.18.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 14.0 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.3

File hashes

Hashes for pyFAI-0.18.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5b3109e2dd2e1665fa4d70856999cb7c7e90ee19a46d94a739fb64b55fa5223e
MD5 b1582d45a0d91a95e8b8f1d0e632af39
BLAKE2b-256 b56a605cb4fb3d94e13eaf9971fd20c136e5520533d059f3d2e6da609a1651c8

See more details on using hashes here.

File details

Details for the file pyFAI-0.18.0-cp27-cp27m-macosx_10_6_intel.whl.

File metadata

  • Download URL: pyFAI-0.18.0-cp27-cp27m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 8.1 MB
  • Tags: CPython 2.7m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.19.6 CPython/3.5.3

File hashes

Hashes for pyFAI-0.18.0-cp27-cp27m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 4d25bc075c5471455927dc06474ec0fd3174bc448059aef89a57511c503abc32
MD5 029b84539e5f8d97f3a27aeb3db1a677
BLAKE2b-256 4b6d18d7d1c53faccbf45d0b0a3ff04720cafd9594d7ad674e209e6f1b1592a0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page