Skip to main content

FabIO is an I/O library for images produced by 2D X-ray detectors and written in Python

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

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

fabio-2023.6.0.tar.gz (713.3 kB view details)

Uploaded Source

Built Distributions

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

fabio-2023.6.0-cp311-cp311-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.11Windows x86-64

fabio-2023.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fabio-2023.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

fabio-2023.6.0-cp311-cp311-macosx_10_15_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

fabio-2023.6.0-cp311-cp311-macosx_10_9_arm64.whl (939.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ ARM64

fabio-2023.6.0-cp310-cp310-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.10Windows x86-64

fabio-2023.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fabio-2023.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

fabio-2023.6.0-cp310-cp310-macosx_10_15_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

fabio-2023.6.0-cp310-cp310-macosx_10_9_arm64.whl (954.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ ARM64

fabio-2023.6.0-cp39-cp39-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.9Windows x86-64

fabio-2023.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fabio-2023.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

fabio-2023.6.0-cp39-cp39-macosx_10_15_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

fabio-2023.6.0-cp39-cp39-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fabio-2023.6.0-cp39-cp39-macosx_10_9_arm64.whl (954.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ ARM64

fabio-2023.6.0-cp38-cp38-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.8Windows x86-64

fabio-2023.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

fabio-2023.6.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

fabio-2023.6.0-cp38-cp38-macosx_11_0_arm64.whl (944.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fabio-2023.6.0-cp38-cp38-macosx_10_15_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

fabio-2023.6.0-cp38-cp38-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

fabio-2023.6.0-cp37-cp37m-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.7mWindows x86-64

fabio-2023.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

fabio-2023.6.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

fabio-2023.6.0-cp37-cp37m-macosx_10_15_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

fabio-2023.6.0-cp37-cp37m-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: fabio-2023.6.0.tar.gz
  • Upload date:
  • Size: 713.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for fabio-2023.6.0.tar.gz
Algorithm Hash digest
SHA256 b7b3761c965d99729712460c7043b283780157ca1fd3f7b275666a9eed6b4257
MD5 8a3f2beb8cf8f5372a50d02c45d5b63e
BLAKE2b-256 a9a5caa8be66b6cb97f6f3dedd63476a8c60f2c096dd8b725980de5d1842568a

See more details on using hashes here.

File details

Details for the file fabio-2023.6.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fabio-2023.6.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for fabio-2023.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6c0d73928a051e26d557124b55ead611d3da7e89e7e9cf50b62f6145a26843ca
MD5 85c2bcf28bd872cd69ddf339001f4f89
BLAKE2b-256 4c3aecfc3ed9aa84c8a0b68b0554579919dae6380a1c4dc81aae95953446bb79

See more details on using hashes here.

File details

Details for the file fabio-2023.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fabio-2023.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9408831927af476cf63921d05c51f44a9a205793020b10930646b813c8035a6f
MD5 59860c6ac852c74eee8ad70c825de045
BLAKE2b-256 b38c7d4a414da94b28fa87607821a45b8787082d73687ef9d57165d8ce5f0da4

See more details on using hashes here.

File details

Details for the file fabio-2023.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for fabio-2023.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 52b9d3c1bdd3a568e1cd8fa58cd902531a27b5c43c2b6d8cc2eef3b0a4320d68
MD5 6ca7a7c5dd93d6970e7192e73b41d28b
BLAKE2b-256 256b6393d7ecf44aa2ecb9a4a6f54e9c4dc360e6d0571ee508c4eb17e4097b55

See more details on using hashes here.

File details

Details for the file fabio-2023.6.0-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fabio-2023.6.0-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d857c0136cbc803e3db571faba51a79ec77990997a728bce391f889f411ca1b2
MD5 31b4e9a21d461135c805ae90d9f2eb8c
BLAKE2b-256 e3c9a7288b7eb8e4fb4076d470ac9936e23946b250de9342806403af4a62bdca

See more details on using hashes here.

File details

Details for the file fabio-2023.6.0-cp311-cp311-macosx_10_9_arm64.whl.

File metadata

File hashes

Hashes for fabio-2023.6.0-cp311-cp311-macosx_10_9_arm64.whl
Algorithm Hash digest
SHA256 2cdac379fc53f2f0d26401cb37114a2272399ca15e45e722754bc0f748188857
MD5 82a54f08ff43283875d4c98faee505b4
BLAKE2b-256 90f90aafe1aa195da9e2e30f89394b893138696068f18eba054c632460466f69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fabio-2023.6.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for fabio-2023.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 10c2602bd3114a561687d374a1f2b39c8fd2755b586464e458196e11174da309
MD5 d632a21b9d8070a6e568ec5814d0bbf9
BLAKE2b-256 f16db4c0d56d1592cf67f2fa5fa5e1d4d2ea1bad638d50b912729f2d395e56b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a731962506b891b91ee9e605a973c61c3eb38b1226e448d26696c52779d24555
MD5 f2b2229733c00ba4a416e44b6f3f50de
BLAKE2b-256 49989769c0ad8bb00fdb7a139f6d89c9889b796ea7ae4e84fbb570f173af0974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 04d607591b96355397b8b00a5104d689eb04d5af2282c7ba63b4aeb7b7353e0a
MD5 f4900a050f306569170b91f66f648004
BLAKE2b-256 5607921ed4652180321d46e8262d0f188629835d6b7c541fd1bc657a1bba7295

See more details on using hashes here.

File details

Details for the file fabio-2023.6.0-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fabio-2023.6.0-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f1b4a74a758ae43699a6bdc348bfdbe355c7c1237de678cc346a1ded1ba9bbd6
MD5 929261fffb6c1214440f89bf764e536d
BLAKE2b-256 d536b2d893fe75e3e0359ea150fa66bb1cd9089ef48cf96bf91614f99e99e1b7

See more details on using hashes here.

File details

Details for the file fabio-2023.6.0-cp310-cp310-macosx_10_9_arm64.whl.

File metadata

File hashes

Hashes for fabio-2023.6.0-cp310-cp310-macosx_10_9_arm64.whl
Algorithm Hash digest
SHA256 795a957cb07e7279e66a1b22c7125ba8ec8c4bde2716dccefb67c1afc3175318
MD5 2975bebdf651bff8348e20f201e65050
BLAKE2b-256 14ef1a58a9b55866d8b0ebfd61948a05fac580f9ab881ed5e492709b1e055cc2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fabio-2023.6.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for fabio-2023.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5dccb15c3284d0e735c85a344aa6f14709228a5fbb01a00e41d3a7d8e7f9e7db
MD5 255b12c06462b979c412a9670de5667e
BLAKE2b-256 74ab8af28c3aa32b350c28d61cbdb1fa3fc42ada40b3a449ff0d35a16c40b45c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb22d972d4e5dbff91c02e405a7d1ef0f029c26fa2756a25e342d1bd9fafb70f
MD5 22634ef3839203a5c2fe08d30fa7527c
BLAKE2b-256 4b1c11784c8e8b1636caec62a3849de4182479c7a63107edaa6b00dc14c9c00b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 46fba5469e623f6d3067ebf0d664fa7d8aaa8c55102eeef4fcd870435237e8e9
MD5 f72b11075e68f249868708dd34d6f201
BLAKE2b-256 c57033d5184c9fa63bd2892d738179c3468e5212bcd5e0c1d373c70a4b4a0779

See more details on using hashes here.

File details

Details for the file fabio-2023.6.0-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fabio-2023.6.0-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4dac19f0b603f59e863af027be510d9ae749ed743b03c0a5c907c0c58f4d1651
MD5 e623e427c59cc652a7df78d49a76dc72
BLAKE2b-256 6737feebe0c71839580ca1329e8a2013f4b46cc1f53b1a5fc16fae9b63d3cd37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.6.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cd3077a23bf661f52b5c87505a4015183339edc846acaa4976901778ccb6a91a
MD5 6fffcab8004f3ddb448dca8428f35c78
BLAKE2b-256 c70c6c3a2800c79ae8cf88ecc8579e83af5de517b1e5b3165802aafb344e579b

See more details on using hashes here.

File details

Details for the file fabio-2023.6.0-cp39-cp39-macosx_10_9_arm64.whl.

File metadata

File hashes

Hashes for fabio-2023.6.0-cp39-cp39-macosx_10_9_arm64.whl
Algorithm Hash digest
SHA256 d25b589572e7ea7005cd92a3a214a5fd3fd3575e3f15f7f34feedf50fd56cf6f
MD5 3d58fccc3aa9adb2ccc16beef0358540
BLAKE2b-256 c60d0763bc82f4d1d0655ea533aac23c51408df4496be1d8afc6231a7066c93c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fabio-2023.6.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for fabio-2023.6.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fb71e36f6d985532b0ba21ff4cc1c3e813ecedc669e26d24471da1adb6c85b29
MD5 189996abfc7c6a0c68e930bb760f3bbf
BLAKE2b-256 1db046e91e434c3321a0cb3e3502bddc9ca1734ad280cea7168f8c146510da21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1dfe392bb62b360b06e9acf93a6b5cd2beaac5ab738498c2f9aa65bad3d373a2
MD5 bcabd699e961ef3f18726fafa2c801e4
BLAKE2b-256 984a9c7381a817cbdc2ae76c53104d12a8e0cbacf8aa24d5a9ee752315b44f83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.6.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f79f0c8ec098b0c9cf7dbb7b44d8e27ed95e748e458ba4b65383c6a735a0daea
MD5 130fa3e408c3add1e7b07b0674f2c96a
BLAKE2b-256 ea3563e111ffc92f6233971b44050920c437193b3ce5f1635ca421e863a7c50b

See more details on using hashes here.

File details

Details for the file fabio-2023.6.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fabio-2023.6.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0bce63a84b47c4c0c2f9d36501c0882aec08fc5a5e59c8aed21b7053f315a21
MD5 b969d1d9c1fc4ad1607fd7c29f8e8866
BLAKE2b-256 f50c0530b62f100938430f85d812333cd4e287f5a0395ded232da4212799730f

See more details on using hashes here.

File details

Details for the file fabio-2023.6.0-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fabio-2023.6.0-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8e028468d518a7386347a8f138d1c4cc8fbe4f92eee6400298de75a0f0dfe487
MD5 56519f94488b8d0b00329948e4343a33
BLAKE2b-256 7845a2c9f738d5eee780e7ac9c01da3b0b0e93e4460fd3b76f731fa2fdc23965

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.6.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e5c548fbdeb51f45feb4e6dd3d7c637332855f71546453791f3857c2ba325a75
MD5 b2dde462ee8add643929ca1425778824
BLAKE2b-256 68ca2038cc38cde2299938e66c3f7d72d6a86455bcc51738ea812715e5c78413

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fabio-2023.6.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/4.0.2 CPython/3.11.0

File hashes

Hashes for fabio-2023.6.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 16e91f5ff7758fe28d3489bf75575b118b962c4f742f1a8b5c459c4bf4be89d0
MD5 4525622151aa427ebe96e8cbc2ed204a
BLAKE2b-256 956e6d11dd26470392a32fd5611f324addb9745b07adaa73d4305f67267453b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e018fbefc3dc3573affee8a7bd8f444ee151344d411b3b423e303545d0eb7244
MD5 6b5f9d23012e096635bcd42d76217828
BLAKE2b-256 7cb61d7f13afef0a80e21245b0c024a75daa109527ae3444d1b42cd3fd606619

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.6.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a5235699c4e8c9345fff6e50296989ac714c8c085e4f7e98ef05f76c25e2190a
MD5 aacaf9485fe7d53766e7ca5c73657c90
BLAKE2b-256 620c30639d8c00d8710aaa6f53b5bf035cb792e18ee55017cca496fbba05cb85

See more details on using hashes here.

File details

Details for the file fabio-2023.6.0-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for fabio-2023.6.0-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cc4d116dcd85dc3ff6207c450b50c62a8c4ca32137614ec5c12475dd4fbcc9f7
MD5 0cb215e8c56aeea0d91c3dc87e8a8206
BLAKE2b-256 e934ab641534971dff284e5ee82661468fd1045335a558deb872e167353aa60d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.6.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c1a8ce15f3cb94fbee2ec1ca606703adb2ddf312f949122464faf4fa0a431d6e
MD5 60b389e6b6d84c00407ea29f9e702296
BLAKE2b-256 4af1b1370126eb79b49e11b38f245ea18cf5e5d09f727827712db26c15da934c

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