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.10.0.tar.gz (723.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.10.0-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

fabio-2023.10.0-cp312-cp312-macosx_10_9_universal2.whl (1.8 MB view details)

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

fabio-2023.10.0-cp312-cp312-macosx_10_9_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 10.9+ ARM64

fabio-2023.10.0-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

fabio-2023.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

fabio-2023.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

fabio-2023.10.0-cp311-cp311-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

fabio-2023.10.0-cp311-cp311-macosx_10_9_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ ARM64

fabio-2023.10.0-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

fabio-2023.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

fabio-2023.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

fabio-2023.10.0-cp310-cp310-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

fabio-2023.10.0-cp310-cp310-macosx_10_9_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ ARM64

fabio-2023.10.0-cp39-cp39-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86-64

fabio-2023.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

fabio-2023.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

fabio-2023.10.0-cp39-cp39-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

fabio-2023.10.0-cp39-cp39-macosx_10_9_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 10.9+ ARM64

fabio-2023.10.0-cp38-cp38-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.8Windows x86-64

fabio-2023.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

fabio-2023.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

fabio-2023.10.0-cp38-cp38-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

fabio-2023.10.0-cp38-cp38-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

fabio-2023.10.0-cp37-cp37m-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.7mWindows x86-64

fabio-2023.10.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

fabio-2023.10.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.10.0-cp37-cp37m-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: fabio-2023.10.0.tar.gz
  • Upload date:
  • Size: 723.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.10.0.tar.gz
Algorithm Hash digest
SHA256 fc3edcf03f833a11e09f987cffc4b825b5964f57e2866e28f9edf5d67532c405
MD5 c0498da178e07ca5726015a9bd98d2cb
BLAKE2b-256 d40819ae4353d17768cb5eed891731a668049b707dbba8bea45c9586e115423a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fabio-2023.10.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for fabio-2023.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d6c8784fa3677a0634306fb400edef01f6f15222b6eb843c2b054838bd268839
MD5 1132b6977e031138044fbe83d4c812ef
BLAKE2b-256 cbafd52f98caae9b2804f70961e51bbe95b99c983648c4a2fd7784cfbaf03d74

See more details on using hashes here.

File details

Details for the file fabio-2023.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for fabio-2023.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7d58f315a957132c5477b313b48a4e0a0f7c89139259f38bb7c990486ba4676
MD5 57721a33b04e8492a01799688a71e8d1
BLAKE2b-256 53914d54d599373647ab41af639ee62e0d83fce688bdefabd3724dc137d3cf79

See more details on using hashes here.

File details

Details for the file fabio-2023.10.0-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for fabio-2023.10.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ae09f12aafd9f6187f9b001b96ecbb44b0b041e5f6c42037a8f65b882e9d2a49
MD5 a6eb5fb2ea7791c745ab9585340a9e99
BLAKE2b-256 bc0a4e82f9d0b239bf3ddcd16327e55b6915cda262a1a46cb1e232b8a72a4255

See more details on using hashes here.

File details

Details for the file fabio-2023.10.0-cp312-cp312-macosx_10_9_arm64.whl.

File metadata

File hashes

Hashes for fabio-2023.10.0-cp312-cp312-macosx_10_9_arm64.whl
Algorithm Hash digest
SHA256 13e26f9daddb542316690370a5eba486267a4efb3b09c1c0cbaec650a39409e3
MD5 2938047a46bee92746285739c3d06314
BLAKE2b-256 bd0b8a2b6de65601bd5484e2c45df6568a2b937fb9d223b64bdbdb1ecec6ffd7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fabio-2023.10.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.1 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.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a9975f12d2b117910da8f8c1e42e4527f530b5a0045f35813e8cb2a1ebb4586e
MD5 7aa2ff222061e80acdb79754cf3cdcf5
BLAKE2b-256 9abad801fae541777279855218c5d022b1edaa4509fd7ad5fe6fd1a76afec391

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d1cbe926dd5c9d8cad321876066cc5aa53a92221e2a5556e477e5243193eb39
MD5 724cd03b91fea1c2ab969369b9b667c8
BLAKE2b-256 0563e353b5218055238a0ffa5387fcacfd029bdcaebb801bf1d92acc5a252cb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ea70ec9c2a8e969e867d24cd694c98d89195e3fef895c841b933635e15cc32a
MD5 41535707d5290f411c0c9011a3e3c701
BLAKE2b-256 468ca344a3d26803402bb612900b103e9d7f50396b5e5ded507884b692d874b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.10.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1e86de26183d5be77e91ec53d8fddfb31896efa6bdfcfe2078737a731f3f7277
MD5 1accccd9c314c4e5df437fdd5dfa37e2
BLAKE2b-256 37047ac9f20ce92af52013ebec66bed2aeb665106ad8ed6919e26a18bf984658

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.10.0-cp311-cp311-macosx_10_9_arm64.whl
Algorithm Hash digest
SHA256 aca8edecdde4d8ef94491aa4e54c2dcd3a56915d6828f2de42e16469347e6cdb
MD5 9dd5af5e5821216c9cdb2ab03918a755
BLAKE2b-256 35ab800590e6954c8e2a7810dd58a59cfa5be76d4cf29789f3a7079b74abdacf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fabio-2023.10.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.1 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.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4c441fdd0cc55a6dbb3e858f99ed7083a34c4e6b7ffab2cd4c4988affa07a51f
MD5 1db26e374c468fc79372600dd79f89fd
BLAKE2b-256 79d4142de934b4a96e14a12517b562f74c85b52d6246d97a03a158a31899ff63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a2882c969e3776ed39749a8f287f57750604df0f496f6b40cb6c23bab237171
MD5 3986efb913f6689deb795f0b80d330d6
BLAKE2b-256 c36421c7a7ef6c7ca2647e53d20f9644cad5ae6b01e4cda6af03c56123194cc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e9516ba9653cb9fbeee4566101c3e5319fe37a5fcc4f336ced65a49cf2031e03
MD5 a44f4123218a21fa4e3fe0f3a488c9e4
BLAKE2b-256 83759d8fcbcc2182631d366296a19d00582dd31bf44654293f3f2010ce70e774

See more details on using hashes here.

File details

Details for the file fabio-2023.10.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for fabio-2023.10.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3db70d9675c595db3f80aa207e324987beb8b751ba0decbb9096fde7164714ca
MD5 1562107e3a0db5e0c5929aa271217d41
BLAKE2b-256 df379f25a3ff73bbc5077fd398384f80c57183756315fcc9ae5be9eae033426a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.10.0-cp310-cp310-macosx_10_9_arm64.whl
Algorithm Hash digest
SHA256 d459ad935a7ecb52182958fcac82357c3a6a40aad99c1b18bbd2c3e32bc0e11c
MD5 d30a6d595c55ae36182a4d62d2276fa7
BLAKE2b-256 afba5dca87dfe502609449424057f7dd5c450a5c8f3d09b07950759c35d099b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fabio-2023.10.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.1 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.10.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ebf02230fbb2cc8e9965d9cbdb88eef8fa747547727612df5e11162deb3cd168
MD5 33c7be8eb25a643acef82baa100946ac
BLAKE2b-256 d9cbf6efae978c3177715697aad87027806469f97ae61a6e1ce4aaecb722b6c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 526aace00f45d4eeff805d349fe5b9ca8c89f6942719ebb86245870883390e0b
MD5 d8e4ae3009a44e33ea6c3e7a60a50cdf
BLAKE2b-256 a480023ec4fa2041965ce300bd84e9cf1801eeac6419389a4b6a486774df20ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 47fb1dc59c57dbccaaf32c1b0b2b2ff4f9e7d2c37b2ea994b09cd3f65dc66903
MD5 d8501c32fd1a8aaba5acb1db4eb51402
BLAKE2b-256 89294e20c99ed73e4ce798b8e2c3be022fd3ed14024d2f28cf4a036e36caf10a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.10.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a30493b5ae8b19dfbd5c2a7f9f190a13b6f2e7e5f6600070ce5be9c32fdc1675
MD5 dd80fa010599d7c3162edeb26dccb67b
BLAKE2b-256 bfa4f655154e5e0f23c4d194c5028ad4197b95661ca355157ee60cd6f1a02751

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.10.0-cp39-cp39-macosx_10_9_arm64.whl
Algorithm Hash digest
SHA256 5996373168576d89ad3a0af542c5c8113675103219389911f6198013240f3e07
MD5 1c057b8cc845096bdb7e1210294c3356
BLAKE2b-256 80ee19eeb7463ff4536bbdad59642d5551e619f992046ae9ac74f57108cbae87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fabio-2023.10.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.1 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.10.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 de3ac5702866a305f26c4228c590d3c10d061979d5d09575b76eae62cdc178a4
MD5 6967baaf44fa5155daf26009bc5a5785
BLAKE2b-256 71a4f58e8717650953656e03ae5d6f031ef2ed6c701898863811822d38558e90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 616484d685123b07025bf9afb072d3b652b8f077c7d983144befb896925ccf70
MD5 c1adb25dad3009449380a3234e023106
BLAKE2b-256 f6ba0d09b2d2b1b8715168f9dad14b044a1237913f40510e1a3e39699ccfe805

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6f642f2ad47a5f9659db91baec45fc7fc22afa46770e17928a2620737d5e202f
MD5 bf2872690541a8dc4acc0b992de3ceb2
BLAKE2b-256 5482d1fbd52f26cd5ac994367743a380cf69a45f867fcdf563bd32f41bd27257

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.10.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7cc22953cb7e43a3898d13eb15bd21b3ccc74f98f6010430d46e03e4f4b8bb15
MD5 332ab904df389aae865a4583826200b0
BLAKE2b-256 94a3df56c233c63dd18f62c64aa2cd419c035720917828487a6221384837b2f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.10.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 20de716de69fedfbe02f9595a02bfdd11a35bc13dd18deacd086515a2d295c55
MD5 eafe7e5103a503f7baa02f6e99cb2ede
BLAKE2b-256 9edeade7e98ecab9b65b0178536c00a51a456d052576ddff16ec92232f8cae66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: fabio-2023.10.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.2 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.10.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 07ec0ae4780d2ddad767b74dc9c2da189675fa5d9011c61f6182b909e628392d
MD5 479c693d5de2650d103623a5ac2d90ab
BLAKE2b-256 6a073a1314532d7029d1fe9b9ec480ef544219ecb0ede6d7ef8fcae7daab8075

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.10.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b44c94a0c8eee759b35900b027d9a408104d71fa60eba2bb7a9c83d5ce351da
MD5 a4979677300b60001cf0192d3f1abdf3
BLAKE2b-256 e4213801d8dbbe38ca2273bb16b129b3f62c05830b9f06805e1e309724a52eef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.10.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eec0ad50b7606a1b81b8b66ed7e9d2d4cadb93d9337409cd548678b6c7f3d936
MD5 ed89dbe87fa9f127947c96c7d9b78c75
BLAKE2b-256 fd6f010e37b3e38e1ade1a09d7b73cd75d23936fafe86cd27368530cbfffcfcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for fabio-2023.10.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f6ca9c22c27bc0940b825c34d4e73f067c914b4257f19cb6f0ba7a9599625e9e
MD5 c36bd4026ecc319ae98723f91d3a098d
BLAKE2b-256 b8c88f98e0beb1dad208dda27e7bd029580c3daaea6f55f50b8c12c7c9014dc1

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