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)

Getting FabIO

FabIO is available from PyPI.

Debian/Ubuntu packages, and wheels are available for windows, linux and MacOSX from the silx repository:

Documentation is available at silx.

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

FabIO is expected to handle gzip and bzip2 compressed files transparently. Following a query about the performance of reading compressed data, some benchmarking details have been collected at fabio_compressed_speed. This means that when your python was configured and built you needed the bzip and gzip modules to be present (eg libbz2-dev package for ubuntu) Using fabio in your own python programs Example:

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

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).

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

Installation

Please see doc/source/INSTALL.rst

Changelog

Please see doc/source/Changelog.rst

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.11.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.11.0-cp39-cp39-win_amd64.whl (897.5 kB view details)

Uploaded CPython 3.9Windows x86-64

fabio-0.11.0-cp39-cp39-manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.9

fabio-0.11.0-cp39-cp39-manylinux2014_ppc64le.whl (3.7 MB view details)

Uploaded CPython 3.9

fabio-0.11.0-cp39-cp39-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9

fabio-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl (945.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fabio-0.11.0-cp38-cp38-win_amd64.whl (897.0 kB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8

fabio-0.11.0-cp38-cp38-manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.8

fabio-0.11.0-cp38-cp38-manylinux1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.8

fabio-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl (931.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

fabio-0.11.0-cp37-cp37m-win_amd64.whl (880.3 kB view details)

Uploaded CPython 3.7mWindows x86-64

fabio-0.11.0-cp37-cp37m-manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.7m

fabio-0.11.0-cp37-cp37m-manylinux2014_ppc64le.whl (3.5 MB view details)

Uploaded CPython 3.7m

fabio-0.11.0-cp37-cp37m-manylinux1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.7m

fabio-0.11.0-cp37-cp37m-macosx_10_9_x86_64.whl (919.8 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

fabio-0.11.0-cp36-cp36m-win_amd64.whl (880.1 kB view details)

Uploaded CPython 3.6mWindows x86-64

fabio-0.11.0-cp36-cp36m-manylinux2014_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.6m

fabio-0.11.0-cp36-cp36m-manylinux1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.6m

fabio-0.11.0-cp36-cp36m-macosx_10_9_x86_64.whl (917.3 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: fabio-0.11.0.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for fabio-0.11.0.tar.gz
Algorithm Hash digest
SHA256 1d2fcf58006c82548a16004e607d4518613d49e4a2f02a3797703eee2b39c6d8
MD5 ceba02cf2df8f5ba8a2a4c24817dbad3
BLAKE2b-256 386d10ea9bfb0a462d88fd7c36630b6427480b1d7d758bfb7f4d50a73b2d7d15

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fabio-0.11.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 897.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for fabio-0.11.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 495fcbd3c2d966c5ec1fff89ffa621ec9e7855ec0e14a980715d8a24f30e6f89
MD5 e3ad0765bb258d9b8002285f600d1cdd
BLAKE2b-256 7f07c540ef715781c466f16e1a32fa9f92138f8c8def90fd6dc385a36319b90e

See more details on using hashes here.

File details

Details for the file fabio-0.11.0-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: fabio-0.11.0-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for fabio-0.11.0-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8e9b0df6d611eb3464f41e880c41367173743ea03db1c51aa9413c3ac6c8548
MD5 5ee158bbb6f4eafdaeb25804c5efa136
BLAKE2b-256 5e7c35a3f6dc8b05cf48e046e10d596849409b83c63e5e7f8ed35e54283617c1

See more details on using hashes here.

File details

Details for the file fabio-0.11.0-cp39-cp39-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: fabio-0.11.0-cp39-cp39-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for fabio-0.11.0-cp39-cp39-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3e5efe25db39a0f4618417ff7728144a057d6d970cf44c1e2e371354b170f337
MD5 13fa55c53270776345c1766e21754e7d
BLAKE2b-256 73a9d2ae36199ef9336c89b8442413e64fb2f3b052ee1b7f860b315ffd7e4ec2

See more details on using hashes here.

File details

Details for the file fabio-0.11.0-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: fabio-0.11.0-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for fabio-0.11.0-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 57237d1c682138b3b0bab5c700a47f2b752177a01ae8453a507c46e9e0b27204
MD5 eaba1029cfd7f8180b8fe1af71b1138d
BLAKE2b-256 b702e71eef761d3b2d4a85468671929cdd3476653e0dd2a49e57301718c883bb

See more details on using hashes here.

File details

Details for the file fabio-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: fabio-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 945.4 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for fabio-0.11.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 26a84f4df42f49191a0e92ac3c5c49c820a279ba2f44bb8c6c413b8a92573628
MD5 c194d6ab794a3b8a5eef69dceb95c49f
BLAKE2b-256 f65b651fdb0b76cf1c6bc006cc9500e3d64212d690281311a68bcf791ffeef08

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fabio-0.11.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 897.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for fabio-0.11.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 84ddd9e222b173ea6c5460bce12254b5e8f1f403f38338e7045630232e1b86a0
MD5 45923ae3d1027b7df66b31246e11d64b
BLAKE2b-256 6a1567be124b7eeb472cb8a4c970dfe1aa189c40c5247444a250a1195cb7314e

See more details on using hashes here.

File details

Details for the file fabio-0.11.0-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: fabio-0.11.0-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for fabio-0.11.0-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f034402d492030c3a50680c0b2041c8cf7b2bf0f5b765d1c18d6ef9fdcf7fa65
MD5 c76b87e729c2f8a20bb7030f071bd82c
BLAKE2b-256 7f7cad2aa4f780be61a1e4520635741ccbb2357050a0ee31d7d6239c8820e7f6

See more details on using hashes here.

File details

Details for the file fabio-0.11.0-cp38-cp38-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: fabio-0.11.0-cp38-cp38-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for fabio-0.11.0-cp38-cp38-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dbcc23d156305dd34b466976b30f79a23f1f04655225b1960c197317d0b55412
MD5 2523ce3433c2520d6b394f6d71fab66a
BLAKE2b-256 e63465b3deb2a0a27be4d04399e51225a0bfdaa81ba6d940dd60fa8d8245b45a

See more details on using hashes here.

File details

Details for the file fabio-0.11.0-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: fabio-0.11.0-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for fabio-0.11.0-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 79458ee820f3473e1ae76f776aeca0258ee685d8f5f789ff986671b09e5bf32d
MD5 4f4715e4b94ad2b647f23b05d2b7a7b8
BLAKE2b-256 49d1f55bd0359b35e748f544b7c4df29b334fe31f88dec1f869de158d4aad513

See more details on using hashes here.

File details

Details for the file fabio-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: fabio-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 931.2 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for fabio-0.11.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f2d2d25b3a50204e90dd55ac91e28407e06c668525585522aeb466a33de2302c
MD5 d260f007970d42b55cb8572242e3c949
BLAKE2b-256 92d3aca80a9deb790c4ef09e9abb11d3b4142f377155b49214c32b262ae4e171

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fabio-0.11.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 880.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for fabio-0.11.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 05ec2005f6ccd61f2e46711982c158903cb2799448ea1b23cbd255f9a591afa9
MD5 5d5e8aac0b0af4abe09db350841ccacd
BLAKE2b-256 1e265925613f8c453a3c1714ee885d990bc10f9cb48138df9872a761d9c50072

See more details on using hashes here.

File details

Details for the file fabio-0.11.0-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: fabio-0.11.0-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for fabio-0.11.0-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c77fc6a9fd75a47c0136ccf9c9cbafcdc8e138368d85bb6708f8263d651203b2
MD5 6855efb64442fd3a32ff578c37137665
BLAKE2b-256 3c1bd38a7c5a02bd27e2ed27f65bb509123a5caad4577dd1ac992060e5d61f6e

See more details on using hashes here.

File details

Details for the file fabio-0.11.0-cp37-cp37m-manylinux2014_ppc64le.whl.

File metadata

  • Download URL: fabio-0.11.0-cp37-cp37m-manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for fabio-0.11.0-cp37-cp37m-manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f24330f49421fd4aee84e67f1ac8b1fe0d34dbc27159423f3ec4cb548c651e43
MD5 b305609e9287dbc7e701cbf9be20f31d
BLAKE2b-256 a067b4a103d01bb5608046c1dd5c70c6898d646e29e4a53c75c8a30aef3f6879

See more details on using hashes here.

File details

Details for the file fabio-0.11.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: fabio-0.11.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for fabio-0.11.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 65f51ced9d86b1e6562f5c3e3430bcd2561411615c8ba154d80c0110f427bb51
MD5 92808092df7b4cf43bcf92e5c9bb1912
BLAKE2b-256 adecab7b5be5b3da5f3c234f74e01d6f7a6884a983cf18b0176b349313c82af0

See more details on using hashes here.

File details

Details for the file fabio-0.11.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: fabio-0.11.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 919.8 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for fabio-0.11.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7ecc7dc8e0c77ea5593e7f9aa22e3af7370b12a644eacbd37a7c4287511895de
MD5 c89182b617e4faa6d0d63058ae5e93b1
BLAKE2b-256 ab462de5b83efa8580570c811914bb79f8e0ffde46d559030322c767b234f25a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fabio-0.11.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 880.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for fabio-0.11.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 f6fc5f90ce930b87f5855239d0371b000ba7f4bb9295859ed43e1c2d13ae0f5b
MD5 7f6cc8f1c32052ff985728e5e9a0e3b2
BLAKE2b-256 affb5a2aea7a2b0da2d4b760d3785c0012a5b38125ed58c961cfeb2143728697

See more details on using hashes here.

File details

Details for the file fabio-0.11.0-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: fabio-0.11.0-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for fabio-0.11.0-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23a4ca64cd815b3c196d3aa96f2d04f96331ceae2d2ad5af9f566fa274780a53
MD5 634a033e0e620c7df5de362c6e306618
BLAKE2b-256 54bb6336b5dda3512d3c665f4b9fcade6bc2d71a4ef3a5a3ca32b981257b76af

See more details on using hashes here.

File details

Details for the file fabio-0.11.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: fabio-0.11.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for fabio-0.11.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2de87388ff6bcfc70657f89ff39fb584489f93e849be6a744508c8ab118f2db1
MD5 165fbd26ef4b5aa52141f78855a0b6bb
BLAKE2b-256 e318c6c7c7dad2567c532d47fd21689ac37cfdf12b4e35ed08ff5e1e9ce8016f

See more details on using hashes here.

File details

Details for the file fabio-0.11.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: fabio-0.11.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 917.3 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.55.1 CPython/3.9.1

File hashes

Hashes for fabio-0.11.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 33110ce05b7fffaf4cc986c7691f3c92649defc60432b06fd579b889232f0ce3
MD5 b56b1f00ab2e727349f40578c37eb722
BLAKE2b-256 73988a86e5e1a132fbf40c47ed3034849383400dc4a7b19e40ed5ceeaff8589a

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