Skip to main content
Documentation Status https://badge.fury.io/py/littlefs-python.svg

littlefs-python provides a thin wrapper around littlefs, a filesystem targeted for small embedded systems. The wrapper provides a pythonic interface to the filesystem and allows the creation, inspection and modification of the filesystem or individual files. Even if this package uses Cython, the goal is not to provide a high performance implementation. Cython was chosen as an easy method is offered to generate the binding and the littlefs library in one step.

Quick Examples

Let’s create a image ready to transfer to a flash memory using the pythonic interface:

from littlefs import LittleFS

# Initialize the File System according to your specifications
fs = LittleFS(block_size=512, block_count=256)

# Open a file and write some content
with fs.open('first-file.txt', 'w') as fh:
    fh.write('Some text to begin with\n')

# Dump the filesystem content to a file
with open('FlashMemory.bin', 'wb') as fh:
    fh.write(fs.context.buffer)

The same can be done by using the more verbose C-Style API, which closely resembles the steps which must be performed in C:

from littlefs import lfs

cfg = lfs.LFSConfig(block_size=512, block_count=256)
fs = lfs.LFSFilesystem()

# Format and mount the filesystem
lfs.format(fs, cfg)
lfs.mount(fs, cfg)

# Open a file and write some content
fh = lfs.file_open(fs, 'first-file.txt', 'w')
lfs.file_write(fs, fh, b'Some text to begin with\n')
lfs.file_close(fs, fh)

# Dump the filesystem content to a file
with open('FlashMemory.bin', 'wb') as fh:
    fh.write(cfg.user_context.buffer)

Installation

As littlefs is bundled with the package you will need to install the correct version of this package in successfully read or create images for your embedded system. If you start from scratch the latest version is recommended.

LittleFS Version

Package Version

LittleFS File System Version

2.11.2

v0.15.X

2.0 / 2.1 [1]

2.11.0

v0.14.X

2.0 / 2.1 [1]

2.10.0

v0.13.X

2.0 / 2.1 [1]

2.9.0

v0.12.X v0.11.X

2.0 / 2.1 [1]

2.9.0

v0.10.X

2.0 / 2.1 [1]

2.8.0

0.8.X-0.9.X

2.0 / 2.1 [1]

2.7.0

0.7.X

2.0 / 2.1 [1]

2.7.0

0.6.X

2.0 / 2.1 [1]

2.6.1

0.5.0

2.1

2.2.1

0.4.0

2.0

2.2.1

0.3.0

2.0

This is as simple as it can be:

pip install littlefs-python

At the moment wheels (which require no build) are provided for the following platforms, on other platforms the source package is used and a compiler is required:

  • Linux: Python 3.7 - 3.13 / x86_64, arm64

  • MacOS: Python 3.7 - 3.13 / x86_64, arm64

  • Windows: Python 3.7 - 3.13 / 32- & 64-bit

CLI

littlefs-python comes bundled with a command-line tool, littlefs-python, that can be used to create and extract littlefs binary images.

$ littlefs-python --help
usage: littlefs-python [-h] [--version] {create,extract,list,repl} ...

Create, extract and inspect LittleFS filesystem images. Use one of the
commands listed below, the '-h' / '--help' option can be used on each command
to learn more about the usage.

optional arguments:
  -h, --help            show this help message and exit
  --version             show program's version number and exit

Available Commands:
  {create,extract,list,repl}
    create              Create LittleFS image from file/directory contents.
    extract             Extract LittleFS image contents to a directory.
    list                List LittleFS image contents.
    repl                Inspect an existing LittleFS image through an interactive shell.

To create a littlefs binary image:

# Creates a 1-megabyte "lfs.bin" containing README.rst
$ littlefs-python create README.rst lfs.bin --fs-size=1mb --block-size=4096

# Creates a 1-megabyte "lfs.bin" containing the contents of the examples/ folder
$ littlefs-python create examples lfs.bin --fs-size=1mb --block-size=4096

To extract the contents of a littlefs binary image:

$ littlefs-python extract lfs.bin output/ --block-size=4096

To inspect or debug an existing image without extracting it first you can start a simple REPL. It provides shell-like commands such as ls, tree, put, get and rm that operate directly on the image data:

$ littlefs-python repl lfs.bin --block-size=4096
Mounted remote littlefs.
littlefs> ls
README.rst

Development Setup

Start by checking out the source repository of littlefs-python:

git clone https://github.com/jrast/littlefs-python.git

The source code for littlefs is included as a submodule which must be checked out after the clone:

cd <littlefs-python>
git submodule update --init

this ensures that the correct version of littlefs is cloned into the littlefs folder. As a next step install the dependencies and install the package:

pip install -r requirements.txt
pip install -e .

It’s highly recommended to install the package in a virtual environment!

Development Hints

  • Test should be run before committing: pytest test

  • Mypy is used for typechecking. Run it also on the tests to catch more issues: mypy src test test/lfs

  • Mypy stubs can be generated with stubgen src. This will create a out directory containing the generated stub files.

Creating a new release

NEW (with github deploy action):

  • Make sure the master branch is in the state you want it.

  • Create a new tag with the correct version number and push the tag to github

  • Start the “Build and Deploy Package” workflow for the created tag on github

OUTDATED (without github deploy action):

  • Make sure the master branch is in the state you want it.

  • Create a tag with the new version number

  • Wait until all builds are completed. A new release should be created automatically on github.

  • Build the source distribution with python setup.py sdist.

  • Download all assets (using ci/download_release_files.py).

  • Upload to pypi using twine: twine upload dist/*.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

littlefs_python-0.19.0.tar.gz (529.4 kB view details)

Uploaded Source

Built Distributions

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

littlefs_python-0.19.0-cp314-cp314t-macosx_11_0_arm64.whl (195.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

littlefs_python-0.19.0-cp314-cp314-win_arm64.whl (142.5 kB view details)

Uploaded CPython 3.14Windows ARM64

littlefs_python-0.19.0-cp314-cp314-win_amd64.whl (165.2 kB view details)

Uploaded CPython 3.14Windows x86-64

littlefs_python-0.19.0-cp314-cp314-win32.whl (135.8 kB view details)

Uploaded CPython 3.14Windows x86

littlefs_python-0.19.0-cp314-cp314-musllinux_1_2_x86_64.whl (979.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

littlefs_python-0.19.0-cp314-cp314-musllinux_1_2_i686.whl (946.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

littlefs_python-0.19.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

littlefs_python-0.19.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (986.4 kB view details)

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

littlefs_python-0.19.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (944.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

littlefs_python-0.19.0-cp314-cp314-macosx_11_0_arm64.whl (183.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

littlefs_python-0.19.0-cp314-cp314-macosx_10_15_x86_64.whl (190.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

littlefs_python-0.19.0-cp313-cp313-win_arm64.whl (137.9 kB view details)

Uploaded CPython 3.13Windows ARM64

littlefs_python-0.19.0-cp313-cp313-win_amd64.whl (161.2 kB view details)

Uploaded CPython 3.13Windows x86-64

littlefs_python-0.19.0-cp313-cp313-win32.whl (132.3 kB view details)

Uploaded CPython 3.13Windows x86

littlefs_python-0.19.0-cp313-cp313-musllinux_1_2_x86_64.whl (986.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

littlefs_python-0.19.0-cp313-cp313-musllinux_1_2_i686.whl (945.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

littlefs_python-0.19.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

littlefs_python-0.19.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (985.3 kB view details)

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

littlefs_python-0.19.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (942.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

littlefs_python-0.19.0-cp313-cp313-macosx_11_0_arm64.whl (182.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

littlefs_python-0.19.0-cp313-cp313-macosx_10_13_x86_64.whl (189.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

littlefs_python-0.19.0-cp312-cp312-win_arm64.whl (137.7 kB view details)

Uploaded CPython 3.12Windows ARM64

littlefs_python-0.19.0-cp312-cp312-win_amd64.whl (160.8 kB view details)

Uploaded CPython 3.12Windows x86-64

littlefs_python-0.19.0-cp312-cp312-win32.whl (132.4 kB view details)

Uploaded CPython 3.12Windows x86

littlefs_python-0.19.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

littlefs_python-0.19.0-cp312-cp312-musllinux_1_2_i686.whl (973.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

littlefs_python-0.19.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

littlefs_python-0.19.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (998.3 kB view details)

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

littlefs_python-0.19.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (969.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

littlefs_python-0.19.0-cp312-cp312-macosx_11_0_arm64.whl (181.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

littlefs_python-0.19.0-cp312-cp312-macosx_10_13_x86_64.whl (188.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

littlefs_python-0.19.0-cp311-cp311-win_arm64.whl (136.6 kB view details)

Uploaded CPython 3.11Windows ARM64

littlefs_python-0.19.0-cp311-cp311-win_amd64.whl (160.0 kB view details)

Uploaded CPython 3.11Windows x86-64

littlefs_python-0.19.0-cp311-cp311-win32.whl (131.3 kB view details)

Uploaded CPython 3.11Windows x86

littlefs_python-0.19.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

littlefs_python-0.19.0-cp311-cp311-musllinux_1_2_i686.whl (975.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

littlefs_python-0.19.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

littlefs_python-0.19.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

littlefs_python-0.19.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (968.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

littlefs_python-0.19.0-cp311-cp311-macosx_11_0_arm64.whl (178.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

littlefs_python-0.19.0-cp311-cp311-macosx_10_9_x86_64.whl (183.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

littlefs_python-0.19.0-cp310-cp310-win_amd64.whl (161.8 kB view details)

Uploaded CPython 3.10Windows x86-64

littlefs_python-0.19.0-cp310-cp310-win32.whl (134.0 kB view details)

Uploaded CPython 3.10Windows x86

littlefs_python-0.19.0-cp310-cp310-musllinux_1_2_x86_64.whl (988.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

littlefs_python-0.19.0-cp310-cp310-musllinux_1_2_i686.whl (957.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

littlefs_python-0.19.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

littlefs_python-0.19.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (986.5 kB view details)

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

littlefs_python-0.19.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (952.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

littlefs_python-0.19.0-cp310-cp310-macosx_11_0_arm64.whl (180.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

littlefs_python-0.19.0-cp310-cp310-macosx_10_9_x86_64.whl (184.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

littlefs_python-0.19.0-cp39-cp39-win_amd64.whl (162.3 kB view details)

Uploaded CPython 3.9Windows x86-64

littlefs_python-0.19.0-cp39-cp39-win32.whl (134.6 kB view details)

Uploaded CPython 3.9Windows x86

littlefs_python-0.19.0-cp39-cp39-musllinux_1_2_x86_64.whl (983.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

littlefs_python-0.19.0-cp39-cp39-musllinux_1_2_i686.whl (951.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

littlefs_python-0.19.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (998.0 kB view details)

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

littlefs_python-0.19.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (980.6 kB view details)

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

littlefs_python-0.19.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (946.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

littlefs_python-0.19.0-cp39-cp39-macosx_11_0_arm64.whl (181.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

littlefs_python-0.19.0-cp39-cp39-macosx_10_9_x86_64.whl (185.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

littlefs_python-0.19.0-cp38-cp38-win_amd64.whl (163.0 kB view details)

Uploaded CPython 3.8Windows x86-64

littlefs_python-0.19.0-cp38-cp38-win32.whl (135.5 kB view details)

Uploaded CPython 3.8Windows x86

littlefs_python-0.19.0-cp38-cp38-musllinux_1_2_x86_64.whl (994.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

littlefs_python-0.19.0-cp38-cp38-musllinux_1_2_i686.whl (967.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

littlefs_python-0.19.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.0 MB view details)

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

littlefs_python-0.19.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (999.9 kB view details)

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

littlefs_python-0.19.0-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (961.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

littlefs_python-0.19.0-cp38-cp38-macosx_11_0_arm64.whl (183.1 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

littlefs_python-0.19.0-cp38-cp38-macosx_10_9_x86_64.whl (186.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file littlefs_python-0.19.0.tar.gz.

File metadata

  • Download URL: littlefs_python-0.19.0.tar.gz
  • Upload date:
  • Size: 529.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for littlefs_python-0.19.0.tar.gz
Algorithm Hash digest
SHA256 4ce8c6eeeb2703abaf8cb60f2dab624b17af42b13df3dbc6c42d4142bad79a59
MD5 9bc9853dc250dd9dcd650e8f46b34498
BLAKE2b-256 d82d22e8b009632efa8c917724e4e20e30b57be8b9ae6acf403ac8f1887bb205

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89905592c4f509375d7d3d1a0187ceda57db74d8371093ccf42d5db6f190b10f
MD5 d4bcb7ee605e4695d02ac015a9d8e1b3
BLAKE2b-256 b4b69f21c5ecf2b9adcbd75ddda1cd138e7cd606634f9258a20a94fe0728c5e8

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f5125a8d763129808d52e874501e45100b7fdd619584e558674507202a1f1b38
MD5 7f8b51ff2b67236bbbbc945e601ed30f
BLAKE2b-256 a4222e6a6464117974ec7e180fea20448f0ffadb6778b85d7dd157311ee02ea8

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0fcf1e8c35e63d399a89f55fd2dad370ed312ea8584aba2f5fea691dabe2db72
MD5 14fe45877bb1a8b2559a8e1896a50520
BLAKE2b-256 96f3e74c0b4d7cd5911fbfcfb059257d2c1c688f9c3fec6bd4522ad180a20ce8

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 643ffb360cedfde6a310da09ae806d030dd1769ef78bd79afe09eb345c4acccc
MD5 8334f9520e682a07983d8e0c4ad52d9f
BLAKE2b-256 40cd08b326234c29c7e11eda795bef1839fa6f2e429dab01f6d070e728f6ec73

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1586da7b9c6a4508479395322378fb36ca021e586cef2d2fe4b4b3f26c4e3c04
MD5 155cedbafa9b0554ceaf789b7d6049fc
BLAKE2b-256 acd50e516699be195f8ca462c902996e0ae6b34bd3b09416ce2c3047239ae921

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e5ca23e6f1938d92ea75f7ce2409b77e09480e7b523cac35b2bdbf6c957305e
MD5 bf84b55619f5442a0bd3c8be344d48b5
BLAKE2b-256 5e2bdc2518d31be33d8c2d1d356298f4b70933c22805b6f4736dec08aa6c648d

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 55343a36ccbf389d927f2e07ed7097b3b65f3e87b0416a670d5cae0f6131b5a8
MD5 67b350d16b05432f6c2a1d905a221c97
BLAKE2b-256 79da32b1d6f1aea2ae8f8b596a4704d5cc657c4f60c303b125f145f41d6e4f96

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b64cc280bb53a0d93a8ccc4ab6ec3e90f53bbd06c6d7f318567cdaac26968046
MD5 a0be130a1022d4ee7e0c293ad4d163c4
BLAKE2b-256 308f9dc82f6cd1c17fa5ea974164d9681e8e444d4183fafc8096e4db442dc59b

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d643f7d5c4adf601e500b8958deb99d6f8bae914cf6c6be14e3cad047888506f
MD5 030866e1d330a4441400ba037c6480cc
BLAKE2b-256 81727e3f108b1f4e5ef524244c5b5c49066ab1122e5c5abc2c5f4b9f77b2a7a7

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d054ac280541afdae5722fb8d7ebc0e121d822c33d95d57889fd8fab2a211486
MD5 3dfecd1f21420923518a0c81fb4a0a2f
BLAKE2b-256 2612ab923553e4894fbf44f4692d6c5898c1e66f41e57ff7a73b90e8aa0fb6f5

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9cefa021649f760979657a414874f88292317effdd38dfbdd7edac7800ea514e
MD5 e3a3072cdef545f762d23403ba0c4e78
BLAKE2b-256 8b2064ecd057f5ea8fa3c61e2457e2d66f05bbf5141bfb22b669637cf15ad825

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5eef1580bc4a1678b5777ace3a646cf064bcb282114eea8c4a251c3704d2affd
MD5 4dd378ebdb0125c540c6f98b80afe7ed
BLAKE2b-256 6edd696738040bfdcb9afb10ab5f51fcda286f6c0ccb83291e9c4f09f8c6a0ec

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ec8d3de4f05d9420d0e1d013d9134cc68b2b6c15656115a7add2f1f9f5a655be
MD5 d5254eeed015a3ae1ed47ac975bf9734
BLAKE2b-256 d3f79c47d264f5ccff659eec6a8a087b207fb45d4a316581e2d8cd8ee228ffa4

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 109dbfdd1bd381567d7f831aabcb279a09ffd85c80e9c696434395fa83fb7606
MD5 f85854c221561f271eb649c1e4f1aafa
BLAKE2b-256 ad92ed5e95624ed29857c30e675e516fc2cc4c411df8961ba93953e2c67bd2c8

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb9c65c235d33e10b9caa06d3cc37e396cc10f85d0ed7a4de7bfdb35f1c94814
MD5 92d964257ad8f2bab0d5ef731bc86059
BLAKE2b-256 dcc146f854ad583eb40546bf0db884226170eb3ab016619026ae718114557862

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d15020333abda47819d9d11d6fabe13eb64b83abeb9ae2d93c07a142c53f6aa4
MD5 c2368e0176d1fe4f94ca244101faf89d
BLAKE2b-256 2ed5ccec20fca1823c32c072f9d4fcb159e711bae5143660cc185172696c00e6

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6a5a799297570241487bdf42de82fa8d238966f1af502f4f4f5b32bfc4d74676
MD5 bcbfc45736380b977ca647117e2176d8
BLAKE2b-256 196043f12328947f8472a67a540d691ed3a9401addfe7e4aa09cff7e8ea6b643

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f526d9216cc9dfccb81b9d7d990d9a2e9cee62261ec608bea8465e951006bd56
MD5 6f7474bed1f19d3d6a3a190d2208746c
BLAKE2b-256 e1d964411b1893ee90d3564fac0435bf21024b195b1bb93da1ac9ad44304d2eb

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 f155325d95e95690b39ec716e20b87b1c5a1a09a91cde158208aaa6277bea896
MD5 a90a08b391aaf938c6dadc25a1aa7bec
BLAKE2b-256 3a4337be269b201f34de263c48792906ae076ad6d3f68a96b3fcac95dd3c209e

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e006ad20d0af696967b55ff6d74a5ce1a0ecce5ba5a6a0f8030d56b0a6f6e92f
MD5 06d16fdc1b2a9baa27cdf767272205ae
BLAKE2b-256 949dd4cfaddb5942c789bb35e4976e13068ad9648c60589c2412686df77ae3b7

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1bd7dc438f27d6b3d6ec9a9210740653eefa1239745d0c9da230554d8bed9470
MD5 eb021b1fbce2a0e3a9a42da5c770b019
BLAKE2b-256 3ba08fc8fdefb4a362a5919ca02f592898ae868174614625aca97f6aaf09760a

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c170794e550c18853f2ea1767df526aa879c27c963064cd88920994430cc6ffb
MD5 f528763d6f024b1053ed6db7e0a75a4c
BLAKE2b-256 d007e3c3296af085547b3fb4c6ad25bf330bd9c17a2805ccb33a14f2b0b9f7c6

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0aaae1347d5a05da5e582b0d4c241d70b2736d01e5dbc58f9ae39ac659fc8393
MD5 abd02d43a30018e010626f0daa0c6159
BLAKE2b-256 f05266fab84b0168d9fdf652e5cc3978ac816ec533fbfc742d974920efe9c2c9

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 012a4117d9e07376100907ae737ee35b48d58e394a17b00f3cbcd83d24d353bb
MD5 d1696fdf09b84edc0adac76df5259a2a
BLAKE2b-256 628148cb5e64be3b8250d5e5df8afaa568a5065760b74f4a5e302a96a03c7336

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8d017ff77bd7435bdacb4d94e7f7c53aceab0bed5ada73940be9ed5ba4e205e
MD5 becb3e8720ce888f3cc990c86405ca89
BLAKE2b-256 14250a0025552605dedf9846661eb930e6639dfab49cb3bbc7907b10e08b23c1

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 30b3c6c8f7e85526747eb8188c2b8ccf572ac1701c7ecf4949b1231de0ced510
MD5 07f5dbc7dd4c54a7fbe54d6c833adf07
BLAKE2b-256 cfc18b32e72fcd8e6a6d310ac617096f93809bac62827169d5e6f7ab0fa724e8

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 53edd72cbce541939beec404a5509f4afc08ef694759201ffe91aff8adc5f254
MD5 9f133693400c48624421228e5fdc556a
BLAKE2b-256 992c582c76811d6c799165619b618a1c4dc07178282ab55373aed31ba4c26976

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5a9a84ac0a4da2e37f9bfed0ecf70d2a8c57063000a39e93d1e4ab247643e7bd
MD5 abf381ae53b975fe341c1cb501e1b068
BLAKE2b-256 42700df951bdbe457abc2eb41ae6f0a06660b6f91decd06c70da82847ce1830e

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 19d436537ace9f01d0f43b0453242d3aad3132abf97c5265302f03d84cc56482
MD5 da5583883ccb715a372c047a1082a8c0
BLAKE2b-256 e0012f032bd9a730fd69c842f905ab65d65ccfa0fcca2f5a36a8609c9028b666

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 986360d0fe75a123f156b5d6009cbc100ed2d2b966bada9b180ce7ff0faa43ee
MD5 3a39aa95f4153bbfe9af81462e674aab
BLAKE2b-256 751f9d5d7cd2ae2a1e553ba65a314bd16436fbccb36c26fff380add605cac6f8

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 947b3590e995d022051509c58c310550478f47074dca58479217b5938d5b7128
MD5 1474c9b07d55a16619fbeca0bbe130ac
BLAKE2b-256 2feb418abffd30cdd9240daf2b6155d3aea5ead05c24ebe6627a8b66ba55270c

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 9e18b5359f24e6189d2869ae40297311d073ebad3be68cc83df6643b3a1089ba
MD5 dd0cc20180db1420bf744af5d3cfb4b7
BLAKE2b-256 0c5bde627e24efc56d126d655d9bdfa0531630c9abc860e043d74e99642841c0

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ccfa7e423d55b2645095a8abf56d4f46ae932c04e19ecd9e08d9e1191e5603cf
MD5 65c453334172fe7e02502ace4e6fca5d
BLAKE2b-256 171d5787baab2837b7c95e9fb194271039177ea0586e85478d2ee0f46fcde7fb

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0864448636264eee6e2673118c711ad22e0663b6a6c63d2a95c05ee212d9c1fa
MD5 f2c6ce17aea2b584859755013ef51c44
BLAKE2b-256 dac67f2a3e8dd3877af86fb06149881cce09a4e5c197374f621f395fa9028f46

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51425e64a4e37bcbaaa2c99e12ffbbb1d81f96618bb824ac68c938757ed853d3
MD5 c5f23bdcb11cf16a0e2fd0b9f02b016f
BLAKE2b-256 71016e340769d769e7ce70c008d17745bfa0d62e4a8eb11b196904a282d1f748

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4058e125fa7b44f91327ecf57db18f3a0d67d9015a67d4579e2e683870d33627
MD5 eefd41316fa002a114cce8920cca03f6
BLAKE2b-256 e8d93756866f67ff5b023534b9caa3e8f8bb7dc078a8664a9061ff6575f55483

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71252f91d871357d2581473367840806c6dc05427e965e100f4b1433ae402c62
MD5 03cae21c033623db97181915c7397a7d
BLAKE2b-256 5162812cb8a4d24384ada310200aca67e18389116757da267092d405bd40002f

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 711fa5c5748ba24cf3178ccff632357e4f93fb28901ceab6927e9c03a6b37e43
MD5 f0ba03d5097e2e749be1463f4b3c157c
BLAKE2b-256 7e4ffcdab8641cbf4124f0c5421a80252af3f5702f4f8fa12991d9d95409cc05

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c197db6623142b33f484709445d04902c4c6af91c686d065f703d6ae94309fa2
MD5 650818c131d2a1a4f6673b906dfe8e3e
BLAKE2b-256 27e790e6494369d132d67aa98faa713a41cf895fbafb2c2b7d62a021e6fa18ca

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 870f9b7c6d309bbd6d4ad95757c1af39376a5ba3c43800cab8c0933f5ad6da34
MD5 dea4b6c8c1017eebf059232ca29cf47a
BLAKE2b-256 c70a91dd9cd4fca2ff943a6cf5e0c3cf9d0411460657770ef0c2ae5326a725bb

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 15007c78d1bb6b1a06ec0e7c662dd9e7469a06a5134fadd67bcd9812223905a2
MD5 0f4c3145252967972e397f2a212cdc47
BLAKE2b-256 fb2051502c97902a588b25fa708b53125b11aaad18a7044fb16a69d36bf73d95

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 54945e95faaf1edaf7bd554ea13889ad2ab786e213d0fca114385ee16de2c54d
MD5 0cbcbed9d5c348b8b4b2ff5dc3cf8408
BLAKE2b-256 2734905e12c78c3d4d12b7edf4b86e53540b4385759b08a4a02440ad64e4830c

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 020e2cc8b08e4246b41d8413146e8193c84e779e8e10e5ff08d6e60250022331
MD5 a651675bc902ce17a00a51043e41eb54
BLAKE2b-256 b6636a0b36d1e71a37aa4be9a5b56212b957440d62cd5f092bd4994af10a3ef7

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7eb56074fbef683a923908091cae60fb3554f9bdaf82db92811e5bae8675b2cd
MD5 c9d06e1b5a5fb188225528b50e577bf4
BLAKE2b-256 45153d787d74fe11d7043d1a7c94f0c08b37314bba9cc384beed0215af82482e

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8abdaa1c78cb665c6cad6c8c5f0893d702af86587aadd7f1bc0442f61c742a19
MD5 8370fc214722e22a02233938488201cf
BLAKE2b-256 81f87c6ac666fee3af701bc67b7e709d1c911209440cc5ea44d12ae1b30c786c

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 58e8eb151741747447c953286c35743d82a51527bc500d61678823abdf14b6b5
MD5 613a6ec1b9f7ed03968877eaedf82d08
BLAKE2b-256 0ca3b37237be64730f35bbbdf0cc51434219798eee4cd31cd18ae26956d3c319

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 58c37bc1d4d845af40a2456f1850359dd35325001f52208b04fcc07068e2e5fb
MD5 e1a4553cc645dff4163e67292c6fa437
BLAKE2b-256 eb5473e220f407cc7928c280dcdda23d5a3949e3328c4553f6d965c64bb5da93

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d63e077eecd9982f0d3816ee0c95dd3b6c3e514e54272a4e80154df7f320e342
MD5 ebf7ab61fb26440d23c78c50454fefc4
BLAKE2b-256 7466c592d04f7273b6d23d504e2ed2117686bac007f0096c1eccdfbf222811cc

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8ecde73f89f4bd8edf764f5c422a40aef68bc401ce3465ced10cd0525bd23f3
MD5 54ef4c529644fe345b641f23be5286fe
BLAKE2b-256 1a2edcf7c4174bbaeb8a0d3840235e38846331c79d466fa66cde4e5bcd3ea2cc

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a409b071260aa0006b773c17528f8e2c91cf115799bddf6951e0e07b99b359e
MD5 720ae2ae3c75b1484da59b8b35addc33
BLAKE2b-256 ad17e9ba82d3f4824b6b00e6a284b9067b84fcf0e61524fdb7126810e0556fa3

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5675b86b67a12a9764924525ddc15ef82b688714d4093ce696e082253ae2e790
MD5 382112e6bde286da700342e281b1ddd1
BLAKE2b-256 463eb5ae403d260b7139b1027fed4b5f972408c59730ad0c1d8d559fa35917d3

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: littlefs_python-0.19.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 134.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for littlefs_python-0.19.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 903bea7431e625f05cf76babcdf9bd39fcee7e12ebae43284711af9424c5f3c7
MD5 65316c0bf43c521a325e008066efdf83
BLAKE2b-256 6b4f3579a6d29fba08d7be5aa9c95d944ba6758e55321840301e5548c74c9d17

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c6df3da27680b08350f898c3a66ebddce15f1892f6aa007f9ca5f36d262aa76
MD5 85a8fe0c0cc73a42b8f885c1d5c3c818
BLAKE2b-256 56b1d3d30abe472429acfdc8f48ec07573e0f22eb13303c479c495d73c1229ef

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a27c00ad37a5ad79ad1b7dd72dd18d82b01b1deebe6aba50527424f13f16cc43
MD5 5ded0bebbbc10ccb21549aa18b7950ee
BLAKE2b-256 6b11f28850c160c9df66525be45c923401a9e27356bb05c82b419be938064e51

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5421c47b5bdd43d4cb855910263ee8884c2b6b0a779dfab6f31e1e27604a93d0
MD5 69c71aa10c041917470c989ab602648a
BLAKE2b-256 f734287e720640dcf4f1e859246cc96ce38e37cb7a328d60593987f2729e9b87

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 140bcd3e34896e90dae524cc4762d97378cbd0e3b473a06829d6144e6ca9dd5b
MD5 410843cb159bf6c850108b20bbf887bc
BLAKE2b-256 dcd70ecdf793fc799db8e2991f5855cc1dd68e5558a83c8c5fa0b05f0df79e31

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 6d59cb8a72912cbf7f10a3f88f881e8cef625945b3259083f69b71816087c617
MD5 54d9591fb0f07a6115f0e480d508a8c6
BLAKE2b-256 8178148f57e5b3adfb38e708288e26bed48bde8a9f0f0022ffe9fdafab85523e

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53f19918ad27c7fec890eb08d2f0d5649cf55c2c179e2777c4ea2ed958ddbe67
MD5 3776a7de84bb60a24170b0f41f3b5702
BLAKE2b-256 73c00b961f7c6157136c795da34d19b4700349b52c237f46a47d804821c95333

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2c6fc43c47003b8a394d9639b89c82bbe234cf9fdc1f835be4f30b5e4ba05d49
MD5 b5849036737f3f8baecfec5fcfd48d0f
BLAKE2b-256 a40e59cbd4a3b95f1e1126dc711f847528c208145a6baa6e6d575287e264f1a7

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6051ff3ece097e21eb301693ca93e7bceac55cbe378ca14dfdd948a08dfe9866
MD5 376383ab48ed2f94324404d0e8370829
BLAKE2b-256 cb15127e362cb435c7e75aa574d4285a733dd2b750ecc4e0f885c51ee0d831e5

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: littlefs_python-0.19.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 135.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for littlefs_python-0.19.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 65a415e6efa597091bc292f8e6b7ffb7b96d4e7209cbbf9c3b856df18fb5934a
MD5 3a1aab9e896cc8337452208def410fca
BLAKE2b-256 5f69e17c4e7ff1080e12f40a6143bdf97e7ab2774c0ddc8b1a48eeb46508a59c

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62b7b9ff5ee463bf0359e2bfd04231cc06550481a16a50c79bb3d7af4bd77a4c
MD5 8d91d224b35b5a4c9cc8da91b4778eeb
BLAKE2b-256 7b1716173eff7d01c61805723bb50b64ea5fed2009a0e4356c7947e05f526b34

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a7be934562a5e3053646ce5bb0a98dea8361b97b8aa06bc830c18d49f79a8aa
MD5 5cd4b2e16c4b5969381cd228c0171ec8
BLAKE2b-256 dadeb89a66d0ff6e6bb14ff9e45fd90fb5077f7c59155eebd07bb600af3cff75

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0965a06332177694681c1485a564d0ede4958258a649f45a4ed409c98ad2ab2c
MD5 60c69270e39f1dc89fd18289e95a9867
BLAKE2b-256 257dd00f9a94860bcce86b8c4848962ac05ed3311f04aaec8dfcd39f2c8e6e36

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c99b0ec49e9b840b2b4b143bc60272a9bed24eaf5187d166b2d54b09aac19d39
MD5 a197f2fd31890d3a88cd1d48fd1c37e9
BLAKE2b-256 dab179f1153a0a914c51893b65a97ead1cb7bd99d6fa0a0ea29de0006eef7a04

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 fa1280eeb6d32b026dea65e5078d5af0fadccb26dbf709c073d0e5729270a4b7
MD5 05a11955977f365e28a70b8fa2a4e28d
BLAKE2b-256 f0c6ccf2cd6d00c836c2fa4cce30b367a9070585c54a63a9cc44db8fd08cbd0c

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f889f3d1839df23fda7c69a3b4d9a3fa1083330ab03b121448b71f51442c6d63
MD5 991a2ccc30871433fbaf02e5f0356d54
BLAKE2b-256 0dc422c69422051dc37bae333fc9cbcffdd87c0d56c9d18bdcf7d607aff66215

See more details on using hashes here.

File details

Details for the file littlefs_python-0.19.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.19.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58e0db33a7481cd85e4e7074959a4df39bc4f76426596fcab7462913ad13f288
MD5 da052898f46bda2ab7e2a81138d78331
BLAKE2b-256 5f60aa5a922fe6e4f9587fcfa67889e576efa07f4a67e7da1fed7141b3c28a4c

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.19.0 This release

69 files

0.18.0

65 files

0.17.1

65 files

0.17.0

65 files

0.16.0

65 files

0.15.0

65 files

0.14.0

63 files

0.13.3

63 files

0.13.2

63 files

0.13.1

63 files

0.13.0

63 files

0.12.0

48 files

0.11.0

44 files

0.10.3

46 files

0.10.2

46 files

0.10.1

46 files

0.10.0

46 files

0.9.3

46 files

0.9.1

46 files

0.9.0

46 files

0.8.0

46 files

0.7.1

46 files

0.7.0

62 files

0.6.2

53 files

0.5.0

43 files

0.4.0

43 files

0.3.0

36 files

0.2.0

21 files

0.1.3

19 files

0.1.2

18 files

0.1.0

18 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page