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:

2024.3.4

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

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

  • Fix type hint issues.

  • Add py.typed marker.

2023.8.1

  • Specify encoding of text files.

  • Fix linting issues.

2023.4.20

  • Improve type hints.

  • Drop support for Python 3.8 and numpy < 1.21 (NEP29).

2022.9.29

  • Fix setup.py.

2022.9.20

  • Update metadata.

2022.6.10

  • Fix LfdFileSequence with tifffile 2022.4.22.

  • Add fbd2b64 conversion function and script.

  • Add decoder for 32-bit, 8 windows, 4 channels FLIMbox data from Spartan-6.

  • Convert docstrings to Google style with Sphinx directives.

2022.2.2

  • Add type hints.

  • SimfcsFit.asarray returns dc_ref only; use p_fit for fit params (breaking).

  • Remove additional positional arguments to LfdFile init (breaking).

  • Guess SimfcsBin shape and dtype if not provided (breaking).

  • Use TiffWriter.write instead of deprecated save.

  • Drop support for Python 3.7 and NumPy < 1.19 (NEP29).

2021.7.15

Refer to the CHANGES file for older revisions.

Notes

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

Python <= 3.8 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-2024.3.4.tar.gz (311.3 kB view details)

Uploaded Source

Built Distributions

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

lfdfiles-2024.3.4-pp310-pypy310_pp73-win_amd64.whl (188.4 kB view details)

Uploaded PyPyWindows x86-64

lfdfiles-2024.3.4-cp312-cp312-win_arm64.whl (163.6 kB view details)

Uploaded CPython 3.12Windows ARM64

lfdfiles-2024.3.4-cp312-cp312-win_amd64.whl (194.9 kB view details)

Uploaded CPython 3.12Windows x86-64

lfdfiles-2024.3.4-cp312-cp312-win32.whl (168.3 kB view details)

Uploaded CPython 3.12Windows x86

lfdfiles-2024.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

lfdfiles-2024.3.4-cp312-cp312-macosx_11_0_arm64.whl (793.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

lfdfiles-2024.3.4-cp312-cp312-macosx_10_9_x86_64.whl (811.5 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

lfdfiles-2024.3.4-cp311-cp311-win_arm64.whl (162.3 kB view details)

Uploaded CPython 3.11Windows ARM64

lfdfiles-2024.3.4-cp311-cp311-win_amd64.whl (193.0 kB view details)

Uploaded CPython 3.11Windows x86-64

lfdfiles-2024.3.4-cp311-cp311-win32.whl (165.4 kB view details)

Uploaded CPython 3.11Windows x86

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

lfdfiles-2024.3.4-cp311-cp311-macosx_11_0_arm64.whl (789.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

lfdfiles-2024.3.4-cp311-cp311-macosx_10_9_x86_64.whl (806.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

lfdfiles-2024.3.4-cp310-cp310-win_amd64.whl (191.1 kB view details)

Uploaded CPython 3.10Windows x86-64

lfdfiles-2024.3.4-cp310-cp310-win32.whl (165.8 kB view details)

Uploaded CPython 3.10Windows x86

lfdfiles-2024.3.4-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-2024.3.4-cp310-cp310-macosx_11_0_arm64.whl (790.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

lfdfiles-2024.3.4-cp310-cp310-macosx_10_9_x86_64.whl (806.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

lfdfiles-2024.3.4-cp39-cp39-win_amd64.whl (191.6 kB view details)

Uploaded CPython 3.9Windows x86-64

lfdfiles-2024.3.4-cp39-cp39-win32.whl (166.0 kB view details)

Uploaded CPython 3.9Windows x86

lfdfiles-2024.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

lfdfiles-2024.3.4-cp39-cp39-macosx_11_0_arm64.whl (790.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

lfdfiles-2024.3.4-cp39-cp39-macosx_10_9_x86_64.whl (807.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: lfdfiles-2024.3.4.tar.gz
  • Upload date:
  • Size: 311.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.8

File hashes

Hashes for lfdfiles-2024.3.4.tar.gz
Algorithm Hash digest
SHA256 d896d3aefc992f1c643de424e5840131d786ac77db64f1a47f5694466d8850bb
MD5 498b44339af038ecdc0e359863759a21
BLAKE2b-256 2acc7ca1a9352569ae48fa7e4c0d8a5fd8f0afd69a94603227b695c333440268

See more details on using hashes here.

File details

Details for the file lfdfiles-2024.3.4-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for lfdfiles-2024.3.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e6ee47c530b471aa3c82d994f55dab4df2af33c198e7ed6e9ed787629105d51c
MD5 5afec953730beae3828c4deab454f893
BLAKE2b-256 846eb0cca92ead1288ab255a70fc0f1d6d1dbf502833432be2d25a271c1f519d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.3.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 4ba6bc47f4eb7ab008b814e3723e7ff35f6a73ecc6875315443ce3cc7847d9d1
MD5 39585df8d39314811d47c335ee4dbde4
BLAKE2b-256 7af19a95349ac2af65713cfabf31fda80a60e02c253053e7914d7c2a36ca90ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.3.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b352f1aba34531b756a81916edec88056ed662b056cb3587d096ceea6165d889
MD5 626cd3e5e83dfead29d58ae10fddf09e
BLAKE2b-256 415a3db1e7ab50c0660bca8a435cd6aea7abcde71c4581ba34faa1618a6d87aa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lfdfiles-2024.3.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 168.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.8

File hashes

Hashes for lfdfiles-2024.3.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c0cd77ff60def34daeab03d551d3b4944bf85d0f49d2ca4259ac2d4615d1a1dc
MD5 703bc29274e39ec9696a49709c630d2e
BLAKE2b-256 b9d8a672270c50d89c266d7bf0683ed48c0e5ca66f3340c524755557b7a0c699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.3.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e9cccf0e7b030d70f3cc0be4e2bde68f464fd458b4543d4771b979b989cab76
MD5 31781fab7091ab938033f5d0cf328a94
BLAKE2b-256 bb0674d99d7641252d0507d7ffc1e7ef6e4a32227514ef7caeefa1d9c09f30e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.3.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f10012e4d20d4df53fc48348d5b070225617f2f7efeefe56ffbdca6a08139ee
MD5 266ba182510d9cfa3142fe2f6d76541e
BLAKE2b-256 cd4a05452930093659499d57a7277661a081e660b5c90f253e13403296ba643f

See more details on using hashes here.

File details

Details for the file lfdfiles-2024.3.4-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lfdfiles-2024.3.4-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1898595e77c5066b8a71eec40896d7018a85b6dc4befd297bed22758dd833a45
MD5 815a6743b0ec0d9a94604913efb8732d
BLAKE2b-256 e30c320975b23dff870dc0011f5bb4f442f331730f73c1b013bdcbf22e59e67b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.3.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 f6ad8d9275fc6e378d3926b1d3f6f5c7c61566e48ad6f77b89e0131f506b9675
MD5 95a562eec6e2d4248a2cabba33298539
BLAKE2b-256 3ffd233c17382beefca5f5349ab489a4b908f5de07e66512ceedfb635b4aca94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.3.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7d9073b6fe1b892e9c73484f71ee19d426dbb6d395a9a28d96616f5df1aa9d99
MD5 5118986c5b9611264a4b550d413e63de
BLAKE2b-256 644cd5d3cca55cac5bf268b58d673b71bb867b9c07aa80f0bb08f150778a7cd7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lfdfiles-2024.3.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 165.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.8

File hashes

Hashes for lfdfiles-2024.3.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5e2de115d53947698657532e78d339ec086b505986f02c9e95dfa7144af5e8ec
MD5 28c7671cdbf9b1a08d132cecc121cbd3
BLAKE2b-256 18abc0737b0c512d9beb669cc2b62b313a73733e2b9bf6609d51a911bb042a9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e083f777c51400330de784b1af5de46a83e7dc4a3b4974744ffe3ad3a9a6e0e5
MD5 48bc1f08b5a702aa86815f111f1d63c3
BLAKE2b-256 a1f78bf91cca3566cbda43c3fe202d93e0e0eaafd8daa6c213d3a7a77cdf3678

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.3.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11107a08d247d5314c4335e4816b14ad9c4f9250c044305a561ce15ec4b3fba7
MD5 0bb296f5a76482b1e488f9c6eaea347b
BLAKE2b-256 753f78edee7af4c72779c7ffa6da619295f3dad90cc41900ef1ae46e7f11ec83

See more details on using hashes here.

File details

Details for the file lfdfiles-2024.3.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lfdfiles-2024.3.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3e4e067394c7d1ccf15aea19eb5f80c3c791e8c334fbb9b72f2b8c3ec40f4881
MD5 1d3253a8dd65c8e877ad9ec7f330ba38
BLAKE2b-256 ea01a934542f74cd10864e2a9ee9128c45653224077eb638dd2687c0823defa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.3.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9f4913ca91398554476373f62754486d195b89a6bfde58ce7985722740628541
MD5 c24a9b621138ba76fcc116fdbd975a48
BLAKE2b-256 f58426ec44442b615f40ab2685a83a499d5befedccf1b1eeb2e1cae68883ca19

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lfdfiles-2024.3.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 165.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.8

File hashes

Hashes for lfdfiles-2024.3.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2a6f2ad70b85d4c10688b912ed5a5ac6c8bdcfa179581f9df6cfd9d758afdb28
MD5 1864e8403b6946c2b1bc1eae95305dcc
BLAKE2b-256 25fe35d47e1f7f9678f1c431ae3878ee7fab092f54236e9ddc1ac859bd01a4c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 029e5d12055abb53aa2c13334b84ea5540db9635f7bb5365db0f61628408b4a9
MD5 067db511eff2e2139cb0463f267a6190
BLAKE2b-256 a9c1cf71171e5106ac379fbe9160e08309720301eaf5d3afdc5a3df121919e21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.3.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b09c5001038bf46e4e39fd198e81966602ed1e3beeeedc7a04df25d07ae4fb6
MD5 22d539eba1a4892d3b91dc503e1af0f7
BLAKE2b-256 b7b3fea32243a617699a276cbde18f0cfb41a7e5a2d0cec9457a8a9d93d870ba

See more details on using hashes here.

File details

Details for the file lfdfiles-2024.3.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lfdfiles-2024.3.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6da5a7c67e803bcc3f6e2305b78543065851da501305fa77a784fb832f1718be
MD5 7c050f145bcbc327d79f505c150324c2
BLAKE2b-256 49c1f73c5457b5cd3d5b78d276300940152c03f9ec54f3f86fc759cff8d9f5ec

See more details on using hashes here.

File details

Details for the file lfdfiles-2024.3.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: lfdfiles-2024.3.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 191.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.8

File hashes

Hashes for lfdfiles-2024.3.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 82a776421900f4ed23280dc6ad3d5f0825c51a127e9c12d4a0dfaf9e72ac4c66
MD5 4e7909896ba2909f82b0c6aa2f786baf
BLAKE2b-256 a10278f97cb27d84e6cc914702fffe44aa036d098a6c9e7abaebd44cf5691608

See more details on using hashes here.

File details

Details for the file lfdfiles-2024.3.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: lfdfiles-2024.3.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 166.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.11.8

File hashes

Hashes for lfdfiles-2024.3.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 de52aa648d54548f5fa4f8cef02a860f21cf25e88b9a8e06c70e4f8d5dd688d7
MD5 37fbeda6acb37eb2a5165901804467e1
BLAKE2b-256 845e21634601a24de9b921bd46eec8f1bf5f481f8ccedef4e17c904d19311c26

See more details on using hashes here.

File details

Details for the file lfdfiles-2024.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lfdfiles-2024.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f185f5a69ff91258090059fb390d32266840f76a650b0e471bd1670e92f5b7b9
MD5 e327d17b346a7e61656dfb0a88bb727f
BLAKE2b-256 1acb8cd03e6420dbc738ce13d65d5dcff8e66548b7e74aff81bfedb51f2408db

See more details on using hashes here.

File details

Details for the file lfdfiles-2024.3.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lfdfiles-2024.3.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 266361b464456eedc3d91de031372279f58883a85f6556d6beb208cd40425033
MD5 5d6df9c5adf9f7567e7879197224f475
BLAKE2b-256 99bbff754a1b49cc1dc43f98e2bc5a8d029345dcf1b09bf038a54476a0d50198

See more details on using hashes here.

File details

Details for the file lfdfiles-2024.3.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lfdfiles-2024.3.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4549cd0838f4c60ce38d90c8f6e2367aee6681a7a8c458cb3f88e7a0e17c6f44
MD5 4517c51446c900ddaad34dc178cd3217
BLAKE2b-256 92596387455170ef64988a582051253885d6cd395ce8c429f8e1ae87b741f001

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