Skip to main content

Image IO for fable

Project description

Main websites:

Build Status Appveyor Status


FabIO is an I/O library for images produced by 2D X-ray detectors and written in Python. FabIO support images detectors from a dozen of companies (including Mar, Dectris, ADSC, Hamamatsu, Oxford, …), for a total of 30 different file formats (like CBF, EDF, TIFF, …) and offers an unified interface to their headers (as a Python dictionary) and datasets (as a numpy ndarray of integers or floats)

Installation

FabIO is available from PyPI:

pip install fabio

Debian/Ubuntu packages, and wheels are available for Windows, Linux and MacOSX from the silx repository.

See the installation instructions for more information.

Usage

Open an image

>>> import fabio
>>> obj = fabio.open("mydata0000.edf")
>>> obj.data.shape
(2048, 2048)
>>> obj.header["Omega"]
23.5
>>> obj.data
array([...])

Save an image (ex: EDF)

>>> import fabio
>>> obj = fabio.edfimage.EdfImage(data=[...])
>>> obj.write("mydata0000.edf")

Documentation

See the latest release documentation for further details.

Documentation of previous versions are available on silx.

Changelog

See http://www.silx.org/doc/fabio/latest/Changelog.html

Citation

The general philosophy of the library is described in: FabIO: easy access to two-dimensional X-ray detector images in Python; E. B. Knudsen, H. O. Sørensen, J. P. Wright, G. Goret and J. Kieffer Journal of Applied Crystallography, Volume 46, Part 2, pages 537-539.

Transparent handling of compressed files

For FabIO to handle gzip and bzip2 compressed files transparently, bzip and gzip modules must be present when installing/building Python (e.g. libbz2-dev package for Ubuntu).

Benchmarking details have been collected at http://www.silx.org/doc/fabio/latest/performances.html.

Supported file formats

  • ADSC:

    • AdscImage

  • Bruker:

    • BrukerImage

    • Bruker100Image

    • KcdImage: Nonius KappaCCD diffractometer

  • D3M

    • D3mImage

  • Dectris:

    • CbfImage (implements a fast byte offset de/compression scheme in python/cython)

    • PilatusImage (fileformat derived from Tiff)

    • EigerImage (derived from HDF5/NeXus format, depends on h5py)

  • ESRF:

    • EdfImage: The ESRF data Format

    • XsdImage: XML serialized image from EDNA

    • Fit2dImage: Fit2d binary format

    • Fit2dmaskImage: Fit2d Mask format

    • Fit2dSpreadsheetImage: Fit2d ascii tables (spread-sheet)

    • LimaImage: image stacks written by the LImA aquisition system

    • SparseImage: single crystal diffractions images written by pyFAI

  • General Electrics

    • GEimage (including support for variant used at APS)

  • Hamamatsu

    • HiPiCImage

  • HDF5: generic format for stack of images based on h5py

    • Hdf5Image

    • EigerImage

    • LimaImage

    • SparseImage

  • JPEG image format:

    • JPEG using PIL

    • JPEG 2000 using Glymur

  • Mar Research:

    • MarccdImage (fileformat derived from Tiff)

    • Mar345Image imaging plate with PCK compression

  • MPA multiwire

    • MpaImage

  • Medical Research Council file format for 3D electron density and 2D images

    • MrcImage

  • Nonius -> now owned by Bruker

    • KcdImage

  • Numpy: generic reader for 2D arrays saved

    • NumpyImage

  • Oxford Diffraction Sapphire 3

    • OXDimage uncompressed or with TY1 or TY5 compression scheme

    • Esperanto format (with bitfield compression)

  • Pixirad Imaging

    • PixiImage

  • PNM

    • PnmImage

  • Princeton Instrument SPE

    • SpeImage

  • Raw Binary without compression

  • Rigaku

    • RaxisImage

    • DtrekImage

  • Tiff

    • TifImage using either:
      • Pillow (external dependency)

      • TiffIO taken from PyMca

Design Specifications

Name:

FabIO = Fable Input/Output

Idea:

Have a base class for all our 2D diffraction greyscale images. This consists of a 2D array (numpy ndarray) and a python dictionary (actually an ordered dict) of header information in (string key, string value) pairs.

Class FabioImage

Needs a name which will not to be confused with an RGB color image.

Class attributes, often exposed as properties:

  • data -> 2D array

  • header -> ordered dictionary

  • rows, columns, dim1, dim2 -> data.shape (propertiy)

  • header_keys -> property for list(header.keys()), formerly used to retain the order of the header

  • bytecode -> data.typecode() (property)

  • m, minval, maxval, stddev -> image statistics, could add others, eg roi[slice]

Class methods (functions):

  • integrate_area() -> return sum(self.data) within slice

  • rebin(fact) -> rebins data, adjusts dims

  • toPIL16() -> returns a PILimage

  • getheader() -> returns self.header

  • resetvals() -> resets the statistics

  • getmean() -> (computes) returns self.m

  • getmin() -> (computes) returns self.minval

  • getmax() -> (computes) returns self.maxval

  • getstddev() -> (computes) returns self.stddev

  • read() -> read image from file [or stream, or shared memory]

  • write() -> write image to file [or stream, or shared memory]

  • readheader() -> read only the header [much faster for scanning files]

Each individual file format would then inherit all the functionality of this class and just make new read and write methods.

There are also fileseries related methods (next(), previous(), …) which returns a FabioImage instance of the next/previous frame in a fileserie

Other feature:

  • possibility for using on-the-fly external compression - i.e. if files are stored as something as .gz, .bz2 etc could decompress them, using an external compression mechanism (if available).

Download files

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

Source Distribution

fabio-0.13.0.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

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

fabio-0.13.0-cp310-cp310-win_amd64.whl (880.3 kB view details)

Uploaded CPython 3.10Windows x86-64

fabio-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fabio-0.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

fabio-0.13.0-cp310-cp310-macosx_10_9_universal2.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

fabio-0.13.0-cp39-cp39-win_amd64.whl (865.8 kB view details)

Uploaded CPython 3.9Windows x86-64

fabio-0.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fabio-0.13.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

fabio-0.13.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ x86-64

fabio-0.13.0-cp39-cp39-macosx_10_9_universal2.whl (1.5 MB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

fabio-0.13.0-cp38-cp38-win_amd64.whl (866.4 kB view details)

Uploaded CPython 3.8Windows x86-64

fabio-0.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

fabio-0.13.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

fabio-0.13.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ x86-64

fabio-0.13.0-cp38-cp38-macosx_11_0_universal2.whl (1.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ universal2 (ARM64, x86-64)

fabio-0.13.0-cp37-cp37m-win_amd64.whl (851.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

fabio-0.13.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

fabio-0.13.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

fabio-0.13.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ x86-64

fabio-0.13.0-cp36-cp36m-win_amd64.whl (910.8 kB view details)

Uploaded CPython 3.6mWindows x86-64

fabio-0.13.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

fabio-0.13.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.5+ x86-64

File details

Details for the file fabio-0.13.0.tar.gz.

File metadata

  • Download URL: fabio-0.13.0.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.1 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.2

File hashes

Hashes for fabio-0.13.0.tar.gz
Algorithm Hash digest
SHA256 42d2b04cc602a018bda1a6822725a75148674ab561410a0f99036dd9361c624a
MD5 2c72eec3248e098b1361cb40f8e4fc7d
BLAKE2b-256 cfba4d447bae5c6a9e7ee9dc500fa2e7193758ea3083e62bfd6a6194703cc220

See more details on using hashes here.

File details

Details for the file fabio-0.13.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fabio-0.13.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 880.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.1 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.2

File hashes

Hashes for fabio-0.13.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bbdf84f8445fde1e1be92e03d3a6c8f1f2c7947bb9c46db9e55ea81d536531a4
MD5 2775f1b70ebc08ee48489d32ae42780e
BLAKE2b-256 56402ad2eca1f5624567fb84c4215d9b3fe76f9d7b693497eb3acb661768e8cf

See more details on using hashes here.

File details

Details for the file fabio-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fabio-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 604630de91ebb9378dbbeb2b934975e63b120902681cd2afbb3bc611b1139483
MD5 acace8cd4bcb3c239eede803fbad3204
BLAKE2b-256 b8107aaea41bb2451e95bde6d4db0452f826f608fcf215ba453415afac6544b3

See more details on using hashes here.

File details

Details for the file fabio-0.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fabio-0.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d868f3aecf675a93f306c9ec64cf2151de88e08f1a3da3a8d631bf15df8bc050
MD5 0d0a0298b6a4eda35af6c1d48c5dbdc1
BLAKE2b-256 a7fb08a80ba55197197da3958a938d60829ffd7b6682843a36ce9b43cf3f585a

See more details on using hashes here.

File details

Details for the file fabio-0.13.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

  • Download URL: fabio-0.13.0-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.1 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.2

File hashes

Hashes for fabio-0.13.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 92a3d494ad5e3bc5f30fa39145fc2bba00aa2a3f47f44147ef279ef5ee2db922
MD5 89fda6c563b11f6cc0833f781b80e193
BLAKE2b-256 60c9c6dbd29cc9fd0bf4950b0a2c314665a1bd9acddcaf738152fbedde2b5836

See more details on using hashes here.

File details

Details for the file fabio-0.13.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fabio-0.13.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 865.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.1 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.2

File hashes

Hashes for fabio-0.13.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9d67c16600d4a4f91bde0cb1033cc1d46e43a75e6f43dbef7c31d1b9fe65be0d
MD5 1abd95092321cde301e76a0f7a864427
BLAKE2b-256 a70ca03976bb6e1e6c98cf0c0af4947f22145cabf45c4fb1b7bb1635b7401218

See more details on using hashes here.

File details

Details for the file fabio-0.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fabio-0.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93ae42a4d310ae45b6798cbeb386da06afbb57e7b57db73664dd134b68a5b501
MD5 825ca648f37f9de29e07537a3282581d
BLAKE2b-256 7384254f6c42cf892602f6a0f235363357024b2380c7be8aeca850782e16bebd

See more details on using hashes here.

File details

Details for the file fabio-0.13.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fabio-0.13.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 78b1c90fa5aa3068e2485bdba4c15304dcd134c43a0c3762a0504b80fc7fdee7
MD5 07c6a874f55e355361f5cc9c46e6fa74
BLAKE2b-256 861be9509464833335da18ecaf3e2d65a1cc378d48757de222d3f82d0e41766a

See more details on using hashes here.

File details

Details for the file fabio-0.13.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

  • Download URL: fabio-0.13.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.9, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.1 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.2

File hashes

Hashes for fabio-0.13.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 633339e2aae9bdd1ff7cf859cb7ed6466759b98815db4e1930725308858afaf6
MD5 6ffcac9ec17a7a0ada9322046c21053d
BLAKE2b-256 483bffec6352557ab0a81a41809542918287e032a7cde91b30bfa66a747b6fc8

See more details on using hashes here.

File details

Details for the file fabio-0.13.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: fabio-0.13.0-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.1 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.2

File hashes

Hashes for fabio-0.13.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 72b6916d8d6b7425bbdeee076519c3335b26da586de2dced6b660e93322e7f3e
MD5 d9301f6b040bedfc41e2cbb6f7cc751b
BLAKE2b-256 51585fbea0d16ca733a44cb904db5cd188e391fb015a6809292a26980789a471

See more details on using hashes here.

File details

Details for the file fabio-0.13.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: fabio-0.13.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 866.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.1 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.2

File hashes

Hashes for fabio-0.13.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6db1053b42f1c8832e67e750778ddf8e78c3e5ea2ecdf30b884b9c353634eed1
MD5 886d14814be2c31ade53d9265398143e
BLAKE2b-256 de22b315e7fb2dc68bc6f08e0b895328e71004812e067771a949bf19f08f94b2

See more details on using hashes here.

File details

Details for the file fabio-0.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fabio-0.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aba11712115133c2940e9e37ed9770c1be15be905b073dcef0e7d088edc2b461
MD5 c5376459103ee615a231bde242a6516f
BLAKE2b-256 4a79d4922114772fa4666dddb63a5f048d21defbe58ddcebe7c533f506382f08

See more details on using hashes here.

File details

Details for the file fabio-0.13.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fabio-0.13.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eebba6cc7fdba434922fd590c1f83e9b5c89a1682f50b7f6315b0b7c9aed1101
MD5 10eb5689fad354c9945b9f0ec95db0be
BLAKE2b-256 858005b9ea65e2e26a372547fb5776cf7a356dbace8632b79a4b4dbbbee05188

See more details on using hashes here.

File details

Details for the file fabio-0.13.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

  • Download URL: fabio-0.13.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.1 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.2

File hashes

Hashes for fabio-0.13.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 73e458e65eb26f2b75cdbb14b72882c2a63923e20d517ffeaac1018eff5e5baf
MD5 e5a9f4a84bfc1965698c7d409da9b83f
BLAKE2b-256 293fd297387ab86d7a27db27b90fdb6de8f7f1735600f0d57e1e441d35003424

See more details on using hashes here.

File details

Details for the file fabio-0.13.0-cp38-cp38-macosx_11_0_universal2.whl.

File metadata

  • Download URL: fabio-0.13.0-cp38-cp38-macosx_11_0_universal2.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.8, macOS 11.0+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.1 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.2

File hashes

Hashes for fabio-0.13.0-cp38-cp38-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 21defa2f05292ef903b46661fd80ca1700728a22293609ef6bc7a19e89adbd6f
MD5 1d159d26f6bc22acab7e01857e33d7df
BLAKE2b-256 c2f3a21663ab616990a7373a1c4afa1bef44e0ec5c7d501fcf12104c40dc5e0b

See more details on using hashes here.

File details

Details for the file fabio-0.13.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: fabio-0.13.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 851.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.1 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.2

File hashes

Hashes for fabio-0.13.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d1ef16977901dfa1742fec7b783942645a9b48deaf5404a65d064d6cb4166297
MD5 8dc48a5e6073f2a2bf719417fe4861ce
BLAKE2b-256 2ce2dc0833c69cbd6c25fc7d217d66a0e5fc32f5494740a03b3c7182deb4b879

See more details on using hashes here.

File details

Details for the file fabio-0.13.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fabio-0.13.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d3a08406b51380ec16336554afa876086b298ff1842a7ab2bde0257e2a42e07
MD5 bbe5cc80ba6768d4ce107bdf2d918154
BLAKE2b-256 8a85db1292e5ec23a65af9b4d7ac1838181b5465f3c31439a89c5972b76aa23b

See more details on using hashes here.

File details

Details for the file fabio-0.13.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fabio-0.13.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 221db26204b00e33ce18198b022b290457e7c2dcde80774fc06a929be076ccad
MD5 0a616ae208b4e868c8b3285219c78bff
BLAKE2b-256 12afc6691e95948b65a8a7bd77a4be8f20cb456d8c973f84a407099896486567

See more details on using hashes here.

File details

Details for the file fabio-0.13.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

  • Download URL: fabio-0.13.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.1 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.2

File hashes

Hashes for fabio-0.13.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 12012221f0cd8ebee819a04648ac9a66e9c4837d6b8265668579b6a01e05a3d0
MD5 fed7543bcb315374c8085b1ef993727f
BLAKE2b-256 13749a7869534159e0bee12886286b51a6f38652fea3e75ecafd0fb5661f87ee

See more details on using hashes here.

File details

Details for the file fabio-0.13.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: fabio-0.13.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 910.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.1 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.2

File hashes

Hashes for fabio-0.13.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a7f49f996275479a850032f076269abde6fcfb3784d75a4ec158e3df27015126
MD5 7d12476bfd8c37888807333c087cbb4f
BLAKE2b-256 ae4ea2fe2609cc88215c7fa8abe30dc934cf11a5b73feebfeca800d53bea4c59

See more details on using hashes here.

File details

Details for the file fabio-0.13.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fabio-0.13.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9184b0164da9bd3484d3406bb94111e2670efbf370af0302ef3f4a0d3d724138
MD5 f605d303392ca21dcc9fb114d3361254
BLAKE2b-256 8c17fe0e8fa176d3bd6a27837d74aed31ee32708acf672f9be944fa8319be57f

See more details on using hashes here.

File details

Details for the file fabio-0.13.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

  • Download URL: fabio-0.13.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.5+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.1 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.2

File hashes

Hashes for fabio-0.13.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e0c1898d04f65e0e3f5c58f51a7a0338b6f2b032fa2e169e6d7bf96c789fc0a2
MD5 fc4ffed085b12b7644e8052fb211f3b7
BLAKE2b-256 79dbd1441f7eaf5e6e01624b5cc6bb22d20ce107627fa0bb3ccd63d6bc106da7

See more details on using hashes here.

Supported by

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