Skip to main content

Laboratory for Fluorescence Dynamics (LFD) file formats

Project description

Lfdfiles is a Python library and console script for reading, writing, converting, and viewing many of the proprietary file formats used to store experimental data and metadata at the Laboratory for Fluorescence Dynamics. For example:

  • SimFCS VPL, VPP, JRN, BIN, INT, CYL, REF, BH, BHZ, B64, I64, Z64, R64

  • FLIMbox FBD, FBF, FBS.XML

  • GLOBALS LIF, ASCII

  • CCP4 MAP

  • Vaa3D RAW

  • Bio-Rad(r) PIC

  • ISS Vista IFLI, IFI

  • FlimFast FLIF

Author:

Christoph Gohlke

License:

BSD-3-Clause

Version:

2025.5.10

DOI:

10.5281/zenodo.8384166

Quickstart

Install the lfdfiles package and all dependencies from the Python Package Index:

python -m pip install -U "lfdfiles[all]"

Print the console script usage:

python -m lfdfiles --help

The lfdfiles library is type annotated and documented via docstrings.

See Examples for using the programming interface.

Source code and support are available on GitHub.

Requirements

This revision was tested with the following requirements and dependencies (other versions may work):

Revisions

2025.5.10

  • Mark Cython extension free-threading compatible.

  • Remove doctest command line option.

  • Support Python 3.14.

2025.3.16

  • Replace deprecated tifffile.stripnull function.

  • Fix misspelled VistaIfli.header keys.

  • Drop support for Python 3.9.

2024.10.24

  • Fix variable length little-endian base 128 decoding.

2024.9.15

  • Improve typing.

  • Deprecate Python 3.9, support Python 3.13.

2024.5.24

  • Fix docstring examples not correctly rendered on GitHub.

2024.4.24

  • Support NumPy 2.

2024.3.4

  • Fix decoding 32-bit, 16 windows, 4 channels Spartan6 FBD files (#1).

2023.9.26

  • Remove phasor and lifetime methods from VistaIfli (breaking).

  • Rename SimfcsFbd and SimfcsFbf to FlimboxFbd and FlimboxFbf (breaking).

  • Deprecate SimfcsFbd and SimfcsFbf.

  • Support int16 FLIMbox cross correlation phase indices (bins).

  • Add FlimboxFbs class for ISS VistaVision FLIMbox settings.

  • Add decoder for 32-bit, 16 windows, 4 channels FlimboxFbd (untested).

2023.9.16

  • Rewrite VistaIfli based on file format specification (breaking).

  • Define positional and keyword parameters (breaking).

  • SimfcsFbd.asarray returns bins only (breaking).

2023.8.30

Refer to the CHANGES file for older revisions.

Notes

The API is not stable yet and might change between revisions.

Python <= 3.9 is no longer supported. 32-bit versions are deprecated.

The latest Microsoft Visual C++ Redistributable for Visual Studio 2015-2022 is required on Windows.

Many of the LFD’s file formats are not documented and might change arbitrarily. This implementation is mostly based on reverse engineering existing files. No guarantee can be made as to the correctness of code and documentation.

Experimental data are often stored in plain binary files with metadata available in separate, human readable journal files (.jrn).

Unless specified otherwise, data are stored in little-endian, C contiguous order.

References

The following software is referenced in this module:

  1. SimFCS, a.k.a. Globals for Images, is software for fluorescence image acquisition, analysis, and simulation, developed by Enrico Gratton at UCI.

  2. Globals, a.k.a. Globals for Spectroscopy, is software for the analysis of multiple files from fluorescence spectroscopy, developed by Enrico Gratton at UIUC and UCI.

  3. ImObj is software for image analysis, developed by LFD at UIUC. Implemented on Win16.

  4. FlimFast is software for frequency-domain, full-field, fluorescence lifetime imaging at video rate, developed by Christoph Gohlke at UIUC.

  5. FLImage is software for frequency-domain, full-field, fluorescence lifetime imaging, developed by Christoph Gohlke at UIUC. Implemented in LabVIEW.

  6. FLIez is software for frequency-domain, full-field, fluorescence lifetime imaging, developed by Glen Redford at UIUC.

  7. Flie is software for frequency-domain, full-field, fluorescence lifetime imaging, developed by Peter Schneider at MPIBPC. Implemented on a Sun UltraSPARC.

  8. FLOP is software for frequency-domain, cuvette, fluorescence lifetime measurements, developed by Christoph Gohlke at MPIBPC. Implemented in LabVIEW.

  9. VistaVision is commercial software for instrument control, data acquisition and data processing by ISS Inc (Champaign, IL).

  10. Vaa3D is software for multi-dimensional data visualization and analysis, developed by the Hanchuan Peng group at the Allen Institute.

  11. Voxx is a volume rendering program for 3D microscopy, developed by Jeff Clendenon et al. at the Indiana University.

  12. CCP4, the Collaborative Computational Project No. 4, is software for macromolecular X-Ray crystallography.

Examples

Create a Bio-Rad PIC file from a NumPy array:

>>> data = numpy.arange(1000000).reshape(100, 100, 100).astype('u1')
>>> bioradpic_write('_biorad.pic', data)

Read the volume data from the PIC file as NumPy array, and access metadata:

>>> with BioradPic('_biorad.pic') as f:
...     f.shape
...     f.spacing
...     data = f.asarray()
...
(100, 100, 100)
(1.0, 1.0, 1.0)

Convert the PIC file to a compressed TIFF file:

>>> with BioradPic('_biorad.pic') as f:
...     f.totiff('_biorad.tif', compression='zlib')
...

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

lfdfiles-2025.5.10.tar.gz (316.6 kB view details)

Uploaded Source

Built Distributions

lfdfiles-2025.5.10-cp314-cp314-win_arm64.whl (159.0 kB view details)

Uploaded CPython 3.14Windows ARM64

lfdfiles-2025.5.10-cp314-cp314-win_amd64.whl (182.4 kB view details)

Uploaded CPython 3.14Windows x86-64

lfdfiles-2025.5.10-cp314-cp314-win32.whl (158.3 kB view details)

Uploaded CPython 3.14Windows x86

lfdfiles-2025.5.10-cp313-cp313-win_arm64.whl (155.1 kB view details)

Uploaded CPython 3.13Windows ARM64

lfdfiles-2025.5.10-cp313-cp313-win_amd64.whl (178.3 kB view details)

Uploaded CPython 3.13Windows x86-64

lfdfiles-2025.5.10-cp313-cp313-win32.whl (156.0 kB view details)

Uploaded CPython 3.13Windows x86

lfdfiles-2025.5.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

lfdfiles-2025.5.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

lfdfiles-2025.5.10-cp313-cp313-macosx_11_0_x86_64.whl (789.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

lfdfiles-2025.5.10-cp313-cp313-macosx_11_0_arm64.whl (771.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

lfdfiles-2025.5.10-cp312-cp312-win_arm64.whl (155.1 kB view details)

Uploaded CPython 3.12Windows ARM64

lfdfiles-2025.5.10-cp312-cp312-win_amd64.whl (178.6 kB view details)

Uploaded CPython 3.12Windows x86-64

lfdfiles-2025.5.10-cp312-cp312-win32.whl (156.1 kB view details)

Uploaded CPython 3.12Windows x86

lfdfiles-2025.5.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lfdfiles-2025.5.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

lfdfiles-2025.5.10-cp312-cp312-macosx_11_0_x86_64.whl (790.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

lfdfiles-2025.5.10-cp312-cp312-macosx_11_0_arm64.whl (772.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lfdfiles-2025.5.10-cp311-cp311-win_arm64.whl (154.1 kB view details)

Uploaded CPython 3.11Windows ARM64

lfdfiles-2025.5.10-cp311-cp311-win_amd64.whl (175.5 kB view details)

Uploaded CPython 3.11Windows x86-64

lfdfiles-2025.5.10-cp311-cp311-win32.whl (153.9 kB view details)

Uploaded CPython 3.11Windows x86

lfdfiles-2025.5.10-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

lfdfiles-2025.5.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

lfdfiles-2025.5.10-cp311-cp311-macosx_11_0_x86_64.whl (787.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

lfdfiles-2025.5.10-cp311-cp311-macosx_11_0_arm64.whl (771.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lfdfiles-2025.5.10-cp310-cp310-win_amd64.whl (175.4 kB view details)

Uploaded CPython 3.10Windows x86-64

lfdfiles-2025.5.10-cp310-cp310-win32.whl (153.9 kB view details)

Uploaded CPython 3.10Windows x86

lfdfiles-2025.5.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

lfdfiles-2025.5.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

lfdfiles-2025.5.10-cp310-cp310-macosx_11_0_x86_64.whl (786.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

lfdfiles-2025.5.10-cp310-cp310-macosx_11_0_arm64.whl (770.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file lfdfiles-2025.5.10.tar.gz.

File metadata

  • Download URL: lfdfiles-2025.5.10.tar.gz
  • Upload date:
  • Size: 316.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for lfdfiles-2025.5.10.tar.gz
Algorithm Hash digest
SHA256 5536ade2b665dc2f5a869e20772e3575728f3d0bfac0ed2ceff72de72dbb0910
MD5 63a0151bdb824013f2027de8559e6e9d
BLAKE2b-256 3bf34febc8228e79cf44facdcf06a6943c56e770a0b75ec38a6294eaa43af867

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 852fdac997009e36a6ce9ac069acf3c311b6676b31114621a0834463b7489e80
MD5 421a389afc26dc0077c0e2cf651b0269
BLAKE2b-256 9d80decb334cb69680b60673ea37be6056e74b070be5ea19160ad7814e02c1f8

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9891fd33041934cbb93b744b7140c53b0cdcc0070eec381a4f572a4d4f6b5bae
MD5 fb506b9366343007da05665cb3dd585e
BLAKE2b-256 0ae792901151ba94e180b870f318764401e4c0116f8ed5bc12d327c5595397e2

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp314-cp314-win32.whl.

File metadata

  • Download URL: lfdfiles-2025.5.10-cp314-cp314-win32.whl
  • Upload date:
  • Size: 158.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for lfdfiles-2025.5.10-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 5b53870a240d042fe13edf6f619e71adb12581e9ea64f51dac85fbdd594734c9
MD5 8186a9d5ec14534e935b43ffff3097a9
BLAKE2b-256 9fc63c7f360b13a5aa57c8f3a7bf1be0e46159b6a804bc0a936de72c709ee3c6

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 0af6ba4193e570327bbc69cba96753e1837811232b3a0f46a7df8333de8aa3b3
MD5 79ce2374bd1c67541a37619e34744489
BLAKE2b-256 9f6695ce797b32b45925ee198b9df21719deb4e716e88c57e4ca05f0a22c19f5

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 55261a55c599432e9e8e6e51d96c8faaf8ac66778fbaf6cf0a4061431ac3e58e
MD5 3f44e94557bbfe3e2f665b20996eaa8f
BLAKE2b-256 963ea9fe8cd8b7402f3ba0106dda6bdbc1c02e534986a2c9415346a3da28832f

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp313-cp313-win32.whl.

File metadata

  • Download URL: lfdfiles-2025.5.10-cp313-cp313-win32.whl
  • Upload date:
  • Size: 156.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for lfdfiles-2025.5.10-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4330f160fa569ce2eeffc435cfbbe7445e69ce36dd9b02053aa1cd9ff80d8b8c
MD5 6e2fe93bdc6dd03be695ff33678b91c6
BLAKE2b-256 e5a93642aaa3d19e9e0bd31a5a085803118aacbb535929a3a6bb465c8e44faa8

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d68ec6ab5403260859ba8cfade6708591d83515422d53317710f2c557a690ce2
MD5 77ee7e509b47455710fd3473824eb226
BLAKE2b-256 d9f0546713adf536599f18c8635a4cda9b5fc7b5623048b69ac11a7fff52fe32

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b48a7bff803523c416f60066972f694af4bb9dc35c1eaa27daf30f859fbe422
MD5 462dc8e2b32cac352b8e9987ebb1c30f
BLAKE2b-256 22ad5098d032cd8b4cd997ddf26e6191424d7d900952bb21f27c0b170e12ee51

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9512c016e8323042bc594bab3b91b089007a9525f84988c45926e3ea586f206d
MD5 715d0fc4c92693b531551c0c7dece478
BLAKE2b-256 d62818962004e6fff9b3645f7b0e54daadc3436cd47bf9b38bef3eab979ce062

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a90ffdf0b7915d5df7f100e0e359daf49801d88c85c9b97bdc78ae8f7be19ce8
MD5 14c6e60cef6582b28aac290b9cb2538f
BLAKE2b-256 af14f6fac6cbf1106ce6cb62033553f534adfd24ddd80a8d9d69fb46a5ae939b

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2f855f6147e38dcb4b6a0683f9f72885d088fa43bd1b1e40b7301b454afdeb24
MD5 404e3f3a6375538cec4373b2c26d34b7
BLAKE2b-256 50de5476fda3b3125fecdcaedd094627069c826ec3b6711133fc744f534802e8

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e1d9d861f89cb9d8dd4e1cc7ab898a8d397d775d7660877ce59380817b8791d4
MD5 ada54a4fb4614276b0299cbcfdefad2a
BLAKE2b-256 2458bb901b803b639f4c75d9a677a72940f8de4e69dc78525ae740a35c15eb15

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp312-cp312-win32.whl.

File metadata

  • Download URL: lfdfiles-2025.5.10-cp312-cp312-win32.whl
  • Upload date:
  • Size: 156.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for lfdfiles-2025.5.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 afc117cf6e41c5f9a412478f3b64f0f7962bcbd9f32991e761e93f70c4ce575a
MD5 5b8e5be1d85fa1d2c295e080a678a77a
BLAKE2b-256 46496b1bcd57fd882de5600be3e46551a0a5c8d15b8e0e6ec248cf2b4a743cfd

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ffb0ccd36a2b1ae16c4a4628b9095c3655d5a7d82228ee98953a884a25264177
MD5 bccb1ba58170cb7c8c0dfc46c0c59388
BLAKE2b-256 c7dc87f4f970d5547d5a50f49666bac59f5914bc8a7090d0a36addf1cd8d66bb

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e900631752cc000aceaee3aff21d2b38913d7e9248af3eb6954ae87d30774aa1
MD5 1c5aacf0d5c2f8e6f300c5bacc733895
BLAKE2b-256 1e9541a13c6f7cc16ff18b3bc8b78dd90ba0d41c6cb747149a4bce6f8da5c5ab

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 0ff3decb2ab5fcbc0a6208d7c9a5556a2b490c81192daeb3b8bc29381c97e4e4
MD5 937ad4e7b2c12a826648f89f743398c3
BLAKE2b-256 ec92a53d294faa0f7f084d2c45c72fb89de937149124a90fc9b13d72d42ab975

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ba94c70445d471255cb2c81361deb3e7625375e5a06ba49ff7bb5a2db9a6b56
MD5 329623bc081c78d47b6d8632e6872159
BLAKE2b-256 0eb1667b447657c10fde9e4296936a683c5b7ba577810d900a9a7e497f879d74

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4f79b42b7bb8f8c281b5bd11e95bd45810a850d0fd259f8b7c4c71dc31cfb3a4
MD5 9d91b387c647a10d719efd68a3a78244
BLAKE2b-256 63dcc5f6219995b8c56748ea6fdf513737d31b634e08c069d22bedc9387d6ff9

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3547437669e08b3f5a7f003f7bab1a078761a2aa89040275a7cf91431d0d67cb
MD5 fa3666488e95ccfca0f172bbb8ae85bc
BLAKE2b-256 063492e624c1bf1d3561ee57042a897ad66e071024e7e793a3c259b55fe26a11

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp311-cp311-win32.whl.

File metadata

  • Download URL: lfdfiles-2025.5.10-cp311-cp311-win32.whl
  • Upload date:
  • Size: 153.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for lfdfiles-2025.5.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 922837cbb4311ec6fc6d97d666290a1a3c1cb9429a987c7582f027a27b44aded
MD5 b02e0b8022789330cc20780ffb3bb47d
BLAKE2b-256 4b51683b8c10d8e53f32daa78ad397082d178d172c475ed569f9abba4903b374

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5d28f0453819357f3417376c6479f8989d2b394f580d971a7a07691ea99af1f
MD5 c9c7bd149aa3ffbb2c4667ea644ecc6e
BLAKE2b-256 5db3d4d66c1f6b37445046fbf9a7edcb74e8c961b4014ff9b21e431b96435c75

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a23c24baa82b1681e883a637dc7eb7b145c27927161ae6cd4054d8fe5e8d5601
MD5 1bd075054ed5ee624d819c65c8b9cf95
BLAKE2b-256 d6352cc7cf27650bd927f56fcc0fc31eaca8807b3491975d3350f910a4e2a9de

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 9838b613e54f14d52afd3fe49383c44c92ed01a797cdbdb4186a207c37692839
MD5 92512e2e84ba57ca05453392467b72d0
BLAKE2b-256 f05f3808c15e6784ae79ff7bdf39c83dcd1a6a296d15814b3456033faae146c2

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3577408d9c038031fd581a959cc6cee9dcfb78d5d11f0fe6ee9c4146689b7b5
MD5 f76c0c675d80d622f209af151b712a54
BLAKE2b-256 8fa2c48da155c1df67c87793434eb2a14b1892aaab7f454dfbc4c03e8835488b

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a02c76d8779cd63bfc2ee6196e506e64d0285f34d4bace719617902d0878ffbe
MD5 3780c695cfa86cc9421fe43473850d33
BLAKE2b-256 1d056742b3f4d0a66211b0e30519100fd5edbb6b9b7936ff327ab7ee6129e423

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp310-cp310-win32.whl.

File metadata

  • Download URL: lfdfiles-2025.5.10-cp310-cp310-win32.whl
  • Upload date:
  • Size: 153.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for lfdfiles-2025.5.10-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3c77ef4b1fe9d5a3f93f0ceddf5b48170380b356211a1a7fe67db7e111b3c3cc
MD5 8e7ff172a959c8b290693e5cd42f547c
BLAKE2b-256 e21663ace8a8e1c5d51a732c122747d3b27572f2a57f800905fce6227659fcde

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 410e603351fe3ae81668c799435febb9009b94fc9cbf8b4d02df9494771fd4e5
MD5 053ac12fdc8edb7c7e052d440dd3c692
BLAKE2b-256 abef127d9a25f40786e58d2b9f2153bcc6777dc66c4c8ecb9b9a876b4f668767

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83aa8754c2630dc5663a573ca654d910a1b5225cda76218b2fb25078c435a0ac
MD5 0fcf95cabeca2c9cba8f4db6d2736bdb
BLAKE2b-256 44797204dc1c3f17dcdb64aa0ee561d533dc50d4e3d6211b9cac1f5c6afd7755

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 ef415c2ea6e5b92d90c2a7299bf2ddcb5161af18db9a619199ca4ab3f32ba09d
MD5 83b3e49264e58175f8e8b54067a772fe
BLAKE2b-256 34c6360f756f930747502c4d1e460a3ee3b21c6d161e8dd6069e5e20874565b8

See more details on using hashes here.

File details

Details for the file lfdfiles-2025.5.10-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lfdfiles-2025.5.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fa2a85ee51c28c6d256c4b256f4a84e3b3bcde672e06da7689678ae71cb775d
MD5 95285e4b600df4beacb9d26fbbf79eef
BLAKE2b-256 620df414fb35c3685594e09fac5cd60d6d97d10d52c22e9b56c5ce098a8229a4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page