Skip to main content

A python wrapper for littlefs

Project description

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/*.

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

littlefs_python-0.17.1.tar.gz (523.9 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.17.1-cp314-cp314t-macosx_11_0_arm64.whl (189.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

littlefs_python-0.17.1-cp314-cp314-win_amd64.whl (157.8 kB view details)

Uploaded CPython 3.14Windows x86-64

littlefs_python-0.17.1-cp314-cp314-win32.whl (133.3 kB view details)

Uploaded CPython 3.14Windows x86

littlefs_python-0.17.1-cp314-cp314-musllinux_1_2_x86_64.whl (972.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

littlefs_python-0.17.1-cp314-cp314-musllinux_1_2_i686.whl (941.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

littlefs_python-0.17.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (989.5 kB view details)

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

littlefs_python-0.17.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (968.8 kB view details)

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

littlefs_python-0.17.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (936.6 kB view details)

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

littlefs_python-0.17.1-cp314-cp314-macosx_11_0_arm64.whl (178.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

littlefs_python-0.17.1-cp314-cp314-macosx_10_15_x86_64.whl (186.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

littlefs_python-0.17.1-cp313-cp313-win_amd64.whl (154.1 kB view details)

Uploaded CPython 3.13Windows x86-64

littlefs_python-0.17.1-cp313-cp313-win32.whl (129.7 kB view details)

Uploaded CPython 3.13Windows x86

littlefs_python-0.17.1-cp313-cp313-musllinux_1_2_x86_64.whl (977.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

littlefs_python-0.17.1-cp313-cp313-musllinux_1_2_i686.whl (942.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

littlefs_python-0.17.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (996.7 kB view details)

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

littlefs_python-0.17.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (969.1 kB view details)

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

littlefs_python-0.17.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (936.2 kB view details)

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

littlefs_python-0.17.1-cp313-cp313-macosx_11_0_arm64.whl (178.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

littlefs_python-0.17.1-cp313-cp313-macosx_10_13_x86_64.whl (185.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

littlefs_python-0.17.1-cp312-cp312-win_amd64.whl (153.9 kB view details)

Uploaded CPython 3.12Windows x86-64

littlefs_python-0.17.1-cp312-cp312-win32.whl (129.5 kB view details)

Uploaded CPython 3.12Windows x86

littlefs_python-0.17.1-cp312-cp312-musllinux_1_2_x86_64.whl (985.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

littlefs_python-0.17.1-cp312-cp312-musllinux_1_2_i686.whl (947.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

littlefs_python-0.17.1-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.17.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (976.5 kB view details)

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

littlefs_python-0.17.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (942.3 kB view details)

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

littlefs_python-0.17.1-cp312-cp312-macosx_11_0_arm64.whl (176.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

littlefs_python-0.17.1-cp312-cp312-macosx_10_13_x86_64.whl (184.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

littlefs_python-0.17.1-cp311-cp311-win_amd64.whl (153.4 kB view details)

Uploaded CPython 3.11Windows x86-64

littlefs_python-0.17.1-cp311-cp311-win32.whl (128.9 kB view details)

Uploaded CPython 3.11Windows x86

littlefs_python-0.17.1-cp311-cp311-musllinux_1_2_x86_64.whl (990.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

littlefs_python-0.17.1-cp311-cp311-musllinux_1_2_i686.whl (963.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

littlefs_python-0.17.1-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.17.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (985.8 kB view details)

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

littlefs_python-0.17.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (954.5 kB view details)

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

littlefs_python-0.17.1-cp311-cp311-macosx_11_0_arm64.whl (172.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

littlefs_python-0.17.1-cp311-cp311-macosx_10_9_x86_64.whl (179.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

littlefs_python-0.17.1-cp310-cp310-win_amd64.whl (155.9 kB view details)

Uploaded CPython 3.10Windows x86-64

littlefs_python-0.17.1-cp310-cp310-win32.whl (131.4 kB view details)

Uploaded CPython 3.10Windows x86

littlefs_python-0.17.1-cp310-cp310-musllinux_1_2_x86_64.whl (974.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

littlefs_python-0.17.1-cp310-cp310-musllinux_1_2_i686.whl (945.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

littlefs_python-0.17.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (986.9 kB view details)

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

littlefs_python-0.17.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (963.3 kB view details)

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

littlefs_python-0.17.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (937.7 kB view details)

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

littlefs_python-0.17.1-cp310-cp310-macosx_11_0_arm64.whl (173.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

littlefs_python-0.17.1-cp310-cp310-macosx_10_9_x86_64.whl (180.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

littlefs_python-0.17.1-cp39-cp39-win_amd64.whl (156.3 kB view details)

Uploaded CPython 3.9Windows x86-64

littlefs_python-0.17.1-cp39-cp39-win32.whl (131.8 kB view details)

Uploaded CPython 3.9Windows x86

littlefs_python-0.17.1-cp39-cp39-musllinux_1_2_x86_64.whl (970.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

littlefs_python-0.17.1-cp39-cp39-musllinux_1_2_i686.whl (940.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

littlefs_python-0.17.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (983.3 kB view details)

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

littlefs_python-0.17.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (960.1 kB view details)

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

littlefs_python-0.17.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (933.1 kB view details)

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

littlefs_python-0.17.1-cp39-cp39-macosx_11_0_arm64.whl (174.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

littlefs_python-0.17.1-cp39-cp39-macosx_10_9_x86_64.whl (180.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

littlefs_python-0.17.1-cp38-cp38-win_amd64.whl (157.2 kB view details)

Uploaded CPython 3.8Windows x86-64

littlefs_python-0.17.1-cp38-cp38-win32.whl (132.8 kB view details)

Uploaded CPython 3.8Windows x86

littlefs_python-0.17.1-cp38-cp38-musllinux_1_2_x86_64.whl (979.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

littlefs_python-0.17.1-cp38-cp38-musllinux_1_2_i686.whl (952.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

littlefs_python-0.17.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (993.0 kB view details)

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

littlefs_python-0.17.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (978.2 kB view details)

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

littlefs_python-0.17.1-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (948.0 kB view details)

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

littlefs_python-0.17.1-cp38-cp38-macosx_11_0_arm64.whl (175.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

littlefs_python-0.17.1-cp38-cp38-macosx_10_9_x86_64.whl (182.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for littlefs_python-0.17.1.tar.gz
Algorithm Hash digest
SHA256 3bc0fd4e77f94fa6559517517cfaa3dfc74252471ac96e1ae5f590689e04aed0
MD5 10d3f21be2efb19f9762aa65fb3fee37
BLAKE2b-256 7c2564109db180e66d195002a14a013a3c3c0e78f9455cd88c423ab014d2267b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d45598ccd27d2c76aafafb7f59446be0623174ad678a06d62a4ecfc9f8f37521
MD5 28f6ba88bc4963cafed65aad262eef31
BLAKE2b-256 e286ca3e126a102bf1aeec0b70e510247e235f4c06902514c3c785b621cc592c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1ac0c707274cddc107ce367c3a67a7d297a0eae1557e9e35b1a48471de4d3c91
MD5 dfda333b060e0d2eb598597878e99d8d
BLAKE2b-256 32018bb4a3c91492f7ec689a5897ad7ba820c338b54a7d932e2b8f1065a3db21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0312e8b64527fb8d2a95766615f685e980e694798b5b062299062eb096027d02
MD5 5b44ad75920d25faa08bfd713ab9f49c
BLAKE2b-256 6d388cb00488ffcef74871b87b8896fa0c3e9aa7dc6f47ff7b2127ca4272ad03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c56095f2fe65d86a3f1fed68c844b9ea066682fab67219b0b9ef9729669197f
MD5 e44739717e21add10889d5da904bb4a9
BLAKE2b-256 201b520e48bb2cc1978926a65c32031d38feb766696c30ed0da6a8fb3a69c4dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 33325db0af05c171fe77800a3abf78402f846b37f9660df066eb2eb00977bf08
MD5 920720bd25fc1474996c177f217d169f
BLAKE2b-256 f8aad9eb6b63fd76fc662865147be94961891219fed972663fccd4d16795b776

See more details on using hashes here.

File details

Details for the file littlefs_python-0.17.1-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.17.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e6f1bf2e6fc15bb5683c15f912c072c275aeb15ba38ee89774284ccea8a6009b
MD5 ec5f5d829f8f9e41ac9fa7292f93c2eb
BLAKE2b-256 f137d7ae2e1de3e11028193b63803c2649bb2a0694bd6c4c16afa165a025f488

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea89e992a36ffd07d67d81882735f7a0023f229821d7bf97af72115f0f8c56f2
MD5 7e778c107e1b941eac7db1b159ab5f33
BLAKE2b-256 9bc9d30ec139798e81858f87e834b2b3715ee84d4cf57c78e8567661bd3c4df8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9ddff0fc92f8ea09f9e42b149fbc9fc43d0ff1670f56326b9f190961893869f1
MD5 ceb01f81bdc9e24fccfb6b4aeb29b420
BLAKE2b-256 b11913db0f4b3308e4e6d29135fc8fbab72858df1ad1ba36fd4d5b20d6520a85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad82885dfd5fd73ecafbb05c7dd3e1f1e24347863985ddc7dd7c8eb4c3ab4678
MD5 36e7a6c05b75796befa642a5eff8c89f
BLAKE2b-256 971fbad1a43db97f3c970cedb9af8ae44c23ca22d2bbfb8a3a5fdebb576f0391

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ca38bbb2923ed3a1b5a77be25292c15deda8bf8adefe4b1a29c8cb5351fd58a1
MD5 f19ad528018b75ec1a5b4212425d5a30
BLAKE2b-256 e7f6f9a0d1ed181e04316db4898cf1eb37cd7e079703c7582ec3df6e0c3c8d26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 54a8b27b4afa7bd30518f973ff651818e66adba0dfcc79dd6eaaf609e86d0e34
MD5 de482d4339104b14cf543f45adbdbaa5
BLAKE2b-256 ca6407ac85a29a57e7fe982be3795391137d7d47ab2c749d520a87f420e92308

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5997b3e1aa635cb94ba12c08520c66f9491a91c060100a4a8c0980ed38ba9e08
MD5 484a4359ef509ab539f1f5b364230263
BLAKE2b-256 f7d47c9fc0df070261a1d97152c0cf698a2232249ce4909f02b68066f9ee1c22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0925257671de23e6b6e2c56ce7c1e7a941ff30674109d34accd497a33044529
MD5 187b7c16fe11e81c96fbb53d8cfb3c0b
BLAKE2b-256 1d981a7af095f26fe026dc0cbcd0b243eabb28597f4ef9d5de7598a067c33311

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aaa351a26348d2d9b054532632bfb322bd349cff01b2cd3a6ebcf8b2b76ed9b0
MD5 530c90325a5acd43fa58e4c25292e852
BLAKE2b-256 8c4f20768d161928a3d5515130af2126fcc65c634e12e6c0413fcf1cc99fc1da

See more details on using hashes here.

File details

Details for the file littlefs_python-0.17.1-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.17.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5e4f17eef804f90f8def5375d560c44ea73f39904ea0d06e195aadd1078f284d
MD5 9fc9d6ebab36481819d018ed3089f51e
BLAKE2b-256 c8325b6de6c3b2aefa68e4374deeb6a4d570a043e53addaa10a4970da322ee86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f4f0454268b54f55b343d1dc1382998ffde1fc96a83b9659d7afff32684c3b95
MD5 6083ce373aa2fb760d15ab5fac4dfcad
BLAKE2b-256 2de3b689ff442f2233e54e2564a8709bfa558a854beb1fa5325e7194b135e9b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 31658458e0cdb205d2f5dee40b5ed16b8d3e3a78927083ffcd384ae3e33359a6
MD5 9e07c455768f6a842e0bc86656488620
BLAKE2b-256 44c5311d5412a3553394309c841762530a0a437a1140633f2e4de04440be3b52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ddd55196062192e2d05e0657ac0509a45d4bf9db576f216a7525ff05866c686
MD5 5b234f4f34d06e760fe17aa35500015b
BLAKE2b-256 e0ec7607ab31bd5a451e56385770c98c0bf9490c4ccf5b0561bfb7ffdeff81be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6864030362ed38dbc8ed6b16b28f2e374396951668b270bf56c196c25c0e68bd
MD5 6921f81e4787f63e473f0174ebc456ac
BLAKE2b-256 68231607ed979be5da413de48660130476e2a056b0078fda4580023d903c9b31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 19f8c016bf10b8e51404226e6ee2d66396be6b3b17da5cee72aa32bc96d827d9
MD5 08c1b51c56d2d6187cb5a1558022b97c
BLAKE2b-256 8776fd197302d70e84fece6bf791c17e7bcb82651ae26d063959d8173af918e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4c226c7833a0498978169da2942d4f59b6317d91be16f9774c07f2b131a66324
MD5 b804859d6a2123b0d0a68aabef00cfb8
BLAKE2b-256 ae9a424fc4662de94af0fbadf928c3b03feecbb0a956efb99311410a78ed6f6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d14220a480777cb0b00ebbd1ea7fb8e857b0276ae7dbe9bf1425ba0ef67a78b4
MD5 4d05c3515c8bea816743cf01d6d0afa7
BLAKE2b-256 69a4f18fbe5424424e6758900f347b984610c9bfe6f7e03c657431d0e3beffa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5f937a4e6b8df707ff5e062a52ddce5a099e54d16dac719248821cd6592982af
MD5 f625b526ce7f299486140a1af7e35de8
BLAKE2b-256 2613f108b1a0d94cf310d349495942a5f7b1df4c5497b765f99cdd836664d924

See more details on using hashes here.

File details

Details for the file littlefs_python-0.17.1-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.17.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d28fc999b89589dd84c904c3f8976578bad4f396fb4195f65ff2645004316aac
MD5 60cb8724fd6128635ccd11dbea0b4209
BLAKE2b-256 9cad462541cae2e9bb1f6d15f92f693b0b87671a59b0137529325bb3e8b99e10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7a7236ecb0caaeee7cf88f09d4ec5dfb562b444ec08fa06cc60440fdb927c20e
MD5 4d97367d685fab0aa7c0d9defc119d86
BLAKE2b-256 8f2bddc029e1e3066579a05ed6333d7bee95de5c2ab76f43a0ddad31ed43e1c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 98e705cec2b735b99a14be9d944144c6c1feb7d73e790a21a45707ed56b316cf
MD5 f9d85e5deb31c3f77d98654912006f4d
BLAKE2b-256 55e057eba0c4f49296e0d40a7a032ad59c74479ad5572c77d196b8945ef57e45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31a720125cfc75a6176dc379d079e53adaa1bf330998989fb05c80db3bdc8e78
MD5 9842c17b18f446242512212ce525fd2d
BLAKE2b-256 8e9d02d9cdac74c483131a2e84f32acc3988b1ac8f9940dbd980da17362bb201

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4a9dd2e8f8199635708448f15f1d6d8cdc2e7ca77aa90eb76ed8d26cd38f3180
MD5 6d9d6c65f000e8a72c58839c94a2aa0a
BLAKE2b-256 eefb48bbd7517218049f94c0db13c03fcbdab15e625be3de8f65021b9652dcb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 894fe4d164c76fd6846ca919280efff1ed07d2aef940ef695a0c113343c421eb
MD5 95806a689a4902cda848e38d6acb103b
BLAKE2b-256 a907e16b7b962b04e4d8289c649a5e7c2441c644f88d1471e5ef372bfe159634

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b0bdd3983013d37d2afafde88bd843b83b927baa7a352e9df34cb7a0c9376293
MD5 eecc80cbcee59dc78f4356235d9d2852
BLAKE2b-256 d5d3c448e228ea770051796424c09345494276c0c84af4c8dff4cc8b9f1d4ab7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f88fc450aeb08e2b62faa513106e8a130527f0431f93ff464b86e9979e2f14f0
MD5 40ed8a381632a4e4247e8f1b9d9b8ea1
BLAKE2b-256 d53721be885e8c5655eb1071de7482a38bfbdf2dd0b0d4c2b0a2e4ee5b7c37bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7daee7b8b45a33890d2734ac68210d1be2d32a0a56574d0c92cfbf28c40e41b2
MD5 25de6cfd766336906ff0421aed3eea05
BLAKE2b-256 292dff62ad359b6ab708ba6ad3982523ca9bef709f76917ca8f212331d49b149

See more details on using hashes here.

File details

Details for the file littlefs_python-0.17.1-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.17.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5d5ab2652154a9f8910cf8fe512ad74976b8ab63aab4f0c850e42ec66fd1b14d
MD5 b3211a90ab2bcc3a7ba9aa2de136472f
BLAKE2b-256 576c0ac0aea69d73fcac20b04064b5ff8dc320b060631427f48420a6766c502e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba2b858a5a7861e59347db1572d2e4a44eb69c622a123d39bb0b1da6a0a71804
MD5 6529f5af4a038841ea362189b6e97957
BLAKE2b-256 fd13246b5d3f1191f319648564e4bee297e3165364e2dc577c22fd73e1f2e211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9e17aefc4684767c5fbc6526ff3e7c3ce3ae76c22226112eea8e87bdd04e1d56
MD5 a84c0ec34526178e1f2489a1fee957ad
BLAKE2b-256 f318aad0b23117ae4d59bf328e583888462d9ee722a37168a029f50c39e7c461

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 831e9e9d37c9a8c1f19dadcbb33fa7f6bda53521212e3bd94461c65b50c8df35
MD5 a4b72b859efe547387ff57e90443035e
BLAKE2b-256 563851468add81f807459b8c5dcb005a479966e36c94e831f2bada9e5eb48ded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 14ef1f9912b50cb307c45c23bc56ebca94754984be35d06c7d8023ca9a2e8332
MD5 7cb544314b844b3b408b81fec918da1e
BLAKE2b-256 ef67617ac23e48385dee1ce067ab74bce177b875060b42eb8d13eadab96fa9aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bb4c39a881750f82b1cdd18b86d3db074d664fdca5f86882e3dfa8c70243e09d
MD5 ff061e75ff91f20e1493e34b39daf028
BLAKE2b-256 804e858366277a146281e1863d70cc2cfaa94b8d0bd0bb054bd71a37eb53d42f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 37b6e0b773dc9f6ab836c2be5a0efb3f2570246211624443fd36552674c1ab4f
MD5 041a0bf6486865b20fe59ff88d17e0f6
BLAKE2b-256 b54a7a208cd84e9988145f55669da187e865e088d6c5b7dd7e41fa3c90350520

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9863652205709ab610f50b2c0b5ac726d386e636a5d8142e80be1c8edc4d2a9a
MD5 05287924a8c0cc43dfbdd3dfbeaad9d4
BLAKE2b-256 8d239e12a6879238aecffdb28921428876e989f7be40dd3253ce7dd13eed1eaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 607650caf463318655edb046b9d73ad1f3678fb8f9802d49ab0324798e413d81
MD5 08ede1dae8bbac24961a940f08373d08
BLAKE2b-256 7b8f2a5049cbada329c263b1cb98098d68407ad0458cc25a8077a8fa804ba2b9

See more details on using hashes here.

File details

Details for the file littlefs_python-0.17.1-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.17.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 092ebd3bf4d6b1933a308cd1495418a62639f173e0a761fefd9e20c897ba6f27
MD5 f8d98d0c4a631c6844416865a7bee4ae
BLAKE2b-256 73b721d18ee9db5fab521ad3c4b5969bf759f381a7f21d575347c71cd7a0a5be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8b10c8d1266120bb539ec3aab5d82d80414d32f3676b753be2040333f61f25c
MD5 bc08541bf929a7bac80b24a55b646b12
BLAKE2b-256 bff5905fb230e07d8d094b6d63e7a7aa093c09fa77302ad0b19d9e6e51889d17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 35e16fce006abfdebc4f73c8cb35a992c2251406b6949d7debdbabf2458793f0
MD5 68cb22e0c3fd838a5e52601fcfc1ad5b
BLAKE2b-256 87eaaeb251eb7b750c8633a184e16b84c39571cb59626fd126ea4ddfca6e49d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23951c6d8b419cc1b847e3f67002f905f25bb08ddfda1417bf9b23e10f938ef2
MD5 7a9997c3728366eeddaca8a52d023a4c
BLAKE2b-256 04827ed98dfea57248ce86323910fb44a2c974b96b2cd3fd43df14b9212332c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 543e579e77fce3e538c3f64a19a6161ea41bd8c7a932b7e19714afb2e3a66551
MD5 3e5d2344b5fc402395c1403391b99dbf
BLAKE2b-256 646629d05acaa62d4bbf7a3753956c56b87d06709dceae9cd2fcad8fc5592e20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fb86c34db906c6cd4bd7f20ab70e7ede53163c826c630c6fc91a559a2190cea4
MD5 cd303f451927b27a4627c8bd55010fad
BLAKE2b-256 844a8fef651f5e8ef669242aad5c9572e1f1543231813d78f12ff18e8bf155bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0ab5be461f8bf26170f22b69fafdf991afb47033b05b6d2b3678728d4a7f83b6
MD5 b8d7094caa2c169fc76d1514c00179d8
BLAKE2b-256 1784a470aa1575aafbecbbce9e1494a2b5542843cfa8fdaff0170d534e4eba8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9786d7bce139dc0cd4f95cd1573b8a4cb80909afa2312384e50cd07ec09abc7e
MD5 69a26bcab577cb80457264aedafb606a
BLAKE2b-256 3354c6c19c907d2620cfd1afeb37eab33e46215396d8bbc18693397e1d3f5350

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 99b87cfd567c2f2b76d40ffc8c0f3a6f4a47d9342e21309a83171f2092f0bf0d
MD5 6543d7616183a89f5c8ac1ea2aa198dc
BLAKE2b-256 3780b381f0aef1307dc9943394300b5f14204c2b4d497bc804d17398652dfe40

See more details on using hashes here.

File details

Details for the file littlefs_python-0.17.1-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.17.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a7acfaa349f60196c7ea618306a569fb408953a885a5f1f0d6522b360c905882
MD5 bf858f086974432df4306088682ef0eb
BLAKE2b-256 e8fc57c3157380c1587e55e150832f614d265404e752771ebcf8ae0040c36da0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 78a406d44cf329b33990afdb19477073156b0ddd7efcf471ee2bd3c79ae5c0ed
MD5 325560c573f7217ad04384d35cddae73
BLAKE2b-256 95ebd40c124c26c0fed2a6e10c76b5dad034fdafaa3929993a965442d123d26a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 16d72f6fc8af70579d89400f8edca693db7a81c7f57453750a3a28e735ad308b
MD5 1e6883c8db0439e21ecd90a753eeb1af
BLAKE2b-256 9c30a52b3bcf61f994858489242c9c8a9f0d0421b2db96222474a2dfe244ea95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d53402f885daf6648b2b77df0f064774bbf323825ae012dc7395665508b35677
MD5 6e9271e05511a6532bb7cf5af9a23e2f
BLAKE2b-256 1ece7738f82c876ca043405fec74ee608a75feebad3267b9be522d1599d648f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 77712c8a6bb77f93356477c8b1bc8b090c3fcb5d8793a08d3a724b3d72a7afef
MD5 a05d70d5b4a7abe3725a535cdffe121c
BLAKE2b-256 c18c11554eb1f1886859d84236a005559ff9ff6460afb025efeb5a559d0bc80d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c27e897752b74cd0013aed52a0dc4a53a25c798a0470d0e127503e4ceb3affcf
MD5 d6e8757e2cd448cf093cbbab42d18a0e
BLAKE2b-256 f91388baa54398bcbb12dfbd4d5aca0c359a543c40d04c06a3538691ba1db663

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 794b75266271a8da0927ce9ef8a80bdbb7b653674bd4a1316638b479d7e155ed
MD5 ea9687ad107a6a6c9b950ba8b7ff13e9
BLAKE2b-256 0031d3f78265d8ddf1d364cb1070c6d5b66dca2faa858c4ee14204dc4afa390a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae701b5de8dd637a017839a8b78e6969486b962415cf517228c9104b6d2c8bbf
MD5 46e3ddf27fc247af7be7f43700c0e7aa
BLAKE2b-256 20f9f51a263e23c20f008676cc447d1f81421491aa7d8e2b99be548ba14856e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d6cbbb11b0929b132aab2e66e8c844ef3287e32f6ff4171b36f5dad9c30a51a3
MD5 4995f7934d292f9af5d087c477a11c82
BLAKE2b-256 2ff46807ac2218617462f6f2a788b8f6fee914daf2fe987d8bb05ef36d446d4e

See more details on using hashes here.

File details

Details for the file littlefs_python-0.17.1-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.17.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 23143dddbe98001dffc302478a5e367537dd91d67a42bd04d483b755129744b7
MD5 ca6d7502236143005964b590e001c9c8
BLAKE2b-256 9a5de132a2f20f5d8cae5f3a30241de10e3b04723fd2f5161757ed7b8fc58fdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 989f09b99772c882731ae7a260cdd0cd2a518a8530ae649aef42dd2268ae0a9c
MD5 89978815e2012db5054095b299844642
BLAKE2b-256 6a38a141bbde52dc52d58523ecc3696bbe998eddf4b68cb1ab97891a565a1113

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5b743a3aac03b8576a9c58e2dc39bcb95f07f65b4a996eddccd7458d2beb8b83
MD5 594d2c23c2c79557ea493cfff237d5b1
BLAKE2b-256 a6f1a20155292ed3d8b4d7fe5732b9e6f640ada03b77324e069ffe6b7689e914

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6dfe055084a4dfee40ea4df3f521ec4141455c77f1028986b89cc612db14bca
MD5 c5e10cf617d97aa80729ef4cd9058682
BLAKE2b-256 4109ffd6a6efb5d8da121ba556298da2d6a23742b7083f9980cdcd8ac132a85b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.17.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fb13392ee8c94f492d6c4df4fed300518c0ea77accc1cac2188df3346ebe08ed
MD5 ba309d52fe68869ace66fad5b054a063
BLAKE2b-256 0b504456da00d000f3bdf7eff5fe7410c740c67366c7aea426dc4267210dccce

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