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

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}
    create              Create LittleFS image from file/directory contents.
    extract             Extract LittleFS image contents to a directory.
    list                List LittleFS image contents.

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

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

Uploaded Source

Built Distributions

littlefs_python-0.14.0-cp313-cp313-win_amd64.whl (152.8 kB view details)

Uploaded CPython 3.13Windows x86-64

littlefs_python-0.14.0-cp313-cp313-win32.whl (126.4 kB view details)

Uploaded CPython 3.13Windows x86

littlefs_python-0.14.0-cp313-cp313-musllinux_1_2_x86_64.whl (978.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

littlefs_python-0.14.0-cp313-cp313-musllinux_1_2_i686.whl (941.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

littlefs_python-0.14.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (949.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

littlefs_python-0.14.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (936.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

littlefs_python-0.14.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (887.9 kB view details)

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

littlefs_python-0.14.0-cp313-cp313-macosx_11_0_arm64.whl (166.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

littlefs_python-0.14.0-cp313-cp313-macosx_10_13_x86_64.whl (182.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

littlefs_python-0.14.0-cp312-cp312-win_amd64.whl (152.6 kB view details)

Uploaded CPython 3.12Windows x86-64

littlefs_python-0.14.0-cp312-cp312-win32.whl (126.5 kB view details)

Uploaded CPython 3.12Windows x86

littlefs_python-0.14.0-cp312-cp312-musllinux_1_2_x86_64.whl (987.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

littlefs_python-0.14.0-cp312-cp312-musllinux_1_2_i686.whl (950.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

littlefs_python-0.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (965.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

littlefs_python-0.14.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (949.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

littlefs_python-0.14.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (905.0 kB view details)

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

littlefs_python-0.14.0-cp312-cp312-macosx_11_0_arm64.whl (164.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

littlefs_python-0.14.0-cp312-cp312-macosx_10_13_x86_64.whl (179.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

littlefs_python-0.14.0-cp311-cp311-win_amd64.whl (151.0 kB view details)

Uploaded CPython 3.11Windows x86-64

littlefs_python-0.14.0-cp311-cp311-win32.whl (126.4 kB view details)

Uploaded CPython 3.11Windows x86

littlefs_python-0.14.0-cp311-cp311-musllinux_1_2_x86_64.whl (999.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

littlefs_python-0.14.0-cp311-cp311-musllinux_1_2_i686.whl (970.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

littlefs_python-0.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (980.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

littlefs_python-0.14.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (970.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

littlefs_python-0.14.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (933.1 kB view details)

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

littlefs_python-0.14.0-cp311-cp311-macosx_11_0_arm64.whl (160.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

littlefs_python-0.14.0-cp311-cp311-macosx_10_9_x86_64.whl (174.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

littlefs_python-0.14.0-cp310-cp310-win_amd64.whl (153.3 kB view details)

Uploaded CPython 3.10Windows x86-64

littlefs_python-0.14.0-cp310-cp310-win32.whl (128.5 kB view details)

Uploaded CPython 3.10Windows x86

littlefs_python-0.14.0-cp310-cp310-musllinux_1_2_x86_64.whl (980.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

littlefs_python-0.14.0-cp310-cp310-musllinux_1_2_i686.whl (949.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

littlefs_python-0.14.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (954.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

littlefs_python-0.14.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (940.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

littlefs_python-0.14.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (906.5 kB view details)

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

littlefs_python-0.14.0-cp310-cp310-macosx_11_0_arm64.whl (160.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

littlefs_python-0.14.0-cp310-cp310-macosx_10_9_x86_64.whl (174.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

littlefs_python-0.14.0-cp39-cp39-win_amd64.whl (153.8 kB view details)

Uploaded CPython 3.9Windows x86-64

littlefs_python-0.14.0-cp39-cp39-win32.whl (129.0 kB view details)

Uploaded CPython 3.9Windows x86

littlefs_python-0.14.0-cp39-cp39-musllinux_1_2_x86_64.whl (974.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

littlefs_python-0.14.0-cp39-cp39-musllinux_1_2_i686.whl (944.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

littlefs_python-0.14.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (948.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

littlefs_python-0.14.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (935.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

littlefs_python-0.14.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (899.9 kB view details)

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

littlefs_python-0.14.0-cp39-cp39-macosx_11_0_arm64.whl (161.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

littlefs_python-0.14.0-cp39-cp39-macosx_10_9_x86_64.whl (175.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

littlefs_python-0.14.0-cp38-cp38-win_amd64.whl (154.0 kB view details)

Uploaded CPython 3.8Windows x86-64

littlefs_python-0.14.0-cp38-cp38-win32.whl (129.4 kB view details)

Uploaded CPython 3.8Windows x86

littlefs_python-0.14.0-cp38-cp38-musllinux_1_2_x86_64.whl (977.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

littlefs_python-0.14.0-cp38-cp38-musllinux_1_2_i686.whl (949.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

littlefs_python-0.14.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (952.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

littlefs_python-0.14.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (934.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

littlefs_python-0.14.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (905.3 kB view details)

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

littlefs_python-0.14.0-cp38-cp38-macosx_11_0_arm64.whl (161.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

littlefs_python-0.14.0-cp38-cp38-macosx_10_9_x86_64.whl (175.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

littlefs_python-0.14.0-cp37-cp37m-win_amd64.whl (160.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

littlefs_python-0.14.0-cp37-cp37m-win32.whl (135.2 kB view details)

Uploaded CPython 3.7mWindows x86

littlefs_python-0.14.0-cp37-cp37m-musllinux_1_2_x86_64.whl (921.2 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

littlefs_python-0.14.0-cp37-cp37m-musllinux_1_2_i686.whl (881.2 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

littlefs_python-0.14.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (867.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

littlefs_python-0.14.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (841.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

littlefs_python-0.14.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (814.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

littlefs_python-0.14.0-cp37-cp37m-macosx_10_9_x86_64.whl (180.5 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for littlefs_python-0.14.0.tar.gz
Algorithm Hash digest
SHA256 55be7bd0f451f104ec1bb5818695878ea76b5a42bea500477ccf1d77ff8140b6
MD5 dfb02ebf5860bbbcd4eada5bde81688a
BLAKE2b-256 583a0c7bf4260a70aa299769ef2992e27e02da380774fb6c0bc834d19eb3b726

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c218d489e07a8e3146f0eb6865d9e94f87f90b7d8f8b465033f8077178599faa
MD5 a5836369da41586aa9fe8be0d50abf4a
BLAKE2b-256 53b15caa4f0f1d1033d0492caf469472e2e3df464356137126d8059a429844c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6ed9b0ec7d3bd68a35655196b8f50bb4134438027bfc993d5297348b7fb94f18
MD5 f12bb91f3e241b309fb48809d089183d
BLAKE2b-256 f6ddc71b6d5a3003027f931a77a77c6005f465b0e43d84521b5bf6c583707895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f03caab1dfb3e0442a750647ad5801baf601f820255afe37b6acb7d882e04f83
MD5 535b7431421fb6d13d6bde05b5428bab
BLAKE2b-256 b2fff0cdc353af2f8cbff5fe9a6ac7b92bbba4375f935d5c7e2e91b9617b3744

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b2befb62f6d2f4dd66eca50c62d0cf2742b64da390555764865062cf54d55817
MD5 9f0c521b19c50219b94fff35993b3e1c
BLAKE2b-256 33a77bd9f1b0ddd37dbff5cb39a98f62eacb4af3bed48d8099ac9429a3f16755

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98d2361d37f958f73d52128c4f35790aec7fa13c8dc91ab45e4f7f1270886044
MD5 605f9d6b370821d017f119754ee36058
BLAKE2b-256 fee753b1d7efcedff447e35a37f3a1cf943fd07a0cc70efc08a131412ecda97a

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26422520fa20073c7e697ad195675eced27df731539ec5f04b72c2df816994b5
MD5 eedec38c6fd1427751ed277a0178faa6
BLAKE2b-256 f63f1069574275f0ba2e8491de144f3af88356e2af8fe3a4dc22531e9fbc7d15

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e0347354bab5b6685cfc5791204cf565492a7bae4b42a404d00e6dc8662b8c5
MD5 60723f6f954baf2ebfc26d18049b3659
BLAKE2b-256 c177c0152f997bb2d9eceaa0b9461608da778db8e01fa67d77f3c95c0f4ba18e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05dfdcb108bc6a64bcb2027bc729d867bd8c7a213aeb8a45448ab27023937301
MD5 5d79f00f2953c89804ffb5872e699fe8
BLAKE2b-256 233e7db45534b3b0642adb86a4b25c38a695c3efa20e2a1da02cb3e57e3f9ff2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bef1d3c106e55726be1266da9fc89d84528a04c3320b97e8599b14b86f7d5f67
MD5 a69521243a6ea1e93529524191f0d48e
BLAKE2b-256 41e01d2dda161fc7ba70be6385c718fa9986893849a44b9b42ea1ebf951f956b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4db149e047da6688a06efd1d75a582b03cb7c5667af3f59f222a36eafa57a674
MD5 2c21e3d5083ca968cb6fb114264f20c2
BLAKE2b-256 da7c73e218175d604cbbff0d010780f0f559e238f09e86abea9c4ac6a174c1c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 65b31feb9a38891c3ee852638d3a07c3a254a1e2348fef56b88a43e05615b24d
MD5 b1ff1f7f09139b0ccde5b86553827a29
BLAKE2b-256 a9995e367be03dfbfeb552ef1ad01a82eb1c79092bf4f5fd6acb18f06cadfb33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cfac5447ef7d33f416008679e828fdba238fd930dfdb486b52bacd29c3aa0931
MD5 088ff4cbd918c9ee898522b01ceaf795
BLAKE2b-256 28d2f00227243680d1d4368b0fd71bc59ac9ea24f484edff91c126ee3c5899d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 beb84bfff73c1b5f7a6fe3f09709c36fd88dcd7704c46d70749163854adf602a
MD5 d426380c9d86fde4fecbe587236d6fd6
BLAKE2b-256 d485d12044693cbc5bee9e5f099e32175d53fe1da4ab8e1243bd254ccf98070a

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc74b83c4a55a326a5c7a6ec23638679ec64fabbfe4d7a78180bc40fa8a77c10
MD5 226dc4894f1347f7d899a554a9613e9a
BLAKE2b-256 4ea12568e4719966d995f4399ee7a50c72974e8028187513f14bb1c31d5cf73f

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dda936cfb21ae3fec5fd74badb1221e596aee34031309d943bba8f35f44e88fe
MD5 5e246791e627cbf4a13bed189bee2dd1
BLAKE2b-256 787f8fa4c225cc8518ccc6458abc07c52e13c7b548b0abeeb1f9ada99a405491

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a3e9e5bd5aaa4989b8efccfdb6d29dc6af853a7aee7b014539842208808d5791
MD5 55e77da20e2d183f4a1cb71c67f73c88
BLAKE2b-256 4c651ea86be97f8ff34c9cfc83f4c197e7b1cb238e1e71308c9d051786bafeb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2373676cb48fb40a7221d907b5fe117aa809463125d77784de311827d72531b2
MD5 f6ff0463147fd885f9a72b83a52db28a
BLAKE2b-256 e8dac30db6bc8398b17065152da3eb015b5b75a26c46d4f61a17c0c58ecde1a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2228d55293b81f79e2b540de3cc94d677cfd013ae1b46d9c2ac250b6f1bc845d
MD5 6703dbddf3e4e84b5e6b749819ee6f98
BLAKE2b-256 c5362a9bcda0fa41d2c9007b39b753517a37dc7c937cd4081793537ae35e82af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d321ceed82513116aa5f0cd422312567e9d6c293013e6adfe821084e588c0d08
MD5 2b4e9cd411212fba5210f2ad1e56f7e3
BLAKE2b-256 cb2a27cc2ebcb01abec8e18971dc3283b18cf94e7fbb45c9ab0a29a1d9bd7f39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f024c291018985b33a977800672188e189985a0b1259c7ba6427728bf7dd3a17
MD5 ef68796ed7400ae6b91ce8483b004a32
BLAKE2b-256 ff6c7ac6710147e1eadbb363e604452540f7962d13a585bd04271ce5da9bc548

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a06c24a46521750a1776f82d487fb3f4e70c778bfd5a2540d9636af12d5d644
MD5 be36fdce62b04376340563a655b028db
BLAKE2b-256 b75753f9353f7bd7e968be58835b92c3864d439883b258746206110b1a94e284

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e7278b9a7ce9fe209f0c0123daf84c044620734c3ee077f43a0ec3ec205f78f
MD5 7cf585f6f7683befad8c4bb0bec468d6
BLAKE2b-256 f1b0c990ada0c2987f5a429a8dc58660a70e5ef61eb4fbc2cc56cb727395c46d

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0bc186c4f193c93be82222f138bbd374cc48127393a53c0a6015719fd7cc07b
MD5 855a93ffd817756941c716f666da7bc3
BLAKE2b-256 25b2dc72388c4dd479736b3ff9a6fa6a48bf677cb80e7f8bd10fa1d96cf0a43e

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b153393cfb67f83ae658806f32b436f5c82de99dd957b422ab1036cf8e9ff7bb
MD5 860a7d27bed2051f523702dbd227c409
BLAKE2b-256 af8a99540c0ba9f6fab8d10f77c865dfd04bcaf0fb816833493b453f441a5220

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bf62318820bd98b4582a67da0e508b50788d7cffeec796b1b7d746fd3a272277
MD5 0398b5816dc24fb341c3d42090bc7d90
BLAKE2b-256 b1e5ae257ab2f0fe7a2f1f671fa0813c0d1ebba9fd640610f682dfb7e7e3649f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12271622413847026f7a3a5d1d0437f00b8d9315a946377acaf8a430ab64457b
MD5 b8fc5d759b1bfc1e6f10c5fc75684384
BLAKE2b-256 7ad8733bc80105b9d83106a9511ac73bb92124d7aad4406f93d0f075ff0f607c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 912a9f2dd95f081f634f6708a0b54de7b230fa95e4e7ac47cb17d7309a6eba60
MD5 b977eef50c58edabed7e353948cf2774
BLAKE2b-256 14d45f4a8ff5030ad530352649237226b3cff9d49bed75aac79c67edd9c9e461

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 041e4446120c3a651fa48f89b01d9d9522cfbb1d00c2cc16444f68d6b782a4d0
MD5 6693532bc5c09c8eaff76f3b23a1070f
BLAKE2b-256 d327f6c68868ae476110062f45490f3e48bc0c2d398f71164c0a54de09f7cea5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b577d037aa11a3c0cc85a2ab73938db78d8e27185324061ec80333b9109f7c37
MD5 7e9f93a45fe2ef51ddb2e3676c395b4d
BLAKE2b-256 9d8ace19090eddac441ba8f6f0aa9fe1064e616f3680aa913dc093d5269aba85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0396ba64c8b250454dea428fcfaf7dfbf11a9589b9ce13c3bdb760b81768eb0e
MD5 192acb65c98751798e45399c31d7ca6b
BLAKE2b-256 197128dea1aeac9f93b79aaa27c2135f22b8c8f0c6d34db859cce812ecb8b323

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 54d9ec9970fa57b7361d3ed226904a16b416bb5fbe416d251d25e792dc13c040
MD5 da963699039e5e0b96aae65e5b4bcff3
BLAKE2b-256 13d685da3c8d41616bf2b423d170dc676edbdf8118546e805e323b32176d8a0b

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ed7821e7dca8759dbd34884755001536ac685d829663c9d2883ce4a5c0ea71d
MD5 30c65c192d16fe5bdedd3cdb4f94306e
BLAKE2b-256 7b68029134731a82b2739328826c13f8888d30393fadc4f9d4960db61105cdd9

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d82521eeaaf69a62ec85665d9060bfe351697e07776c6c959c903932b9da651
MD5 e5e8599ca6ff98573df492d4933a140a
BLAKE2b-256 e90a5278f87be23b74b4da4eed82b7ff995b7bafeb5d4400494e70354d7f0b98

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d1664d8401334c8a2ecacf70dc102aa2b6ddac4be6a7964b11e30e5bb8a4fc3
MD5 718aa38c8c47b885f77cd8d7a2730208
BLAKE2b-256 5e9f49a82fd48e3c5c622b76ceecc5adec0eb5a46ac3720d3e47931f918fb85d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8769872154822574a965c3a60869cca36070268bb50787149b7221798d1e01af
MD5 2e185fd567f24b7cc56dbe267c0bf346
BLAKE2b-256 7929040a3c50e90e28296c1dfd0ef2fbbb98007d3ae2e66bba51214a52c0070d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5a3072fe888b69bbe2eb1f05bf8865ae1a7a02f6961266385ddb87409b1d463a
MD5 5a419ab69dde2f9a944606407782735c
BLAKE2b-256 7ff0fe480e605197dbddd1f6675c4f11f733f7d983da37343fd482d73a7e3526

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 635a0feacd34bc7bc0571f891d00aaa3d2f60f87e940f23efbdd63e9811d18ee
MD5 35d9390bace709afe28a60e03247faf1
BLAKE2b-256 a272efb6d51f267962bbec5f383a5ca9b869011233cad058ca1629062f4af165

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8704eed0aebc4ead44c024b041693ab6c0331d0f427da669d6a9ce8780f528f0
MD5 b5990e34e355300aaa2686ca03b3d64e
BLAKE2b-256 c7c95e3099535708b2242dca81b7ecfd7de18cf2f8ad34cda65b1c2adc6e0f78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 650e0d882b3b434a8711a32e4eb9d3300c7caf4b381f02d61411a341aa790e20
MD5 75fbd52befe3c16062ea7a22b165204f
BLAKE2b-256 8e7fb802a5880bd3e8883456aadaaf5871c42ae8b0e0c3e2643e1e4e713d0852

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe657f3a28f5aab72acce90228a6fc2d15b578498ce510a3f80ef44ee04ee17b
MD5 954b853206dd5e095fb152fbf970456e
BLAKE2b-256 40d70f537e28e367afb93bbae411fd3d665c3fa7cb29d50837d6b83772bc6cb2

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4b74b96b80f9440705648b1d475729322467c1690aba589dbb170948b72329a
MD5 2179bc3a5b8f4475cb29a95f3084dd50
BLAKE2b-256 fa0b892fc7a5874af9f3716d3b6df28a1b7cf635ef6ebbf1fdece9094f7bffc8

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4bfda6f84bb8a0fae3ca878b4e74a04623290934456f3363d9891777d84c0d96
MD5 04c69253262159ec8e3e71ddca1b59ff
BLAKE2b-256 cde2d0f4c562187e0c6edd24e9dd2a74749691c6d0271a630d1164e6d003a0df

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7afe895aec5a8e1c0c144465261867073cf6f3b4b84d9ae3050fc7e9635f6cd0
MD5 0b2e305f2fca64aea0198dde43606adb
BLAKE2b-256 c1b7d735f97797da27ef8dca8680c0dcde7c7bb5fc90b78a3c049f2861152f83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3409380da1f26439dd56f81278e266149c214c72346704299d81a55d02d0351
MD5 4a85c2bf57e2ad4eaeab510de6b6c798
BLAKE2b-256 1a32c9492dc819fefc5f87585cabeffd963dacad5eff62c4daddfc4c408f8d6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b68a6e28a8e1a96205410faf6ad08e662c9c400af7e0f16feaa5ecb71431d5f3
MD5 1b31fbda50889c764fa2bcc5d0d5e3c9
BLAKE2b-256 075a2f566846e72a39bf8b72973de376d60bd58d56311ef29a173c14f348913a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ffd87ddf125d9c03548b61dd40dc56c484f9b9aab0251792121b5e491e0cf081
MD5 823fd2b9e065458fd56d1f35dbee76ae
BLAKE2b-256 7045042daa37c1d004c903bbcc4a33ce632ea895950cd335eaab1a8266da91df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 252638687ed4373d99a33bbc520884825304e62f16c761530c61fc3f1d52cfae
MD5 517b79b6947671d8999e832f393cccc3
BLAKE2b-256 a5a4d5ae6d984c1b8b156cb45f28a8c44ce3fd1e70530019283438ef829478c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11aeac511a5486c287e9976ccbedbdfc36a4b46e74e0619c69bff49df683178d
MD5 1129934bf9ea1dbf2b2b39c0b07e3a01
BLAKE2b-256 ec8a3b68e9498730b60093a0d751ca0cfdbe02745cc675b44416542227151fdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 772e7234577f85f7584838304328af96ba3cf98368db90102a725a54c5bdf9e9
MD5 ed2a8d393a4c5558f25066a60401df9a
BLAKE2b-256 5bb07340acde7ff1c2c42a5207c997987934fab4acc3147720a3e734611af5ef

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e202a3ab71c9290322ebf6d9d9ff1af8d20a343da6ef1de42578d7e2d9972e5e
MD5 2ec5592cecac772febdaa5b98d95cc6f
BLAKE2b-256 2288e979a05af0ebe05e594e707cbda8086d1f00a3fac7cf9a18ec64a48507c5

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e90496c4dbf6c962d2a612c649b4f34a97afc10e76c5fefd26850e04e43eb45a
MD5 8b1d3a86430d9d95e677aefe6c996511
BLAKE2b-256 748dd369bf348fe2dde21ba9c41218564df6a0e62a50d8630803fb355531875e

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f6d932a5b27b6744c23350d66a44387b4cbcb3bd97ded7cf51742dfcbf306b8f
MD5 6edd68844114f50702565997ef4c9ae4
BLAKE2b-256 b4b839e81c1840a365ccfa4db91ff21041a44995478281c70ef444b40ee4d515

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a9961392d377e7d8fbe6e5c237ede15423db806ab95371ff819d2e33f1d3945
MD5 0be63a3bb66881f7bc1765ced25a36d7
BLAKE2b-256 df942e276e01eeaa9c8a5c2169a3f8a795d633ef292261ba8dda78f7cb709954

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 406eae13674d8b24abc7f92e88fc3647373b7aa916d52c0ba47ec5fb1a1eb3cc
MD5 23cbed31a94c4d143b74c5c8f62be3a7
BLAKE2b-256 e94c5bc1b53192bb03416cf63d6c26ee9ac85fe15468be6470b64c8956a5a6ea

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 cb9c53f24b0ea1bb9dca7576b4b875fba987a17a926d0074652f3b979b4be116
MD5 de4426d1feb86bc31f26db28ff28d464
BLAKE2b-256 b449086287102cf23888e6e9c68c63cd6e61962058948bf6c8c37fce771fe6fc

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 08f3680436b1141339800999740bfc452f7d47fda0d8f657005f1f4ff29a5856
MD5 4c98b6c549cf52f98ba1395a010a8788
BLAKE2b-256 bd0eb00c0e411342903297266b849d0c6d76fdd2d10b3658265219323dcd0046

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f86c5891540f21376a86902cac8f11a097a822d6ef8c2be56190dfe31f4fb0ca
MD5 7720a28f639c640a2edc89f09c1790bb
BLAKE2b-256 063d82000bc5b50effa324d4632c95de2767b09dcf90a2ec7937fff2e2d0a712

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cc300b0fc31d26c1a43908ba24cf8f85e7c0d2254fb49222e491ec69534c90e6
MD5 64ab042cd3370b588b021cb1e1518e4b
BLAKE2b-256 b231f0f9942fe7383ee479c002a0ec004673f731990db307002ec0ccac3506f2

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f04f5a2e93e0665f095a88a82319880b0c3f296839f92d8ddedfb9ab05750b3
MD5 f4bdddc309ee7f146902707cfa94868b
BLAKE2b-256 c56b642d060de8b48ebae40ed1ffd9b3e9dbd29cb7e59ee038021fc63bf48cc9

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f694d37911fb9eb52b543dcc0cea61fd23d9a472cbb6256207bc663fe08ea0b
MD5 f40d2a0ae4504adde411f4b961196c0d
BLAKE2b-256 030434d0e7cb151ce45d99dbb86fe07bb0308b9671426a5d72b085fb216c0da0

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d433b1ee3187e3291e2a0c51d24e89f074a0182c997d700bfc87e826912cb583
MD5 285b126dfa498a525d86d055d4430bf4
BLAKE2b-256 bb605ce7df16a15045b4215b032644f00ec0381b6858daee8a93fdab99de1f7c

See more details on using hashes here.

File details

Details for the file littlefs_python-0.14.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for littlefs_python-0.14.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 10912706eff8f529ab28aee77cf730b8f74c479a4a39949c4e34939effd16acd
MD5 f8a18313c00bd46855cc0aad72119bc9
BLAKE2b-256 2c0712d070e693b57d6b19cc8ffcef04760122c1a8a74b0280d627c27978a990

See more details on using hashes here.

Supported by

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