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:

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.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 Python 3.4 has beed dropped with 0.19 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)

Contributors

  • Valentin Valls (ESRF)

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

  • Thomas Vincent (ESRF)

  • Dimitris Karkoulis (ESRF)

  • Aurore Deschildre (ESRF)

  • Giannis Ashiotis (ESRF)

  • Zubair Nawaz (Sesame)

  • Jon Wright (ESRF)

  • Amund Hov (ESRF)

  • Dodogerstlin @github

  • Gunthard Benecke (Desy)

  • Gero Flucke (Desy)

Indirect contributors (ideas…)

  • Peter Boesecke

  • Manuel Sánchez del Río

  • Vicente Armando Solé

  • Brian Pauw

  • Veijo Honkimaki

Project details


Download files

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

Source Distribution

pyFAI-0.19.0.tar.gz (33.3 MB view details)

Uploaded Source

Built Distributions

pyFAI-0.19.0-cp38-cp38-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

pyFAI-0.19.0-cp38-cp38-manylinux2014_x86_64.whl (17.5 MB view details)

Uploaded CPython 3.8

pyFAI-0.19.0-cp38-cp38-manylinux1_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.8

pyFAI-0.19.0-cp38-cp38-macosx_10_9_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyFAI-0.19.0-cp37-cp37m-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.7m Windows x86-64

pyFAI-0.19.0-cp37-cp37m-manylinux2014_x86_64.whl (15.1 MB view details)

Uploaded CPython 3.7m

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

Uploaded CPython 3.7m

pyFAI-0.19.0-cp37-cp37m-macosx_10_9_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

pyFAI-0.19.0-cp36-cp36m-manylinux2014_x86_64.whl (15.2 MB view details)

Uploaded CPython 3.6m

pyFAI-0.19.0-cp36-cp36m-manylinux1_x86_64.whl (15.0 MB view details)

Uploaded CPython 3.6m

pyFAI-0.19.0-cp36-cp36m-macosx_10_9_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

pyFAI-0.19.0-cp35-cp35m-manylinux2014_x86_64.whl (14.6 MB view details)

Uploaded CPython 3.5m

pyFAI-0.19.0-cp35-cp35m-manylinux1_x86_64.whl (14.5 MB view details)

Uploaded CPython 3.5m

pyFAI-0.19.0-cp35-cp35m-macosx_10_9_intel.whl (7.8 MB view details)

Uploaded CPython 3.5m macOS 10.9+ intel

pyFAI-0.19.0-cp34-cp34m-manylinux1_x86_64.whl (14.4 MB view details)

Uploaded CPython 3.4m

File details

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

File metadata

  • Download URL: pyFAI-0.19.0.tar.gz
  • Upload date:
  • Size: 33.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.3

File hashes

Hashes for pyFAI-0.19.0.tar.gz
Algorithm Hash digest
SHA256 4dcbc92470997b5002d5626da4df428ab12efcfcec437d4cb001f41141665774
MD5 533a0de754ada06cdca0ec34f2e45331
BLAKE2b-256 3b40d50357134d3f9fd666505b85c23b18f541cc66949bc397d3ae1fdd3413f9

See more details on using hashes here.

File details

Details for the file pyFAI-0.19.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyFAI-0.19.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.3

File hashes

Hashes for pyFAI-0.19.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d71b867e78d3e0ad39911e4e21142ef0ffae9afb0508eea195c6daf6cbf9fcf4
MD5 7955a79e5e543cc0b8267eb842e37c78
BLAKE2b-256 275cbe972b04ee949cd0436d2059e2e5e13812ed473eb471f86eb7b88fc3d585

See more details on using hashes here.

File details

Details for the file pyFAI-0.19.0-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyFAI-0.19.0-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 17.5 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.3

File hashes

Hashes for pyFAI-0.19.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa2455c0ed958650a16299e5473726d8fe737e1aa975571184da489d72f1f84b
MD5 8a53e7ccfca6e926fc7f4a4fc1bf2330
BLAKE2b-256 cbcafd128ae0af89cd60f50a0db512999943fd8c0fe11535fc3a245a9ac87029

See more details on using hashes here.

File details

Details for the file pyFAI-0.19.0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: pyFAI-0.19.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 16.0 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.3

File hashes

Hashes for pyFAI-0.19.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 29f21fc0cfa37f81ae762f3132980b60e6e807c45da165834cdc13c02ec38491
MD5 e6816079bd7596a94130ba04268d1c6f
BLAKE2b-256 fae9833976190174825e281a873b983faf889c278e59226a4d5e2be66223e755

See more details on using hashes here.

File details

Details for the file pyFAI-0.19.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyFAI-0.19.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.3

File hashes

Hashes for pyFAI-0.19.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e7fec8f54f8f03d3d331809f11fd4e8c9e9abffd3e71c66cc4b237cc780ed631
MD5 6f11a2c689f1d894081770c22fb5de5d
BLAKE2b-256 83b04b3e487264b395a01172272cb578ae2c88b16f6bf392cc6ef00485a98617

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyFAI-0.19.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.3

File hashes

Hashes for pyFAI-0.19.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a51dcfe5f0cdcaf0262f4ec6e3ed567d42795044f57a983bac66fcf2adfa820d
MD5 e976f8b54329d4bdfd2347f9f7365da0
BLAKE2b-256 4a50467896587c19d0370524a08dbd88059a182c8c77a0392445fd5fa063150e

See more details on using hashes here.

File details

Details for the file pyFAI-0.19.0-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyFAI-0.19.0-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 15.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.3

File hashes

Hashes for pyFAI-0.19.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 619b277a9d23a7d8708a06f52016ed543781a341b71981552a39cb72144341a0
MD5 b5f6df48870e564263e3ed2f2b73d5de
BLAKE2b-256 70da8062ed7e33198e81afe9fcefd2efb6ff69d0ecd9e6560f08a79ab9ad6ce6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyFAI-0.19.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/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.3

File hashes

Hashes for pyFAI-0.19.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 366822c215f41375c416c06fdb13fc7f66307a55a90ce280a6e9a3a9746a1477
MD5 71b77a073ce927783085b3c9bb985b2e
BLAKE2b-256 abad703f90f753c8b72ba4bd85456ee9d3461341ab9b8d377352ae1087027abb

See more details on using hashes here.

File details

Details for the file pyFAI-0.19.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyFAI-0.19.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.3

File hashes

Hashes for pyFAI-0.19.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c857b27aaa2a24d60b35280719efe6daccaf7a7832f826b377cc4dfee9256ff2
MD5 2676795382a747140e8423ad723e6c80
BLAKE2b-256 625c94986444422eb41cd52b429e1a6ce8b35de1706bccaadba7cb1993ef548c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyFAI-0.19.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/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.3

File hashes

Hashes for pyFAI-0.19.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a6900c7f75de5772bb01965786b5b546c157d2c349395fb47d6a43e615687f28
MD5 bc883f9b813d8043513e610e2b33ed05
BLAKE2b-256 22cc50560e5f88aff7c2c64e61a730b50b72984cad4c51bb2b147276881e637c

See more details on using hashes here.

File details

Details for the file pyFAI-0.19.0-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyFAI-0.19.0-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 15.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.3

File hashes

Hashes for pyFAI-0.19.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88a7d62094ed072b46803d8cc84be857f2c6d18fe1fc8a43f9c710182cc4c60d
MD5 598dd10d547786fe2bf06a08ed983536
BLAKE2b-256 e141af01788a4d54350c0e9b442802bb8a160889e1dc4c677e04d5f7379efe43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyFAI-0.19.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 15.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.3

File hashes

Hashes for pyFAI-0.19.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ca9afcddab9c248441bb5eb185f7b5b497fc69b9328af96a980a0dcfcf114e9d
MD5 176405299fe09c1ebdfb7ad745ee80ce
BLAKE2b-256 b124f5224174a32370176f8a0c250354e8418d212a6de91a655afec6401e14b8

See more details on using hashes here.

File details

Details for the file pyFAI-0.19.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: pyFAI-0.19.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.3

File hashes

Hashes for pyFAI-0.19.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c82f50b38c855427786cbadaa31da54649d755311f8653ae460cf4cf662b1b72
MD5 402341a8f30c47c98ff6f7bfbe0e5114
BLAKE2b-256 d2db7193c888f0a3de100b9884398aa4888dfc872661f77eb2dc426dda9e29c9

See more details on using hashes here.

File details

Details for the file pyFAI-0.19.0-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyFAI-0.19.0-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 14.6 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.3

File hashes

Hashes for pyFAI-0.19.0-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c16ef21a8796f5131c67f852da0b9fa79457568a7d9e9fbf566b688c9a4aab1
MD5 25ff2fdc2278e83b1dbce576409e6349
BLAKE2b-256 8a9eea5bda8cb4803bdfbff7a4b03ad488eb71743878844e0cd9b2ba89d439e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyFAI-0.19.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 14.5 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.3

File hashes

Hashes for pyFAI-0.19.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 276e4add00253065aee92e3c241e2ccb7eeb9cead01a074baaf4bf9aa662cc4c
MD5 4e39ff813684025b3ddf062fffcca546
BLAKE2b-256 a4756d7b9f3ccb5d56fcbb692f3e24d2e6910fd50f0ace8960da2ac36b7bd972

See more details on using hashes here.

File details

Details for the file pyFAI-0.19.0-cp35-cp35m-macosx_10_9_intel.whl.

File metadata

  • Download URL: pyFAI-0.19.0-cp35-cp35m-macosx_10_9_intel.whl
  • Upload date:
  • Size: 7.8 MB
  • Tags: CPython 3.5m, macOS 10.9+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.3

File hashes

Hashes for pyFAI-0.19.0-cp35-cp35m-macosx_10_9_intel.whl
Algorithm Hash digest
SHA256 78276083f65e6f566e39003d7e45300861cb1a78c044c76b1a78eb58905eb3fb
MD5 3c64c4dfa5bca245d3d3a361638b1673
BLAKE2b-256 e1b538f2b5a9168313d64e4400d4eac888b49ef816ad002633c2d69c5bb5a1e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyFAI-0.19.0-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 14.4 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.42.0 CPython/3.7.3

File hashes

Hashes for pyFAI-0.19.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e28b4dfd7e7dfacd3b381400041184f07c9762db7b094e3ddeddcbed77a1c018
MD5 9b3faff32c310da43e4246fc9fa8de77
BLAKE2b-256 026a443d51bf66dce2501af38450699a950352ccfe2542cbbfbee7f773d4f653

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