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 supports detector images from a dozen companies (including Mar, Dectris, ADSC, Hamamatsu, Oxford, …), for a total of 30 different file formats (like CBF, EDF, TIFF, …) and offers a 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 is 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 (file format 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 acquisition system

    • SparseImage: single crystal diffractions images written by pyFAI

  • General Electric

    • 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 (file format 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 (property)

  • 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 file series

Other features:

  • 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-2026.6.0.tar.gz (903.0 kB view details)

Uploaded Source

Built Distributions

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

fabio-2026.6.0-cp314-cp314-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.14Windows x86-64

fabio-2026.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fabio-2026.6.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

fabio-2026.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fabio-2026.6.0-cp314-cp314-macosx_11_0_arm64.whl (974.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

fabio-2026.6.0-cp313-cp313-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.13Windows x86-64

fabio-2026.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fabio-2026.6.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

fabio-2026.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fabio-2026.6.0-cp313-cp313-macosx_11_0_arm64.whl (970.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

fabio-2026.6.0-cp313-cp313-macosx_10_13_x86_64.whl (995.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

fabio-2026.6.0-cp312-cp312-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.12Windows x86-64

fabio-2026.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

fabio-2026.6.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

fabio-2026.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fabio-2026.6.0-cp312-cp312-macosx_11_0_arm64.whl (970.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fabio-2026.6.0-cp312-cp312-macosx_10_13_x86_64.whl (995.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

fabio-2026.6.0-cp311-cp311-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

fabio-2026.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

fabio-2026.6.0-cp311-cp311-macosx_11_0_arm64.whl (966.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fabio-2026.6.0-cp311-cp311-macosx_10_9_x86_64.whl (988.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: fabio-2026.6.0.tar.gz
  • Upload date:
  • Size: 903.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for fabio-2026.6.0.tar.gz
Algorithm Hash digest
SHA256 d18193b37c61af83add793c5619dc02d22f3a4e54c448f7bad89f97d0949f4ff
MD5 bf69aa89a95f47491ad1964cde59c8c1
BLAKE2b-256 06bd9b43ef1abfc9481bfa1ceb8dd550a2e9231723d4eae7e29212f2dffe7a15

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: fabio-2026.6.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for fabio-2026.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 be506ee087a490df5ab238570307095a2ad93de9a39e4fafd3d9b4788e92f6d9
MD5 090e3059e5c2dfa7b8256b478044f323
BLAKE2b-256 d81b3d85ec02e3712058197fdeee9db41ad18e8a3baeb8cfd9bc1be74e8218c0

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fabio-2026.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fac184e9fc0d05bf0ffce8f0fc37835426585593818ac41b50f5df64be608dd9
MD5 cacc13a6802cae5e4418e96ce9fdce25
BLAKE2b-256 8f44aa8bc0a660581663fb957d9005851d23736757cae3e58231a8a1030c9f9e

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for fabio-2026.6.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a61806149fb6437d6d6bcdade30a4a1cb72eb29b06db48643c357d3db3df6dd2
MD5 4daa4ea8677d08c1a08890032463e80d
BLAKE2b-256 ecaad234736c234ae8fde22fcac2d2319ece018dbb876f2a271c5c4bf2a1f50b

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fabio-2026.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 261b2592151e5e4c2e52f50311601f3c8897546f45337ad5e153ce9cd1b4136f
MD5 57f9e348a93b2e09f0355da206f5726d
BLAKE2b-256 b0bb13cefc21d69b0b7fb98b2f19ade48c6a7c808a136ba7f02b2140c84c3099

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fabio-2026.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 898534c4c865a9974d84a69cb4e3fdafa3638f7a2361df0db033e271804aab8d
MD5 72b7a30174876a8125d215fa39482022
BLAKE2b-256 64a4369f31daf13c58683698c03f7e05528cd2710994ba7dbed5ea843db4ab20

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: fabio-2026.6.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for fabio-2026.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 292c0f6fa7f74b58f1459535fd7131a1197840efe67cd33930d862743ce3dbbf
MD5 ee98752ddbb1c41ee54a9353c093a367
BLAKE2b-256 3b77d7e190ea30b6b3aad5144dbc9ffd73ebdebbe90321c9df794314870b23ed

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fabio-2026.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f35e166003ee241747f599d2ab405bb5b9cbd1d7965aeb2fc3ff8a9a7056c6d5
MD5 571a87e072e8a04ac9c35aa3d39b222d
BLAKE2b-256 775db5d60b19e7942f5bd63fd9a06558c7c978ac65ef88a0c323f5f85fb176c3

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for fabio-2026.6.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 09b5f43813f4242af9ece6e14addaba112ee5279e149d7a6e7e7b7f280a2879b
MD5 63fe7c6d69c1ed99949da8aa549bfccd
BLAKE2b-256 3afe631cc8ce63fedb0c288305a6bf532b89b8e44d6391e614adb4f994057fe7

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fabio-2026.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf7895b99a66117255ef2c44a512eb193d28909848be32d508bb0dd69affec6e
MD5 eec84fc49e6244f9be1ebc1671af5960
BLAKE2b-256 1580ae267c7d5d3d484dc7b7ffe3c20a0941c9112e3f591435842182014c5203

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fabio-2026.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 959f34e764c7a962ed9eda19c3bc0fb8128b854471ad38c2ca0c3d8362fb3d9b
MD5 88fa39765dd5c03474b3fc14687e2010
BLAKE2b-256 a0b26d81d86f7762873672cfa4b639f4af44a7418fbfedaf1e241dcaf6e18d21

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fabio-2026.6.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a85ca5f7dff992bf1c80c66e0cc72630712f86f235e4bcc5a26dc5b1106cc838
MD5 4fa33839f072c62c6f6419f6383653af
BLAKE2b-256 6a1cd000fdc093df927d29210b01e5489b87223f8ea28bb88fa12854d0d168bb

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fabio-2026.6.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for fabio-2026.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0bc6aba28072f69f8d109a1d04bc271f88b05657727672eff9c548ed0826601e
MD5 aba277c71bd7c4ccdecd827df2b59814
BLAKE2b-256 b5334621ee1e422b4d307b90b38bda38eddd871226bf1649ded1128c4fde9a90

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fabio-2026.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b59c453db5099cef1a579bdc8a8a1c19cb5614b9642487f0d4bdfa38c58e5cf
MD5 309570b0993590e525ed7c9d2ec4b348
BLAKE2b-256 00f756cce53254dccb13fc15f3ba3f5f122165e7fd8238153c9d2a676c83f516

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for fabio-2026.6.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 d706589e4204d1f6d2af7dc898e96179526d73fecdee70a9650bb571cc12f17f
MD5 5e6c34e219987ba87c14080f7638ef7b
BLAKE2b-256 8d57e8a3362192bc497c2d24448ce81840f593765ac57c2bf1a2aeed532f92d6

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fabio-2026.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 317d72833e4dcde3e8949bd53fa1eea300f887baf7a83eace41d01b5ead25188
MD5 b8733248eb65a862e7ed1c09ce2dfd1b
BLAKE2b-256 92c4233435a4eabfd9f557cd8fee72cf7430e56f3581f355ac52752848b7406d

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fabio-2026.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bcee08eadf08cb7ece393b611721ac91d1fc5746c4255948a7783f3b923dbe03
MD5 a98582014c06d2e299761a3c048a1de2
BLAKE2b-256 1aefe701fe22a5090f41199dde8248b5c61cc04c42eb442ec6986a9ca3a07c4c

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for fabio-2026.6.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4dcebae8249524aa9ddf3114a348beadb85801e1d1ae1102464456ef294e6b66
MD5 279b1594861ea223fcd9e6afdbdfc47a
BLAKE2b-256 eb23486ff683698736e942a0fce0da36c7f84a19f94a9350e1352885b677162d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fabio-2026.6.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for fabio-2026.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0b27d0fdc3857363cf5f50f7322f5c7275be8cf98f6d3664da8842162bde9eb1
MD5 99464ec73a4ac67364506a8f631a0afd
BLAKE2b-256 e000a38332ffc1cb6c496004cd1483031d953cbff0dc3d8e8ffe5cee24cc8176

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fabio-2026.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 350a59107107ecea5434dae86d73ef0520d60c69c085ae0a9b4eb6a3dd4b16c4
MD5 965af9fa222ec67111a3f073a2c26562
BLAKE2b-256 2f85d2e51da8758bc8358bbd0cfeb0a9f94c54401de8462538912ce3d7b0ab19

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for fabio-2026.6.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c541a7512d8ce46be2d518a7830a9918fb335ddae2d4795fc0339d092a24a274
MD5 95b93763784b1af79a9368a79bab3e7f
BLAKE2b-256 9dec1b08db9b9b73ea761d78b268b2d658aa48469a10e9b0befc279fb90dca98

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for fabio-2026.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c12c409d75f918f28a6aef8a190b075ff74eafb127f7e11c075d1255beddb7d3
MD5 790933ab76802c41d2af8d386ee1f109
BLAKE2b-256 2d7c9a0c04287e83bfca3fbf69e235199f0819c10199adb45aa4464d3ec0993c

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fabio-2026.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fcccef4e102d825645cd4595beba99ea0d15d3ace2011df039fc5c88f9e04b8
MD5 4c5d168e65d9ff28ded4af0d9a3aaea4
BLAKE2b-256 275d2e51a7e70767fce78689f9fe2a631ec14716ce3a711026294c4088c030e5

See more details on using hashes here.

File details

Details for the file fabio-2026.6.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fabio-2026.6.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9de66034363355518d1fe0ef2ca33ce6c120073a8fe4d989ea60aa5cfd1598ba
MD5 de43dc7fb7d44d860d99b665b7025ac6
BLAKE2b-256 412298a4a26ce78ac3ff894b0059c461dbbcc120aff1fd0a4f31b7d236186fd3

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