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

Uploaded Source

Built Distributions

littlefs_python-0.13.3-cp313-cp313-win_amd64.whl (162.1 kB view details)

Uploaded CPython 3.13 Windows x86-64

littlefs_python-0.13.3-cp313-cp313-win32.whl (138.5 kB view details)

Uploaded CPython 3.13 Windows x86

littlefs_python-0.13.3-cp313-cp313-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

littlefs_python-0.13.3-cp313-cp313-musllinux_1_2_i686.whl (958.3 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

littlefs_python-0.13.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (948.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

littlefs_python-0.13.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (919.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

littlefs_python-0.13.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (880.0 kB view details)

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

littlefs_python-0.13.3-cp313-cp313-macosx_11_0_arm64.whl (177.1 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

littlefs_python-0.13.3-cp313-cp313-macosx_10_13_x86_64.whl (193.7 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

littlefs_python-0.13.3-cp312-cp312-win_amd64.whl (162.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

littlefs_python-0.13.3-cp312-cp312-win32.whl (138.6 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

littlefs_python-0.13.3-cp312-cp312-musllinux_1_2_i686.whl (973.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

littlefs_python-0.13.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (961.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

littlefs_python-0.13.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (933.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

littlefs_python-0.13.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (897.8 kB view details)

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

littlefs_python-0.13.3-cp312-cp312-macosx_11_0_arm64.whl (174.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

littlefs_python-0.13.3-cp312-cp312-macosx_10_13_x86_64.whl (188.7 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

littlefs_python-0.13.3-cp311-cp311-win_amd64.whl (162.3 kB view details)

Uploaded CPython 3.11 Windows x86-64

littlefs_python-0.13.3-cp311-cp311-win32.whl (138.3 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

littlefs_python-0.13.3-cp311-cp311-musllinux_1_2_i686.whl (978.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

littlefs_python-0.13.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (989.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

littlefs_python-0.13.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (967.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

littlefs_python-0.13.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (939.6 kB view details)

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

littlefs_python-0.13.3-cp311-cp311-macosx_11_0_arm64.whl (172.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

littlefs_python-0.13.3-cp311-cp311-macosx_10_9_x86_64.whl (188.8 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

littlefs_python-0.13.3-cp310-cp310-win_amd64.whl (165.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

littlefs_python-0.13.3-cp310-cp310-win32.whl (140.7 kB view details)

Uploaded CPython 3.10 Windows x86

littlefs_python-0.13.3-cp310-cp310-musllinux_1_2_x86_64.whl (999.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

littlefs_python-0.13.3-cp310-cp310-musllinux_1_2_i686.whl (962.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

littlefs_python-0.13.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (952.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

littlefs_python-0.13.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (929.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

littlefs_python-0.13.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (897.5 kB view details)

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

littlefs_python-0.13.3-cp310-cp310-macosx_11_0_arm64.whl (174.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

littlefs_python-0.13.3-cp310-cp310-macosx_10_9_x86_64.whl (189.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

littlefs_python-0.13.3-cp39-cp39-win_amd64.whl (165.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

littlefs_python-0.13.3-cp39-cp39-win32.whl (140.8 kB view details)

Uploaded CPython 3.9 Windows x86

littlefs_python-0.13.3-cp39-cp39-musllinux_1_2_x86_64.whl (997.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

littlefs_python-0.13.3-cp39-cp39-musllinux_1_2_i686.whl (961.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

littlefs_python-0.13.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (953.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

littlefs_python-0.13.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (929.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

littlefs_python-0.13.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (898.3 kB view details)

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

littlefs_python-0.13.3-cp39-cp39-macosx_11_0_arm64.whl (175.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

littlefs_python-0.13.3-cp39-cp39-macosx_10_9_x86_64.whl (190.1 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

littlefs_python-0.13.3-cp38-cp38-win_amd64.whl (165.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

littlefs_python-0.13.3-cp38-cp38-win32.whl (140.5 kB view details)

Uploaded CPython 3.8 Windows x86

littlefs_python-0.13.3-cp38-cp38-musllinux_1_2_x86_64.whl (989.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

littlefs_python-0.13.3-cp38-cp38-musllinux_1_2_i686.whl (951.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

littlefs_python-0.13.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (934.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

littlefs_python-0.13.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (912.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

littlefs_python-0.13.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (883.1 kB view details)

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

littlefs_python-0.13.3-cp38-cp38-macosx_11_0_arm64.whl (173.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

littlefs_python-0.13.3-cp38-cp38-macosx_10_9_x86_64.whl (188.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

littlefs_python-0.13.3-cp37-cp37m-win_amd64.whl (160.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

littlefs_python-0.13.3-cp37-cp37m-musllinux_1_2_x86_64.whl (922.2 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

littlefs_python-0.13.3-cp37-cp37m-musllinux_1_2_i686.whl (881.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

littlefs_python-0.13.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (867.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

littlefs_python-0.13.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (841.1 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

littlefs_python-0.13.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (814.3 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: littlefs_python-0.13.3.tar.gz
  • Upload date:
  • Size: 507.6 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.13.3.tar.gz
Algorithm Hash digest
SHA256 cb59cc378004eb0f3a2918720828e37cf8a781f4712de9c8414bfdb058cb03cc
MD5 160f21643f7d36595d00164488147f1f
BLAKE2b-256 63293fc0c3def4c562d8d390eca5ac8cd9e4242dc5f0ad88c01a236a6a2b0e62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 45dcb441fe2bb9f63e68d1f72c6b1acd603321e097b50dff0bf8ee97fe74f24f
MD5 8241d47b25ae66b64e0ffa5617b3f9c7
BLAKE2b-256 a177a62fd48c568dfbe54d39dc11817acb57070c0eda2349369c7b689bbcf40f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f83cb7289fe2e25988273d8e95c81e039487cba793c002f7ff482dd9317fdcf2
MD5 1dee310e60cc06e2a4da263bc32d24e3
BLAKE2b-256 de8aeffc11ea73ab1c3bb2e3f7be1e670adad6c09d3b9eaa9116d5168f26a8ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25bcecff0a69d1ca7191595160e2fdf1bb4b3aad477ba90723f07a288970b704
MD5 ee78c9d7cf8d33982d085b7739c24d00
BLAKE2b-256 91c79439a052d7c4c8547127e9f93d00680aa7d3a4f533264b0d91fb4d7049fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 024b6c74e28fbdb1c6c434db1933072f07f5cd2bc5ccdda820f863c1ce01fb75
MD5 74179fe8411f3fc6caa2d4e7516b3a63
BLAKE2b-256 edf75c80b9de8085f039e36100692159142619802433441c2f46fe1c89734109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d11ef031ffdafe192d81f8b07546868b1188739d2eb9a1f74bd38e05acd152b
MD5 e1d870d5fd876187a8ed89d017b95df3
BLAKE2b-256 8be624aa1f0b00935b78c510e70eb0c574dee888fb31a07024b06f21fe92535e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d0a6c9a9ad4088570624fa94a0138c0db8cf5e96d7ae93155335023f1d7d3cb
MD5 a8d20f083952053b8ac98210007f4ae4
BLAKE2b-256 8e96fd63347582c20c91b8be37e31f5e3695b849e08cd6b3cb66b576b67361e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 53e285ee69a6fefe08fe3df4b6a46fb72f901f5bf5100599876b80733374d045
MD5 ae3e506907353c8dd1edb430cf7050fb
BLAKE2b-256 246666e5b1fefe83552dee063b10f0dc4b7fbb3d3cb2f25309ad8f5e23906ba5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e364783bd91bf8c458c966a5aeb57015975d8dc524747530af79bf93329fd27e
MD5 0e13a08d02b472586638690ec6fe8650
BLAKE2b-256 b63c65a0de3eb8002ccb600cf01254cc853c5e7da76d0117d8541a563ecd12f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f3be08a1bac680778b2b5bbbe2c77fae73bfee0a83b59e296a1b50467027cee6
MD5 498441f4e688f7720225dd752e27a9ac
BLAKE2b-256 4aac1d14fed66fab5a9d40e382b8d4ad8beeef57aba5b0966e510ef5fed597f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 729b5e8075d05022659e8f6c81aa35e8fe5499006f7c1e8e49fbdc835576cafc
MD5 ea08dc66c041936628a15f16262c5f86
BLAKE2b-256 d152873c3ff1d481b8db3f4c602e2f51f2bf90f85f8cd6dcb1632c355220723a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 58251efc92aa7775e8f9411a00ffe398fb4aa8e57c5274116aa34a15581a605b
MD5 4af741c58d44f1c321253428a7f5fab6
BLAKE2b-256 c2556096bcd3f306d089b2ad2eb6d097d6a69fb289038e6a974b3a7614911404

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6284ce57339f2267315e4cc8772c070d4d496f0332ab26047b6cc413d763ce5e
MD5 103c19850a4d8728f7d29920677fc278
BLAKE2b-256 56aff2c22d845d3333d3cfc3ca1bfc9ecfa030d5d4d90458557e50d7893c4ad3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eb076642e2c31e511ec3702b17b0912993b82bd7ef91ef7e23ae2e3c4d28390a
MD5 361c7609ca027acdb91b416cf66a5d45
BLAKE2b-256 5da9ed15b8c0a53678e91aa7201a40d99b988a10e3272bfe287688bc4f388211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26f2d1eb24251df1e1105afa63083885f76e10a505be898a1eea4a24969cc85e
MD5 edc75cebd4e51a2b28779903ab141aec
BLAKE2b-256 e4d5941d6594031812241ca6a7730a16c981cc3372ded4e29ab7609627e21b8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cbc7d129a5ef6e0fe9601145bff235d41b0894534ae4417947ffa310c00b6c13
MD5 0684344a6534079a9685bda75afdf0f6
BLAKE2b-256 c2c6f986294287e6b54a8ab3c1e79a52a55ada23ab396ced805a748281cba8b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a11bf7549316a291a8f19fa107a12372010f30fe65a04531fd06d5673cf67070
MD5 0a7e4975b5466e548c365a00639bab8a
BLAKE2b-256 696c7d503e80873ee0b346c68430aca944c130a253b4d67d0d33e81c14f456a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8bca35b6952b97de5fcd1bb2c97d19d71cbbae469cb05a408cb06a6767e98466
MD5 aada324e23f451099284021813af9f6d
BLAKE2b-256 1965a1b1cb66c1e8ad9abeabd033fd72ddcd6c7be77801d3171687d4a8e8ddc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 31f013ad1a1c660a1ee4de10c1222edd1ab555def76262a5bdad9b2ff747993f
MD5 2a736638aaaa010d32895ac7e04a62e1
BLAKE2b-256 2c7f2ba33750ed650df3312d26090c3a251bf0b5c5fdf63428043d1faf88c7df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f94c35201faece9d5cba6be6c9ce12a9727624c47fc682b1aa477490f2eead8b
MD5 b4834f5a06a4eea16015a527b027d49d
BLAKE2b-256 cdc9da17741e135db8db01a6c81fdefaad6960dfa8ec255014fda85300f72144

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f40795da199f20ef303349d97a9dca4205407aa75404c9da3cd1647576e3fd2f
MD5 f175aac4d148eef0d99e3503325bb173
BLAKE2b-256 fc91f265868c86e032c5b47062cc3f7a6bcaa756954ce4b9037ff6b7b84834e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d5200f1f1a6b04875f58384b19fd07da4a19f1abf78c1634e76228ea11c43f5
MD5 9aa9658d146d62ac72d639abf84ecb41
BLAKE2b-256 733e109749d0aa18b649d56e3856be3bc4a35e42f1b92489eb4aca8ae07f251b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 87babd2edd123f619efa052b86091ab132e94a45bb7a357b305e8aa714f2d9b3
MD5 46405535c37f13961938cb624644710e
BLAKE2b-256 c0e2fbee63d3447e1556e318ac32b35e145c0317ae49fc6a7a6cf90a2b6c28d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa43bc8fade6676877a204156e582abcb4437d89f9e210e70af9f2969a146ec4
MD5 4475e5b3e6cd3d184408fbe719ed7e7b
BLAKE2b-256 2a2ad28d0136815a6ca95b2e60b1b55e82ee2b52d653ccbae0232645cf860f01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 369977527a45d06df6aa52a1daf5a1e1c5b3c7d701a4fe3d63efd2322eddfda2
MD5 297c63a9680e281639a870c4eac4cf10
BLAKE2b-256 dd6a2bb01633a853074af31ac112b30886327e6056349e90452b63242333c1ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 27f3f81e62088ac0ba029af0c8b204ef0a67d14c10788134839c7e1a9d12aa23
MD5 086974a16b635aec7e56e939c05b20bc
BLAKE2b-256 494547c263a7ec650dcefb2ec77b393efc1bfc4533219cce5e4b6312b8f0e033

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 caf26c1975b296f62b6ad260b8971b2ca9397755128a1b8b956d180fb0d8ced7
MD5 1c5f7820aee2136688560a74d0020e14
BLAKE2b-256 a83f1f192d957949ee346157d53c3a8e3336136945f83d25f5e902f1c98c05f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9c04f61f84a0f004259a87e2b85c77e0b4e0741f62880b65ef42c20314b6f118
MD5 2500cca3dadb5167d34253ffcee32c01
BLAKE2b-256 557975679dc56f14274c0fefe861c79a569dafb0db0c7f5cc823ed8835540e7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f8375c2ef3814959006debfa8c0e113f73a3147ea3ed209bc37765d854929535
MD5 21a97f7697ffc0952af21885859b1c5f
BLAKE2b-256 b8cec8554970daa43c3f27dc5ad5ea8d4a2ada10da271237aaf4f82747a2dd01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c2e03e3606e1c9712db9ee2b63b014b67cf1dbda9b202b42be2f30a37e2cc88f
MD5 7c63b2a0bd9d7faedfa4b1ca2542a5b3
BLAKE2b-256 82385247eea7b9fdcf1e37f43bfaf065cfb47e399bc1f7e80f07b042fa9a03a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71bed5a239fc818a402d402e60da355ecc6fe10b3f3a8f8b601b07f2068a142c
MD5 d76be35a9fddbf2220ce74c0ab639443
BLAKE2b-256 0a4ea0534594ab46f83a4acb535efc22427c6e803d72e123387ceaa214cf1c9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7919b632d4cad2631b52fd05f220446dc11a69034de1ba2f7965ef850ad31dec
MD5 ef030bad12b39c1ba4e6a1628414753b
BLAKE2b-256 a236cbc15e9395b9a0751473dd49a0125c8840ea9e9bbb35fa822c492301419e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be2a2337d381a8121d268db5b06583407801e851011c1984353df7c4f27220c5
MD5 5bb71442b970d3d0b9c7109a9f105603
BLAKE2b-256 5de7c40515ba07bf4c54f7c99f5f866144b63ee7713f4ff79594ca574c49f5dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9378a02a395c6ab03797170c31a00b91fc4e0d49d665fb58763e4f027d6ba4f
MD5 43db44dcf952dc029cabac529343dda6
BLAKE2b-256 3f21651b7941ff2964c1f2411587a45524f74ac52797b182be90570b21177731

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bc844505b9c869bb811fe5b90cf298c398ec56a78691f7cb5034c1b4dbfae3be
MD5 8b1757d9fcfa817422f9b6f05f52fbc8
BLAKE2b-256 eeb4643873cb84f0754b0b60f1ca96f40618dc4db676db98310d3d5c235d4c6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8fd8157681d43ee2d9bb3c7230f6455bcfad57767713eb86a8649fffcbd38cc
MD5 90a0cac8a42b8d7da0969ae321688a4e
BLAKE2b-256 446011753c5c5739570f2346034f161cb2c3cf0fb69b83af039e98addc443916

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 da4d15e74f561349364ac2c19855c3cc0f442f20de7c788662c277e81da7e279
MD5 716ecbbd70da3c765c6ab9fbfcafb27b
BLAKE2b-256 1d0b259fec5367c7164817d9f4f7848428aed3eaa956fe129ee84d2fbb60af55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6bf502aa470139f3e3ce50c55b76554b70963a98ba0e74098cf53c46b5ba3eab
MD5 97af5e630fe9add439af25d36329a4fc
BLAKE2b-256 c1fc0e2d66ef508c30b75e541fb654d503a367a30faa16f4d86c13b5ee23ff51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7c35fe7d7921583b753fecf002b0d53afc6bae76eab8deb5ea38c282f26feb6d
MD5 e542471af0cbfee67d028059d8e8f59e
BLAKE2b-256 4df43ab558f893e1665bc1955bf3d3cdee41f8f9aa3a32e59231b95b2a3025fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a125133677ef992b91dcc9572ea3881e17f577cb4db2a6f9e4012ce6442d6efa
MD5 efb63dd9e2990f20a1331b2373863d26
BLAKE2b-256 0379f8174e3b9a83a2652d53c65dc4d159a5efdf6ed6875e41a3169a7d6da823

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a02f506b44e717ccd7809001b06be773dc7afdf4ff1d6fe88a791760f04c71b4
MD5 4696c6be568e7e4f7d4f1e52b6d04582
BLAKE2b-256 1e53491d2a97f2960988a1f8563bc6a703db23ad20e26accf60f85991dcf098b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca75cee4ececf91ae33ac1f7dc17a6f252a8f1486e74533585a961d1297e4529
MD5 1bd191d6a9323806268da3cbea0639ba
BLAKE2b-256 28778db8413e907481614dea0c36dd27d72d7ef8a6bb3b32034738a4c109e61c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c92aba48617c507fedef936b444a788398a40b639fe3b942fb8a8e4d23ecc58c
MD5 d05289f82d843840abda09ef4043f82f
BLAKE2b-256 17185ed8b395e505270a9738fe41827e2902c18e548d7bcc7fda99ec18123543

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 97bee1ee80b8e006420cf48a8b98b897c9294336b85f64232023921e35bec45f
MD5 ba91380360808560a494c7ee6abfd953
BLAKE2b-256 aad3beca8c566c7bd4265043030653009079c01158af2ed980c7f913481093e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1fd99d15d6a14fb16910dc688253019844e263172d7351ad2a7c5edc834c05e6
MD5 10214e63ce4156f8a8a69566f33c829e
BLAKE2b-256 86937a98259e702c2cfe57f308ee7902198f50da20bfda7868cb549c35ff5fc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f5f756073bc8c5b6c9f462c085f3b9b5ddf544f154d6f1967c1a77da699dc9e8
MD5 8560ac6af4b6b1b02f92a40b9bf9f72e
BLAKE2b-256 59cc9bc4e27b93ead15820d1190937da54258dc2afd59547674ed4c378ad8f6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1fbf1219b5b5cd7467ec4f2d4048559fbfb774d2f10651f1e3bab828e90ed74c
MD5 354d9d7338dd4554cbdb740e709132cd
BLAKE2b-256 cbcf6a7e6127c57798f2beee8bb86a00ce661ac9faf588b3fe1abea71f35499e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2b8343e60e8456c400ac1558d1a4962ebf264b1239975d5d5ba2e8ab5c16e735
MD5 361e3a64a99025dc6917776e43f8dea6
BLAKE2b-256 2a6c88cf4d6d34bc9c6b8a06ba92e3f57bc9a287f6e6c63ba699354f6e571a8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce57c5590faf34dc55476a3dfbb1b684149b2e0f0278278cb14586280c7d0524
MD5 928b24b90ab2125f8c699ce6932cea3c
BLAKE2b-256 6d84baa17be0b16c71a040abdcbf47e2feebffffd774881ecde596dbe49691c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2293795f8e82be45be9a7f85fec6eccd0cd33bd1c729e1d688c7f4a89b688dce
MD5 57cbcc9110580dc8f66de4672f98035c
BLAKE2b-256 ae3eaf53c034fa3814f11ed02c2019e1444d01ddebc970b8d99af19f3ae76d23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84527bb5eb157010cf8b3d6845bdda51211b06687b4e1ef1aee54e2e8a18d68c
MD5 c793f4643f8eebf06d86e174310f2e35
BLAKE2b-256 2d8744652654e8dd32e1899f7ec0518996bceaa0e5cf27cf4906c509a878f8ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e97ac957ba848021e0b0f71367b97f5ad86a2fc4039c541d38560e04b0c95b2a
MD5 742ef3262afc7e43c88a11c6cbee6c2e
BLAKE2b-256 986d33c7ac0945e71265205e2c11c0e57072cdd2546e4bfef64a324019dfee4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 89435a34b7b386d578cbd3cd34c5f3134dd7415fa5e490934e433f4299afddaa
MD5 1c623ebb06c7886ceb8e1bfccfeaa98b
BLAKE2b-256 0fba96efb7acaf2c123239bb6516d28ac331ac0c198ea09f02d456e416215939

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96463e94f66d7ac9f36e66b9b4cc84a4d130bb02a7d1341b328d03fb01c73b99
MD5 71ba804d46a35e711414265f5de2c9a7
BLAKE2b-256 b8c6bd2bfad809877b03b1303a05ecdd8e71dd229a401d4c132012670e2d6b27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b1ac321f7680332b4d58fd8451e8cdee8ec950b61c5e6f7f50b403cb6a73c10a
MD5 3f186404069c8824cf3cd1a0a95f3b9d
BLAKE2b-256 8649da818e3dc999fc2205dd79d32532eaeceef2f5c9785f1d3b05ff051eca91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 5ef4711a44873c8d809fa09802fb72ed81737a3167f0909757909ca3a645aec6
MD5 adfa9cbb33971d5e3e7dd7aeefd93a30
BLAKE2b-256 ecf55c547a887cc200ee87a0f90ec5eabfaebd8a3dd168b2a94d87fdf726771b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 0fd30a73a53897750b0fd92503524480d70c15650ed00b94f058b0a380557ff6
MD5 be3b153fed10da43f7f20b8ff951c21b
BLAKE2b-256 8dc22e4641daaad2ab0eaca22510d49cd3d7d615a1bba6db9f339873855d36ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f8b9000051a22226585d557aa8721f9f2efef44d63a608b675cf94388681891
MD5 70805e0e9953b3e747ebf7acdd00d8df
BLAKE2b-256 843944f47bc3c972ae65f93875c7316aa1d123637881c273e4ff387f6f0faa9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 82896e5807c0c866bef555ef079fc959d4435e48a51973240c9babd82dbc7c37
MD5 6a7be2269304034a9700123e91020a99
BLAKE2b-256 b1011fd2fa9263c5107afa555fefa918ddc874daa88cd13adb8048f4f55b87be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e46ea0f6db336f5a260fd70e8ed401551a365802909b78b81d348389d250f0db
MD5 1843a455adae7e1455f88cf39f3add92
BLAKE2b-256 9f1f2e4eee4554995788a614ffc40ad4350d8d4067cee59b60fa1882b90c3908

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0bc4750d2304c53ccbf3d5e6361931ebc3871e995fb81ca6596b90d0265d1ab4
MD5 da7aa33d2e7ad5f8b1351df91a71a192
BLAKE2b-256 b149a7a0fa640b7d8e25f4f24a958ca3b8b92fb2ce9911243d2d1daba100c271

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ee3f6d87feedd273751f3979a7b8b400a1c82965766c93fbaa90a19d23aa7049
MD5 d745a1c038c6df0c685cce047887f3d8
BLAKE2b-256 c884fd7a7ee46a3304c3faf5ea0fe413501c013faa6a80ed5a5a50e686f7a9e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for littlefs_python-0.13.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06ba07efca9bb37e1803a6377893876be13e0790e72586db8bbed6fd47ceeebb
MD5 ae8c6511fd1efc730d8cb5bc19e624d9
BLAKE2b-256 5e4d48f6dedd04926471ca6c099ab18f8db6e416e41a023d27fdafd2eb8b7fb0

See more details on using hashes here.

Supported by

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