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.18.0.tar.gz (526.2 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.18.0-cp314-cp314t-macosx_11_0_arm64.whl (195.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

littlefs_python-0.18.0-cp314-cp314-win_amd64.whl (160.8 kB view details)

Uploaded CPython 3.14Windows x86-64

littlefs_python-0.18.0-cp314-cp314-win32.whl (135.6 kB view details)

Uploaded CPython 3.14Windows x86

littlefs_python-0.18.0-cp314-cp314-musllinux_1_2_x86_64.whl (974.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

littlefs_python-0.18.0-cp314-cp314-musllinux_1_2_i686.whl (941.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

littlefs_python-0.18.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (995.0 kB view details)

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

littlefs_python-0.18.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (981.6 kB view details)

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

littlefs_python-0.18.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (939.5 kB view details)

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

littlefs_python-0.18.0-cp314-cp314-macosx_11_0_arm64.whl (182.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

littlefs_python-0.18.0-cp314-cp314-macosx_10_15_x86_64.whl (189.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

littlefs_python-0.18.0-cp313-cp313-win_amd64.whl (157.2 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

littlefs_python-0.18.0-cp313-cp313-musllinux_1_2_x86_64.whl (981.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

littlefs_python-0.18.0-cp313-cp313-musllinux_1_2_i686.whl (941.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

littlefs_python-0.18.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.18.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (981.6 kB view details)

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

littlefs_python-0.18.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (938.0 kB view details)

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

littlefs_python-0.18.0-cp313-cp313-macosx_11_0_arm64.whl (181.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

littlefs_python-0.18.0-cp313-cp313-macosx_10_13_x86_64.whl (188.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

littlefs_python-0.18.0-cp312-cp312-win_amd64.whl (156.8 kB view details)

Uploaded CPython 3.12Windows x86-64

littlefs_python-0.18.0-cp312-cp312-win32.whl (132.0 kB view details)

Uploaded CPython 3.12Windows x86

littlefs_python-0.18.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.18.0-cp312-cp312-musllinux_1_2_i686.whl (965.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

littlefs_python-0.18.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.18.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (990.3 kB view details)

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

littlefs_python-0.18.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (961.7 kB view details)

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

littlefs_python-0.18.0-cp312-cp312-macosx_11_0_arm64.whl (180.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

littlefs_python-0.18.0-cp312-cp312-macosx_10_13_x86_64.whl (187.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

littlefs_python-0.18.0-cp311-cp311-win_amd64.whl (156.3 kB view details)

Uploaded CPython 3.11Windows x86-64

littlefs_python-0.18.0-cp311-cp311-win32.whl (130.9 kB view details)

Uploaded CPython 3.11Windows x86

littlefs_python-0.18.0-cp311-cp311-musllinux_1_2_x86_64.whl (999.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

littlefs_python-0.18.0-cp311-cp311-musllinux_1_2_i686.whl (970.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

littlefs_python-0.18.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.18.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.18.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (962.1 kB view details)

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

littlefs_python-0.18.0-cp311-cp311-macosx_11_0_arm64.whl (176.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

littlefs_python-0.18.0-cp311-cp311-macosx_10_9_x86_64.whl (182.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

littlefs_python-0.18.0-cp310-cp310-win_amd64.whl (158.8 kB view details)

Uploaded CPython 3.10Windows x86-64

littlefs_python-0.18.0-cp310-cp310-win32.whl (133.4 kB view details)

Uploaded CPython 3.10Windows x86

littlefs_python-0.18.0-cp310-cp310-musllinux_1_2_x86_64.whl (982.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

littlefs_python-0.18.0-cp310-cp310-musllinux_1_2_i686.whl (953.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

littlefs_python-0.18.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (997.2 kB view details)

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

littlefs_python-0.18.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (981.7 kB view details)

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

littlefs_python-0.18.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (946.9 kB view details)

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

littlefs_python-0.18.0-cp310-cp310-macosx_11_0_arm64.whl (177.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

littlefs_python-0.18.0-cp310-cp310-macosx_10_9_x86_64.whl (183.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

littlefs_python-0.18.0-cp39-cp39-win_amd64.whl (159.2 kB view details)

Uploaded CPython 3.9Windows x86-64

littlefs_python-0.18.0-cp39-cp39-win32.whl (133.8 kB view details)

Uploaded CPython 3.9Windows x86

littlefs_python-0.18.0-cp39-cp39-musllinux_1_2_x86_64.whl (977.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

littlefs_python-0.18.0-cp39-cp39-musllinux_1_2_i686.whl (948.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

littlefs_python-0.18.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (991.8 kB view details)

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

littlefs_python-0.18.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (975.4 kB view details)

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

littlefs_python-0.18.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (942.3 kB view details)

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

littlefs_python-0.18.0-cp39-cp39-macosx_11_0_arm64.whl (178.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

littlefs_python-0.18.0-cp39-cp39-macosx_10_9_x86_64.whl (184.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

littlefs_python-0.18.0-cp38-cp38-win_amd64.whl (160.0 kB view details)

Uploaded CPython 3.8Windows x86-64

littlefs_python-0.18.0-cp38-cp38-win32.whl (134.8 kB view details)

Uploaded CPython 3.8Windows x86

littlefs_python-0.18.0-cp38-cp38-musllinux_1_2_x86_64.whl (988.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

littlefs_python-0.18.0-cp38-cp38-musllinux_1_2_i686.whl (962.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

littlefs_python-0.18.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.18.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (995.2 kB view details)

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

littlefs_python-0.18.0-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (956.4 kB view details)

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

littlefs_python-0.18.0-cp38-cp38-macosx_11_0_arm64.whl (179.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

littlefs_python-0.18.0-cp38-cp38-macosx_10_9_x86_64.whl (185.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: littlefs_python-0.18.0.tar.gz
  • Upload date:
  • Size: 526.2 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.18.0.tar.gz
Algorithm Hash digest
SHA256 a867affd05b381b315db827b10851f8e64db94cb30eec4083f4b442aceb20ff8
MD5 c89cb8531542fabf578f050bcf41a52e
BLAKE2b-256 bcce18c356eb3fa1881206d306b05ef0368baabf5095d99c8f7c1fa239de2949

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfbe06f1b5304a0fc9936aa12d137723537f5be2c3a8ae218a2616b4a7505f7e
MD5 81936a6eacc3619ad511ef1eb8232e40
BLAKE2b-256 489fd5369bc9137a8eb83c425ad19d766bb5cdfd0bf79c8d9aed4773aa9ad984

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 06bbf7fb22f36397adef373a96014fae6d1b0d341d6fbb7a798fbf6aabc4d3eb
MD5 fe4d5d41738391a7077b950e20952926
BLAKE2b-256 77a2355f0d3fcf633e7f53a29aafc5bb5cfb110377daf9db2e42dbd05b5df519

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 837bb6b223c2fe6e2f37abfaa142b904c3121f223d1a4cdbe716c6b44768cb5c
MD5 61f9999c799c17f1809e9928be688a52
BLAKE2b-256 9ae7aa92927b8c65ca48f64e9a5383b1005bf2d777d4fc42e7fb4a7f157e9b78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 741968bc501587534ea992e33cc68690a47d03f34cfb9b18cf2fe5b955d31257
MD5 8146397d2ea2a0ee40ecff6c21243f30
BLAKE2b-256 cfbfa4515732c1555c0ec89d112b0a9d8d50789860a481331818aed4dbcc0bcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5e8ef9aee9ed7fd60525761084f09875a7c6b08d62fb62b8a55a8bc3aeda313
MD5 c9b618254bfba38dd897ec7ea15890f3
BLAKE2b-256 10a8a7eb4077253cad5eea47266f050c2e6c3c4aba04640c625ad97a2029a3d3

See more details on using hashes here.

File details

Details for the file littlefs_python-0.18.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.18.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a52ac740ca4f51b0f117a747d30f394e8d347d2e1a969d6d7a3c1ec33f138228
MD5 dd751bd362ea7e9c8ab318c9212c92b5
BLAKE2b-256 d34fc3aeb89ee5d79347550f0c9699ff04eacc9a376dd0245992a1501ac73e9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e7fe3852fd702312bacbda6118d3048a8c64e4666021f1929bad9224d71b38a3
MD5 4c745a2152a04c350a785a31851e506f
BLAKE2b-256 1c2cad9e53d2fd4f218a3d90dc4baf2762adb1f4370f1b6cdf12de90468d879d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2d9f67843c15578a1d8942d4dfefff203d7edf80ccebbac42880cc0083954e19
MD5 f5b169d92391475fe855a59992bdd4ad
BLAKE2b-256 094146e90eb17d2274b2f6148b4e06d78934350595817464c5698ca41256266e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9f9692d14b2012589a0168db309dd22b362acb92537619218c08050bf9e6f36
MD5 1a2c5a2715477e036174fc1a99d0d561
BLAKE2b-256 79dff56015d34115583d877056228ed198328dbeabbf8de4591bf4af97d2446d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9c0798eef7a6d29da7993982d2f3c99365b899acff97fd439650ee4929106720
MD5 16b54520af2bd0fb7e57d801644a30aa
BLAKE2b-256 e254708a7e9a2d7ce8e7be36f77596fab42254e7b6bab49d481cc7df3f46206d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1b350fbf6c8b0cc32cb97ca629d8ee0ce3ae901c5f3b322c080c8a98a0dbbda1
MD5 762514e0c3437d52eb3c41112c10c0b4
BLAKE2b-256 bd58763c87c24fcae0a6f722f6b7a9b6d109e110ff800470af939a393f55897c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 764f44fdff21d11d933efe4f8ec081f814e34e9bd74ada4f7ec08ed6baf043d5
MD5 4893e84e443a86610c0db2f80f70b379
BLAKE2b-256 0cea3cb64b0da4ad33bbb39b979b0b16a6ebcefe67b993f11054cd76df406eb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f050788281ad853742ced60027564eea37abc3cd4c5fbc2fa25801bb559cf59
MD5 5102cf68f58e326826186a5a0ec6eff7
BLAKE2b-256 77942224af875583397d7bc4b758a02ada4e68f05362d75a9882775349f784a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b3aec460d3f4997bd6df2bb9d218f88dcb5cee50b8b32c737b39cec361912c79
MD5 0d88eb8714606645237246b15837c304
BLAKE2b-256 043267d905bd6695f89a6c2a997b59aa7a92fb3ae6ac67d4ed64af5dfa9b808a

See more details on using hashes here.

File details

Details for the file littlefs_python-0.18.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.18.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a392a35beaf340f000b6618e1a1fdaa8a85faf772ccb9f99a6b48590c7182109
MD5 229ae41688a0cebdcaea2789d7e2cd71
BLAKE2b-256 1e29b2951b28263191a60802bd692ac7562d8447dd6ca4cf914ed4bcd5af5fa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 414929b9bcc2b467ab20f75d1c9de53cba1e71b4798704730be767aaec2141e5
MD5 d8393fd8061f3ddd14d01b37623d3e1e
BLAKE2b-256 50b55dc9079fe0585cd0228009b565dd18f7e743df8ff25ca99d25ca54c9f8ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e2a43f82261beece94adb50e9746152cc1e522ccdb8843e8c51bd63115bc3344
MD5 bb236bb699bbebd8dbcfb2a915247eed
BLAKE2b-256 006bc1829dbe18f8f2bba17b78f8c9f4542e6193bc0cb48b3954a26352cb5ba8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f98afc5541fa5c73140f03a907e9d18c1609f99fd9ca3db16b76c236e2f0ab20
MD5 a7b8c4fe2e6bcc976a0fbfb4242c93e6
BLAKE2b-256 85314e864fc6f956434d68bb3c84de896060c3f91de7cb7891b349656130714f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 05bdfe491d57a1cb8decdb529379a414d96d1eb92710cd30658b3fbca41d38c5
MD5 e62c0d4c5608152287a3b959a9783a36
BLAKE2b-256 1620dc4908efaca07fea1b80978f287e15f5dde75ecadc1c3cec9e8e410a0ca9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8f5d9086dea99e59fcd9b49990295ecff71af22f7853f5fb6acf1cb19901458a
MD5 f7f8bf10dcedfdd5f5e90869800779be
BLAKE2b-256 f31c26f9f81e3b41bf1d11f1c2a058566afd6b1a958a02fb1be71d69b93e4c4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 06deb06d74db33a615f5ddcb29490496e2c24cdaf7988b04a4d759cef207a041
MD5 a4c2ef5dcbeaeb177d0271156b98bbe7
BLAKE2b-256 33adea6ace39ae06c2d4987af495de2cd7070a39db1f5778c5692c2f3837002b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 347ed0aa58c1849ebc5f0dbc1fbd7f51b79214f4b6ac04d8d3650d33e6da7bfe
MD5 a6d2696a0dd58386d236f0efa52992b0
BLAKE2b-256 576b825bd4802dd35efe0aa81ad50e3cf8cc610864da5bd814bf2cdb0fe63b39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f060b3343355a241a598a4252b18efab34956fb23e937261cdfec333c072d835
MD5 0a2c0a15d504634f008c9e4f13852cc4
BLAKE2b-256 e64e3f7ec339a351083a610f2e1b9e8947b03a56a4d68038903c0343075a5cd7

See more details on using hashes here.

File details

Details for the file littlefs_python-0.18.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.18.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bec66b3fd04b46c4a3462ffe1470d3887e6053b75e5c78093dac0ad19b926a25
MD5 0e53fc435b65eafac55fc64d62c1d482
BLAKE2b-256 efc0c455991879ff438c783a4d398ca1e4b10cf807d3d60654b79582297f7c2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d5dccde1e516d79299dfb8f4b86a95519a405569f45e8e8ca8066304c0ca703e
MD5 be05269b3dbdf4b4e36735accfa53340
BLAKE2b-256 7c3ba9a1f03875095872bd4b4addd73c2a560843cabc719f63e4086b909ae307

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 821a6eec75e5d6cbc0fb504ca55f84e100ed426ff58102cfa7c27e139db80196
MD5 deb8240fbbabc85f193bfe6554a00edb
BLAKE2b-256 40c86499f0225781458d168d31fa4906930d8ddc8d26c8187638bd8179946608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9375322fa8a70bf0de21176f5f1c59cadfa822692c05a164114236123affb6f1
MD5 d50619999d7dc40f7c7ca300543302f1
BLAKE2b-256 e94a1202d497acc1ab66b26f81c4617d285b4e30519cc72b700ca88221b09e12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ab4d5d736af73b5e4fc79a98646f3c6071416e34de2b78d356002df9b7a6e0df
MD5 592a615ef1b22d90ac2d8abe8fd81b25
BLAKE2b-256 326638265979c877fe63c172cbf6aaceb3ff462ae348486716cf91a6d5436659

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1898a5f3de7372f375c495eb442822a3a6ae915c46d0cfc02297c659e5dfdb3b
MD5 65cac29bbec26f97685a36cfff252d93
BLAKE2b-256 5bbbbe9da88e83b3c94866262ab605b8e3540dc236abf23199974ee6d5c0796f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3617c87b8297c42439ed9ff936984fbfefa5a0edc1c9e5a01b43f8fee23ec4d9
MD5 e450d403814853013bd93231b0b6008a
BLAKE2b-256 2b5e22077cb89ae1b05568313520e90b97f8d9a8fb5ae16230d25138a519d160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15ce5234f7106baab6b12421fdd10334ebddb88449e356b9bf33eeb2acce97ca
MD5 1c832aec220cd30723c0d9a80edaa52f
BLAKE2b-256 e5c742270187ba3053b19d9263da7cb091bd577f9c943886df8ab286af62ac58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 793f566a67d82beaff36bf92c4deb5c0bf8b518d7f5852f1bcff8a4df63b9811
MD5 25b5626060badffe85e3bcd7e1d39cd9
BLAKE2b-256 7f92ebfce60c234bbe08721e91371da544af337afa48c573615276326f21446f

See more details on using hashes here.

File details

Details for the file littlefs_python-0.18.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.18.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 80d1eeaaf60ca37eb13430568963e72672b8e43dbe2b3348491521636276d8c2
MD5 b14c0bd78a4a1cf9ba639909fe00784b
BLAKE2b-256 93d5842af11716e1c94d9d0d8861a28a043e640cc754a75617ef4a25200df386

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f17f42088ef965255427cd5a703211ed3a09ac777a4fd0aa817bda097032a0c6
MD5 265c43abea42c9c0a2b05b718e21772c
BLAKE2b-256 d6814af3edfc6c02d836f464f86fe17379e4a447d27299b89a522837278831cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 65cf494f75039fe9bdabc54e63d0766e9b837c9447889a3ca2930f4050f75245
MD5 664c52e10ad2feaa4722fbeb90005fe0
BLAKE2b-256 4efc9f4a25b6c709a3b082d2ba706f140c7914136c4c7803a86ff43901a8182a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 35837b3f1a24d81557e5c96203dd0d103401d2a1470787d70110c07679aff9b1
MD5 6bc2be94eb858e57c9bbb66a5513129a
BLAKE2b-256 3d3ab19c53e7f451b6c4426ddf227fbd3378babbab16aa42d8cbd981b47f427d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fb9ed46073efc0f6f0579bdabaaa46de4bd47e3c72355f2ad75ab1e81bfda2bb
MD5 e30dbab2b55c6bbaedd48aeb52d28249
BLAKE2b-256 7c0db6f5ebd7371d4176d91165e18e144621ba2ff00a2b0f954263fe41065ca1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 86e8ed3b26012976dae4969453f9e49e25cf355483c1d3920f05380d84e40050
MD5 d2b938e34741d97456b95b45c55f745e
BLAKE2b-256 a8c9fb554c4a905061d577513ef288b7be50ee1b541255a5a94d17bf0cbe9ead

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a679e274ec3f0b63a6aaec7dbd236ea80f21a78cf885b9b200a6403ce7e4cc5a
MD5 fb1ff524e8d313b9b3498459ae58a4d6
BLAKE2b-256 69811e7cb690b3a8f596226e25fae022cbae74eddb3ddc4b97fac5ada0cd14a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 589a90438b4948e72a236f2d386587eeaf9c66cb7d84c2b8fe8f1c46f79ee423
MD5 f130648a33a3d4408355b8b503f8ca9d
BLAKE2b-256 61fa99394d971448a07c94f72efaf2399238821800d2190c50e90881971b4f49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b26e59d5ae7dc23b6eaec8e58a39c7f3205eb1f823f95d28f7ae477de2d8127d
MD5 18d37f6b4b4ac9fa10bd601bdf45e23c
BLAKE2b-256 fd5008a77740a61063450d792e4f6dc5fb8e0b9d09c11e7fd527b8f319aed3d7

See more details on using hashes here.

File details

Details for the file littlefs_python-0.18.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.18.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 71ef40eb91aeaad7dea2ad91cade2aef33478763f0898b45a22b9176a4e5a897
MD5 e9b37447223a787349b18c695cb4dbf5
BLAKE2b-256 6e01144ae2741714f24f29589414bb18751a2727382b3d7ef8c8a4f98f8177b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ad07a18b9e20b1924d889efe341071ea61c72ffda5c424d5a0670f16666a6fa3
MD5 d413b937ca94acc8ff9e52ac5c9f6ca4
BLAKE2b-256 984fa9de754c58f735fea863515aff710c68f8adcfebc724827acb813d6c84d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d0eda6872d2f9ff68b8859a4878f7ae532bb0b6d7d6208322cd3c3304957d959
MD5 12d9f47409206649ac6ec0178354c51f
BLAKE2b-256 dc3733399b7ca23b295a587b53df43506fc98d2938c323417ca746c9c7058f43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10ea65df5641c6bbf4debdf8a38e03358967b0d9f49123015cbc575cb39515ff
MD5 9f2d36d3ee560753df322fd437602a5b
BLAKE2b-256 a25ab4852c49a069e21018959585e2af2357db6dc01b75a4b22c05f4f914ad93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a5152a121fc71227dd31105da8c16208d6beed92f3bd87fede886fc01d95ad8a
MD5 9be58d1af73f297b1f221398112c65c1
BLAKE2b-256 bf829e21facb58797439fac1246341bbb9db474dcacf73820e4e6b4dc690a593

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5ff20a28847e9fefff2ee12e37b1d6d9071ae1b90c5de77ce293c61780d2ddf2
MD5 37c98c96fe976cf11d5a9d77d553a38a
BLAKE2b-256 4a55abfc6ed0069db96b3e23cad62968b451625614e63812f30dbbe28dca7dce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c34b7fcd4d5102caffeba951acf1d44200fc6c9c57db7a9f4fe0299c16786351
MD5 600da8961f999f772765106c4e151e51
BLAKE2b-256 50e9a2eed98f02eaefff27236f566068d2dfaf11c92241702231ddcda042471c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e4f7308cf0c39c17fdecd9df27d6a979e6dbc8825e90f9a48f60ff926b73746
MD5 dedf0257a4e2b2a4894383385ed6098a
BLAKE2b-256 1ffc4dad1620f1e55b0c98a0075739a2c8e57f314883dda2f3471013c9ecbcd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c57946634eb56dba5a63acbcf28e9a8eb56f92a457ed0906849a935a74d8160b
MD5 8f8dbb26da4f74975c5671ebba4acab5
BLAKE2b-256 9c2a4dc911ff7db59bf58917c0bde82bb0d6e8cdc49fcadf132b4941636b1e2e

See more details on using hashes here.

File details

Details for the file littlefs_python-0.18.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.18.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8115385ff73b92cc6dfc61a19a2ca7c6483d02be0556442ebd2b7d1bd9f430a8
MD5 77cce94cc1bf115f35a85ccc7371680f
BLAKE2b-256 910cda59d2c7d3329472cc4b9f2f6252d2c7349663878874bae6de103824e2cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e3239afcff31f61a9a06d1a6257a1f090feef9873492214d3d98094c01dcb1c
MD5 fc133fa8fb0c33e2dc902aca9481145c
BLAKE2b-256 08026255edadb2e62fa1bf2c592787c1da811b06111c502421b8fa14be733071

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 61d9749d9ad159fedd9dc3cf2719746402ea741928e3246dab932a084a46dedd
MD5 d40ae68aca8831f96b37e53e93099f0e
BLAKE2b-256 ab113686767018cdb3c60b5d0aae8bff729a1d187b58aac0a98252bea4d74ca0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a19d3c0acb3a30d6e4f49e535bcf060ca8fe12871eb85ae10fe60ded9ac46ff7
MD5 6f4ae762ca474b05b761bb9f1d15af9e
BLAKE2b-256 544da083b404a17d873700d92dbed353d4c89a5e92dfa425408a1cc1b3d60fa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b1cffb7f48f87214858eec5d5297a4bc96af0de5ced221247f22004c58c1c5a0
MD5 e4815c8b3b1827ec9ef4ded72bf840b5
BLAKE2b-256 47c04bc8c916733995fa29e71af0f7a6ac7c3cbe57c63ee03fe0dc9aeee318e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b23721a2275f343d289aefd16687249cf1444d584ff1235a2fbf69db1a32d58e
MD5 07fe5360a51c2721fb871803ad374fec
BLAKE2b-256 29c80d73d4ca1fdb098a3bfbd0de7689fe54f9a915962143e3023e803ae8ea69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 de8e018b49b422522641b0bc976669356d1a6cd45e47dc17e0f790edbd68c581
MD5 a614722882ab46384fc18612e6a857b1
BLAKE2b-256 6c99387b5a25107d76eca27fe2274afedd58715af80def20a1e7ee11a3f1344e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc954470a0f33f3a295b6f78670686f2056ea0cf2a1e44647352cd5f31b32d2f
MD5 9c945ab3850833ce8096bd2842b11e87
BLAKE2b-256 481ff1bb3341f7e2a20edc57d41eba274a21b3cf8a2707f03caf66d83a9d20fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2c729bebbbe6eba1979495695b5186f9086edab957f8702058b9acedbb8c3f11
MD5 f15e5d237b7f9520207195bd4cab6f60
BLAKE2b-256 a51588fe191477d0429caad59e6f6c173f41c03febb9e164cbaad5f20af0597d

See more details on using hashes here.

File details

Details for the file littlefs_python-0.18.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.18.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a60b263ca150862c9161f8d6034ed9bae702c3eda87607fecdf6e7ab366ee503
MD5 52ba9faa620fc8fd28a4e12eec0ab987
BLAKE2b-256 8cc4ad9661ddf9e4e70ed43f1431d1bd72fa1998432018905643b8fef5e40526

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc7f2779395cec9b7fc2b825ce1093704ebfba9f640eb579ee355826be86f31f
MD5 8e12b87a301c5b13e26ed630550bba1a
BLAKE2b-256 dffc3b995090b028ab59486c09ecfabd8cb432be1dfec1d926f41e30153509df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9497579bf3c72bbcaffe8bee6cd867a8c7f0753c5392f0f9a6bb6da6256da6f7
MD5 1488d7af86d8df03a30d0623836a2486
BLAKE2b-256 f418c8010fdca4a7e8d1597844d76bcf67046c485f001a7061474673d7792e51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3460021fde96ec5597e674b6109cf50c45c77471366dba0d5c833deb49ce8ac
MD5 8ac5114517935a37b6d844cbed2789e5
BLAKE2b-256 83e95297995c0a8c70c0dde6cda7f2df275e8b00ed4fde871758a6e4cf43a592

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.18.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 041e79f1b48b40479c67a7096f556fcaa53d125ef518190062b9c3177d5ca9b0
MD5 f9508117e17618dbab222f9c1a1b5ccc
BLAKE2b-256 2f4be273cc62017dde63876e5b069c1209ee8a418fc8c7b3f6e2d61ae611b4b9

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