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.4.1.tar.gz (724.5 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.4.1-cp311-cp311-win_amd64.whl (4.4 MB view details)

Uploaded CPython 3.11Windows x86-64

fabio-2023.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fabio-2023.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

fabio-2023.4.1-cp311-cp311-macosx_10_9_arm64.whl (987.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ ARM64

fabio-2023.4.1-cp310-cp310-win_amd64.whl (4.7 MB view details)

Uploaded CPython 3.10Windows x86-64

fabio-2023.4.1-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.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

fabio-2023.4.1-cp310-cp310-macosx_10_9_arm64.whl (993.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ ARM64

fabio-2023.4.1-cp39-cp39-win_amd64.whl (4.6 MB view details)

Uploaded CPython 3.9Windows x86-64

fabio-2023.4.1-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.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9macOS 10.9+ x86-64

fabio-2023.4.1-cp39-cp39-macosx_10_9_arm64.whl (1.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ ARM64

fabio-2023.4.1-cp38-cp38-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.8Windows x86-64

fabio-2023.4.1-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.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

fabio-2023.4.1-cp38-cp38-macosx_11_0_arm64.whl (994.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

fabio-2023.4.1-cp37-cp37m-win_amd64.whl (4.9 MB view details)

Uploaded CPython 3.7mWindows x86-64

fabio-2023.4.1-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.4.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

fabio-2023.4.1-cp37-cp37m-macosx_10_9_x86_64.whl (993.8 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for fabio-2023.4.1.tar.gz
Algorithm Hash digest
SHA256 2f3b9ba7471552db0a8c2f2e8b1cf6edfd47029523d704593863a0941ba67c3e
MD5 450d15b9319fe369a1809ea61ef82f24
BLAKE2b-256 47ae856a7579c7edeee7d8e77206040b70869dcb60cc1654afda70119d4a7723

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fabio-2023.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dcc94f6840e2ccdb4bdb271d91c3f8c66b4fde29db44d980881aef25426ea7da
MD5 edb551ba17334c0ff8600bb6754df85e
BLAKE2b-256 060105fdf35d1b2f18fd5018131551ab549df6ad8e535d3fe159def56a8976a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4ece68231360a27f561b8ce10a564a4d59db08d9827c3705e8362369efbdfc5
MD5 acebfd1a30489b59f4f3a22ffede7025
BLAKE2b-256 15ca133a7a160a41401a54589c92cf10a052fa87cb5c92c2364c5ea2485c3176

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 777efbb00fff923746c3d50d0cf0515e616d335c61e1d89e391e155d3d6aa32e
MD5 f1d01e5cdc3ce23be0139d64a7a173ae
BLAKE2b-256 536e04c301a06840c772a47eb421dc673d88e2467ecd0c112ef30553dc0cacaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.4.1-cp311-cp311-macosx_10_9_arm64.whl
Algorithm Hash digest
SHA256 762065ca15b0b2b7a6c5d6d4326e05eefb693ffdd35d52bd788299ebc6645960
MD5 23827a52ac62aa76f611ad9500b68448
BLAKE2b-256 3f625ecec130ab755f38da1b1b0a25d9d305fdef0aedaacd255058e34dfed58a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fabio-2023.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b2cd95093d04e7fe9b1f0cc975c8cc9473c05d7bc7f0a47ec7a6112ea0d9d55a
MD5 5f5308f82b7cf603c5595a9d01f3e47a
BLAKE2b-256 8c1feaf6645fe5ee4bc190e23c5336a7d22d1d72a2ec6b27837adaf1152f029c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f1f56d1aa3d0bf12b9ab851b0b7422d944e0aab5dc932c9947d1c3d9e239bee
MD5 71d62d1c14e6081561c2ada363b0b457
BLAKE2b-256 f7c016f2181ac4893c176c794a0d180dcfd52765bccce9f8c009d580e0652161

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9606480d2c701ce4db3e8de1298aa4255c30df59a6c05a34c6cca5cbecfd5560
MD5 31fea2ef77e997865338293d1e9ea6d7
BLAKE2b-256 4562d2a0da0d1bc2a66cc3e9ccaf25dee80827551c48046a1c1e483a9e8300bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.4.1-cp310-cp310-macosx_10_9_arm64.whl
Algorithm Hash digest
SHA256 8cf74d9019eec3ee245a5d299c7516437830f3df8bf19a34bd815c0cdfad38fd
MD5 561e252f6b1e62402a6bfb9226e59c66
BLAKE2b-256 66bddb2b212da09264129a0dd09408ff0150354ad5e232aad6d8782f2bdc208d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fabio-2023.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1f3aac0bd007f9a16fa5685d0d56c53928966a81eb9c9a9d3834d41e42ea2790
MD5 5e9dd035f4429e4d23f929f3eab4d05b
BLAKE2b-256 ae3fac43201f8c511dc8dce0e3fb8f4948280403a1d307e19757032adc196221

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22dee3ae50e52a4076d7f92d043d11be127298bc4c95635e9486364cbf788e6c
MD5 85bea9c9991c0e0c9e08f3ded83d6406
BLAKE2b-256 2a2103a997bdf363dcc8515db0bde9365ef72fafec4012396730f10a46acf84a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e4e56359a8f69f2cca9415672eccd8c0f93b6be85f2578f2e4630a2b4baa29d
MD5 e4e6ca14eda859ed6f4034dac0865f13
BLAKE2b-256 3a619b4d7b5988fa840831f1c4d761fa9a323197af8de5f7b0865caf72c77664

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.4.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7315e53b984507fa5d841d67f274d661063196964aeb8966778f1fcd65a1a594
MD5 c1668b28ff3a90b99583ecfaadea28af
BLAKE2b-256 ff9a1ad58bb32d7f2189ab588269232e8ce9f4be6faed8f82199a617f41081b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.4.1-cp39-cp39-macosx_10_9_arm64.whl
Algorithm Hash digest
SHA256 80f0ec5ec9f31714433d944a2dae58046aafde1039c4c6d8bd6442d269d97cbc
MD5 a8b5287fedb73d47f26a0c7ca738a254
BLAKE2b-256 78793a303493884e4984c6225e604d6b8188232413855106e31a97dd1f86cf51

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for fabio-2023.4.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 95f8cdc7d5bd129cae2ad68eac312a56315e5183f11cd951a0b38e7b8ebee1d4
MD5 09f9432c2c767c033c816faa6b681bc7
BLAKE2b-256 f9ce22d625471b2783a2d06ea0bb6a3035a43d057844d742a32fab784b08d9f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f7c9e6fdeb7552cc7a8a87c128a7e9c66deef876f372b84d05d4ac9c773e990
MD5 8d716f9a9ba2c19b1187fa7a807cd2ec
BLAKE2b-256 13919b205d27372f08bfd71f21864a5cd256f30490a276d7365beedecfa95f9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 251f375bcf42f575dec8e41760435bf129433746cb90597986d9bdd80e4e567b
MD5 0b99618496c63370de9ed58378ec8363
BLAKE2b-256 56f35b44705322731d6cd9ba1f86b2b5f0559936aeaa43b7d1cfda676063f8b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.4.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27517ff042554f88ee3a4eaae889d36a2c2d0df38bee6ca392a696fabfaa8001
MD5 13027a3a6938d7ba16d02c6589b517b1
BLAKE2b-256 a72d53eb565b8370b1b9aff2f247a9a6c7634e067c058fd264d089a33b0a91a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.4.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 67619f2c9b9e5af76980037320aa1a7974405a93570549696d3ad0aa3dc6a80a
MD5 ea7f6ea6deb646a3c72539ed0fab59f7
BLAKE2b-256 01e24a709fefe8874f5bdb042dac4f3a85454f9c1cd984c781f93f8a6e07d9a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fabio-2023.4.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.5

File hashes

Hashes for fabio-2023.4.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 71ccd0b0cbf8462ee82c7e672a01f050390d787107246e49436636681ae66562
MD5 0ff5cd9968d0991c7225f0940cb73ffa
BLAKE2b-256 c7e413d56d7fcf5fc9ed13ea2b682088fe0955fed26a675cf5bd49f387c8f4c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e32c4b17e3647963908f806d54756dac3caf082b2979e8ca49c127cde74d9f0
MD5 bfa0f3c2ba8fbc604f93b45a2784ed6d
BLAKE2b-256 771ff89d96522c92082f6f83c12d6aba512b1094f41a505c36317e6e4d22f789

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.4.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eac58eabdaacb91e7b8183d2293c7c5a91eba9afe5741a8ba00306e2cf3e4188
MD5 6c92ad3eda130086e3a12842aa0d8e20
BLAKE2b-256 7487f06fca19c8b206a47c50539b24a032ecf654d847ab1c831db366c312b6f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.4.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6134dec0818da7873e73391f708470ff499eee76cd12f30b7dc46a20c8237956
MD5 7d8e87d6424f8a2767c0e8b35ff02f98
BLAKE2b-256 7316afb84a66410a3bcc9879cf7d61129b214af33808b7dc0e52550e9de5e6c9

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