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.10.24

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.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.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.10.24.tar.gz (311.7 kB view details)

Uploaded Source

Built Distributions

lfdfiles-2024.10.24-cp313-cp313-win_arm64.whl (165.7 kB view details)

Uploaded CPython 3.13 Windows ARM64

lfdfiles-2024.10.24-cp313-cp313-win_amd64.whl (193.0 kB view details)

Uploaded CPython 3.13 Windows x86-64

lfdfiles-2024.10.24-cp313-cp313-win32.whl (166.6 kB view details)

Uploaded CPython 3.13 Windows x86

lfdfiles-2024.10.24-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

lfdfiles-2024.10.24-cp313-cp313-macosx_11_0_x86_64.whl (809.0 kB view details)

Uploaded CPython 3.13 macOS 11.0+ x86-64

lfdfiles-2024.10.24-cp313-cp313-macosx_11_0_arm64.whl (793.2 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

lfdfiles-2024.10.24-cp312-cp312-win_arm64.whl (166.3 kB view details)

Uploaded CPython 3.12 Windows ARM64

lfdfiles-2024.10.24-cp312-cp312-win_amd64.whl (193.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

lfdfiles-2024.10.24-cp312-cp312-win32.whl (166.0 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

lfdfiles-2024.10.24-cp312-cp312-macosx_11_0_x86_64.whl (809.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ x86-64

lfdfiles-2024.10.24-cp312-cp312-macosx_11_0_arm64.whl (793.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

lfdfiles-2024.10.24-cp311-cp311-win_arm64.whl (165.2 kB view details)

Uploaded CPython 3.11 Windows ARM64

lfdfiles-2024.10.24-cp311-cp311-win_amd64.whl (191.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

lfdfiles-2024.10.24-cp311-cp311-win32.whl (164.0 kB view details)

Uploaded CPython 3.11 Windows x86

lfdfiles-2024.10.24-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

lfdfiles-2024.10.24-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

lfdfiles-2024.10.24-cp311-cp311-macosx_11_0_x86_64.whl (805.1 kB view details)

Uploaded CPython 3.11 macOS 11.0+ x86-64

lfdfiles-2024.10.24-cp311-cp311-macosx_11_0_arm64.whl (789.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

lfdfiles-2024.10.24-cp310-cp310-win_amd64.whl (190.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

lfdfiles-2024.10.24-cp310-cp310-win32.whl (163.8 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

lfdfiles-2024.10.24-cp310-cp310-macosx_11_0_x86_64.whl (805.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ x86-64

lfdfiles-2024.10.24-cp310-cp310-macosx_11_0_arm64.whl (790.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

lfdfiles-2024.10.24-cp39-cp39-win_amd64.whl (191.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

lfdfiles-2024.10.24-cp39-cp39-win32.whl (164.4 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

lfdfiles-2024.10.24-cp39-cp39-macosx_11_0_x86_64.whl (805.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ x86-64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: lfdfiles-2024.10.24.tar.gz
  • Upload date:
  • Size: 311.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for lfdfiles-2024.10.24.tar.gz
Algorithm Hash digest
SHA256 deace604f1189860351484c84151ecce9e50f1170b65fb47bb6e5ca3ef2c4847
MD5 446a726cec39e37561dfafeeef149b5c
BLAKE2b-256 8fd3cb62693508345e479e7d6442f4ad87c156af6c0a55e207951fa302c39575

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4a475b8c66a5bfdfe71342408499aa16d9fd1d78f0d875352f1a84926a3878a9
MD5 73896c3da2dcca3d34d85274be3ddb69
BLAKE2b-256 db792faa247156d66db61632ae18e158b8446b1cabca6cb9c2d9eee5985dc6c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cb6a4d420c0e66138daaaeed3ba3cbaf3f37220b1e8bba3c1c20f6649586e4e2
MD5 fa29ee72556867250bee706330f4b01c
BLAKE2b-256 c38af80996c0c47ef89a497a4f00cf5905e2d0e181d73810a6e33a64ba587dc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5a4ec72637a720c6381595c10da5e6921bccedc08a8e00700d0bc036ab338d93
MD5 ff4ed0a7a40b82b0fb1cd674a8174d76
BLAKE2b-256 4bec63d2f6748d54dcb488317f81a352c4dedb423a6969ee94dba019371100fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc3d69782c9ce784848ba50ce7bd93cc535fdecb0aff06b82a1228d7ef8faa12
MD5 888fbb3f694e88195e2de89721d5017e
BLAKE2b-256 624f26233c93d34fdc77aaa76533d8ff49fa9d1d77bc863e2104b8bf03c87ebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e513a279acf9465c03bdfa3d85d1f8ffd40c3c40521029f4de50ac158c085ce
MD5 a172b050291ccc08790e344bf52a301e
BLAKE2b-256 7b540fe59bee4145289ca2577df4a33839b38cf0d29d2b8f7295bdce1c9b3e6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 2a86afa4ce2d52b22886e6b6cf12cd1611a39e6623f19405636726f368fa9f67
MD5 12c9250139639e69e43ff92650c3e8d2
BLAKE2b-256 0bc3a2e5795eea7f6f1241a874f399bdd736769b151b2a40f49e4389f28c3ac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b079352e49e3697053f5b51251629a20d2b4b8666b5d4796ba3a047b0425778
MD5 9fd52cce52506550855dc2bf6f71a48d
BLAKE2b-256 5a892750e6f6391124924e6bb0be7d5ed60b180c9ae8855f154bd6b665f35383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2fb54bb64b12bff441542144662d366e576eeb42389102e4b9cbb94b42fb46ba
MD5 0ecb2842909923ad15a44702476b5e75
BLAKE2b-256 23f31436e75c93455c0e814af4565f89b3a5ae072c0a12b0bd8f558b966a7c5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7e63b25ad2d1626a005f38bea8daea582171754428f5142bf258f7214e3a3d67
MD5 157a71bebba22eb480c00d2ea3907137
BLAKE2b-256 25d87eb745f9af848e66bf49c54fbcc7d234fb3b5f612e4877ca473547f349a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ac99bdb59ad025527353d1f027ec4c401e6b1f1169a1ad8a280bf54a4bee3714
MD5 ca03e9bf399e85c6f627ab0ce775994f
BLAKE2b-256 dda8ec48e251ce8a2ad78bf1d106380e1c4963ba2a186946f9090f0c8c719c62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90d36eb038eb72fa402a6ea82df3254b8556ead4947f7c065524000ed23b87cb
MD5 333af0558f588c12133f32a8c481a978
BLAKE2b-256 266cdd3eddf70fb6327096646f602fbc2e7d82c4397ac2020ff3011ff027ac79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f0fb84cf8a6414e9b8cf5cf76b2befc00f657da6f45101ff8f62c1ecb60f656
MD5 cf4dc507030a89cb776b4d12cb8afe38
BLAKE2b-256 628734a2c1b4d30ebec50684334589bbe479194a518be13932bfbb85cab0f674

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 095309801a561c85744b43ca984ed6f13b3b35b2b07f4612b9c7be33d7237784
MD5 d2f0af21c8a4f975db80f7ce6f053417
BLAKE2b-256 d43e0f3154197ea64535f1a38770a83c868a20a402409c138f96c3b4089a8512

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99eb776dbfc20695a634083d2b4fd28f3279bbeccd54fa7f37967c6dfb031f81
MD5 906fe575fbf74032c0ecc7882c1b756d
BLAKE2b-256 beec4e5cfddd9508d69d99421a8b5affe0b42a5b56b015a45aea27bb05cc91c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 8e997b5bd4f3e32a3e15255004cf55f012983950166a04f0ca3bd36533bae4d4
MD5 de0b31b54b18b96ccbc9da1ca8cc1d96
BLAKE2b-256 d73cf13e3e9f27cda70bf595d7a93e53a88f9342f0e388665d00cea1b774ece0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bc10b50e56949911b68a55dcc7d304565e9e256394835ee0ca986d42c2446505
MD5 5012ceb6934dafcca04b6a3498bc9687
BLAKE2b-256 63ed5926b749dcccb3d59d5de0384f20d88e9dfec711db40ffb622b0c4b35a0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4924201ac7bb963cad64781f1a2d6c4b3c9d76e44e9b74e2bb5b6b79d99b81d6
MD5 587ecc95568d42c9bd1b7df0e8eeefc1
BLAKE2b-256 f378349c54ddf38cd7fcda98d02208a7d1659540c658299939565541e3b67da7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0b548833eec45a4e5e2b71c2165d95f136c0e30b50ab298c4c1843feab40196
MD5 02f8757f54d7b7af77b67396b0c22930
BLAKE2b-256 d906d9d86a96bd0a49c04108efe1638934e77fabdd9cc3708264c1a02cdd5196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b1230bfcdf9472d1e27e25abd19544e46f373408359d4eb5dbd5d0c43cb9bf7
MD5 30e43486729a12ed6d3e06c31befebc6
BLAKE2b-256 8f5fbc0bb9d7e8d341a257855c86ada1f6e58d6f7a48d4fb14c0b9a2b122ba4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 92db0f12818e16d83eff7b29a296e619462b718faf294b9f5a9adfae520038c5
MD5 d1cbfe85609b4748fee9ad4bd1a43244
BLAKE2b-256 02d2575cb609842c6f08346e3199b18a555be3643611c97503fa3262811a95b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45e911e2da0e5ec116645d269c584443bcc12d7f0c0f99a87fa0c15de71c2622
MD5 5092f2e6ba78effc6f6957a9a26ab6e8
BLAKE2b-256 e98fa7b016a66de64c954d1e4d04f71a73f4695d873f1727185048c4c7e64bdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d8b78f0f26fe32b7b479caa3f86dbc072a8d5ba29d1643b35673745d5448aad0
MD5 27df833c43e1647e373f43a1fca55b24
BLAKE2b-256 6abfcd2111f7b310ab83ee1739f175de4b8184abb80da9d8ca5e809f669ed571

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a00eb9b43263c43b25b112913ed09ea4d55a12b75b936178cc1596371ff65a02
MD5 d6853e854864fdfb756747ea8c406411
BLAKE2b-256 7a7a1460e5071f35367e55aa1e0968a86e4c539baf36fc8dc252f69b0d2ef87b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fef02d7921c748cd7120d86fe5e12dad547d38a8f7eba4c287218e35076447fe
MD5 2bec736e026de8fa5e497a650754d0bd
BLAKE2b-256 d78cc29f9e262f466e660fb893c4a4934ed269d6cf5b851082c884b76c258274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb20fb7d14e691338f9200f2bebbec268d5a6e5f06d18f3f20abcf4f1847038d
MD5 efa2a6365c1dfd7ef82cc1d3de3c6a00
BLAKE2b-256 52e38e3daba189f19cfdd6216f4508ca7f8fec60f6cd58571d2342e40b65a19f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 6f66e4640b165ebdcaa78a0e250180f78b6c21b1518cb05f4d8b623480dbef6b
MD5 0fc64b6967a07267a9f84b6026a61d4a
BLAKE2b-256 9cd32c21a1dc5ef581ba9d3980a89e956495237f47ee3b12e94ac60e559f90cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c24c30427513e8742c4cb0060d1ea455fe853434455443f61fda621e7a4e0e0c
MD5 1b48393238f60dcc90029dc9093eb615
BLAKE2b-256 5fbdc485dd92e53ec8b3dc83743c74ed768874729454b30be9b5d12e1553a761

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5f06b62bb2e422ff9ea7f684a344374332f3b2745de5aa7dd0acdd2a1d677c07
MD5 535dc1cb6f8fe08b7061d19ff0056214
BLAKE2b-256 c3b76623c59bb5ec84839285746286c97487c2af3e82b9d7bfbe922543069f6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lfdfiles-2024.10.24-cp39-cp39-win32.whl
  • Upload date:
  • Size: 164.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for lfdfiles-2024.10.24-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a6de2777f7bffa7aae6e2ec51dc791660f5a5048837df0d392939162d3a1d6ac
MD5 8b48a2d22f3611f84b59819d77c3359c
BLAKE2b-256 0a07c7a39fefcac4ec3689ff3723dfc4684e0c08d6855ae537c643e5b6077af8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2fd14cfdc14b8757545a069f8bccbb403d781f70292f589d7da396320077dd8b
MD5 fcd974ab82b17cc7a9ff049eb983dbb0
BLAKE2b-256 74f0fcacb93390b80e986156502231bd30ca4e5b04731ddd47f9fcb443139017

See more details on using hashes here.

File details

Details for the file lfdfiles-2024.10.24-cp39-cp39-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp39-cp39-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 096f2a95fb83a27b00b76ea1a9886ea2771200bc322ee339ef6ae01d0a957364
MD5 044aece39a1aad9b2400892763fef7bd
BLAKE2b-256 1dd0d2de879eef35bbbf6f9b58d06ca64d39dbf6c697db0d40cc808d20c2753e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for lfdfiles-2024.10.24-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 753616b6f45250192bba99977bf5a634c3226c9be3376d5d31ee9685e0777d17
MD5 727b9a110a12f532d98808abd563938b
BLAKE2b-256 5be4ed639423670e2e35faf199bd903b3b9c88dc215a28216cda63adcde7b2f4

See more details on using hashes here.

Supported by

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