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

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

Quick Examples

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

from littlefs import LittleFS

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

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

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

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

from littlefs import lfs

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

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

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

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

Installation

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

LittleFS Version

Package Version

LittleFS File System Version

2.11.2

v0.15.X

2.0 / 2.1 [1]

2.11.0

v0.14.X

2.0 / 2.1 [1]

2.10.0

v0.13.X

2.0 / 2.1 [1]

2.9.0

v0.12.X v0.11.X

2.0 / 2.1 [1]

2.9.0

v0.10.X

2.0 / 2.1 [1]

2.8.0

0.8.X-0.9.X

2.0 / 2.1 [1]

2.7.0

0.7.X

2.0 / 2.1 [1]

2.7.0

0.6.X

2.0 / 2.1 [1]

2.6.1

0.5.0

2.1

2.2.1

0.4.0

2.0

2.2.1

0.3.0

2.0

This is as simple as it can be:

pip install littlefs-python

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

  • Linux: Python 3.7 - 3.13 / x86_64, arm64

  • MacOS: Python 3.7 - 3.13 / x86_64, arm64

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

CLI

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

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

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

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

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

To create a littlefs binary image:

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

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

To extract the contents of a littlefs binary image:

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

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

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

Development Setup

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

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

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

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

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

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

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

Development Hints

  • Test should be run before committing: pytest test

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

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

Creating a new release

NEW (with github deploy action):

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

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

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

OUTDATED (without github deploy action):

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

  • Create a tag with the new version number

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

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

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

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

Release files for littlefs-python 0.19.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for littlefs-python 0.19.0
File Size Uploaded
littlefs_python-0.19.0.tar.gz 529.4 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for littlefs-python 0.19.0
File
littlefs_python-0.19.0-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
littlefs_python-0.19.0-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
littlefs_python-0.19.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
littlefs_python-0.19.0-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
littlefs_python-0.19.0-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
littlefs_python-0.19.0-cp314-cp314-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-32 Details
littlefs_python-0.19.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
littlefs_python-0.19.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
littlefs_python-0.19.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-32, Linux glibc 2.5+ x86-32 Details
littlefs_python-0.19.0-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
littlefs_python-0.19.0-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
littlefs_python-0.19.0-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
littlefs_python-0.19.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
littlefs_python-0.19.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
littlefs_python-0.19.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
littlefs_python-0.19.0-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
littlefs_python-0.19.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
littlefs_python-0.19.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
littlefs_python-0.19.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.5+ x86-32, Linux glibc 2.28+ x86-32 Details
littlefs_python-0.19.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
littlefs_python-0.19.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
littlefs_python-0.19.0-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
littlefs_python-0.19.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
littlefs_python-0.19.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
littlefs_python-0.19.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
littlefs_python-0.19.0-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
littlefs_python-0.19.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
littlefs_python-0.19.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
littlefs_python-0.19.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-32, Linux glibc 2.28+ x86-32 Details
littlefs_python-0.19.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
littlefs_python-0.19.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
littlefs_python-0.19.0-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
littlefs_python-0.19.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
littlefs_python-0.19.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
littlefs_python-0.19.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
littlefs_python-0.19.0-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
littlefs_python-0.19.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
littlefs_python-0.19.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
littlefs_python-0.19.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-32, Linux glibc 2.5+ x86-32 Details
littlefs_python-0.19.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
littlefs_python-0.19.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
littlefs_python-0.19.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
littlefs_python-0.19.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
littlefs_python-0.19.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
littlefs_python-0.19.0-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
littlefs_python-0.19.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
littlefs_python-0.19.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
littlefs_python-0.19.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-32, Linux glibc 2.5+ x86-32 Details
littlefs_python-0.19.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
littlefs_python-0.19.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
littlefs_python-0.19.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
littlefs_python-0.19.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
littlefs_python-0.19.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
littlefs_python-0.19.0-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
littlefs_python-0.19.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
littlefs_python-0.19.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
littlefs_python-0.19.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32, Linux glibc 2.28+ x86-32 Details
littlefs_python-0.19.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
littlefs_python-0.19.0-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
littlefs_python-0.19.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
littlefs_python-0.19.0-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
littlefs_python-0.19.0-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
littlefs_python-0.19.0-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
littlefs_python-0.19.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
littlefs_python-0.19.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
littlefs_python-0.19.0-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ x86-32, Linux glibc 2.5+ x86-32 Details
littlefs_python-0.19.0-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
littlefs_python-0.19.0-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details

Total release size: 40.3 MB

Release files / littlefs_python-0.19.0.tar.gz

Download URL littlefs_python-0.19.0.tar.gz
Size 529.4 kB
Tags Source
SHA-256 checksum
How to use checksums
4ce8c6eeeb2703abaf8cb60f2dab624b17af42b13df3dbc6c42d4142bad79a59
BLAKE2b-256 checksum
How to use checksums
d82d22e8b009632efa8c917724e4e20e30b57be8b9ae6acf403ac8f1887bb205
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp314-cp314t-macosx_11_0_arm64.whl

Download URL littlefs_python-0.19.0-cp314-cp314t-macosx_11_0_arm64.whl
Size 195.7 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
89905592c4f509375d7d3d1a0187ceda57db74d8371093ccf42d5db6f190b10f
BLAKE2b-256 checksum
How to use checksums
b4b69f21c5ecf2b9adcbd75ddda1cd138e7cd606634f9258a20a94fe0728c5e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp314-cp314-win_arm64.whl

Download URL littlefs_python-0.19.0-cp314-cp314-win_arm64.whl
Size 142.5 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
f5125a8d763129808d52e874501e45100b7fdd619584e558674507202a1f1b38
BLAKE2b-256 checksum
How to use checksums
a4222e6a6464117974ec7e180fea20448f0ffadb6778b85d7dd157311ee02ea8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp314-cp314-win_amd64.whl

Download URL littlefs_python-0.19.0-cp314-cp314-win_amd64.whl
Size 165.2 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
0fcf1e8c35e63d399a89f55fd2dad370ed312ea8584aba2f5fea691dabe2db72
BLAKE2b-256 checksum
How to use checksums
96f3e74c0b4d7cd5911fbfcfb059257d2c1c688f9c3fec6bd4522ad180a20ce8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp314-cp314-win32.whl

Download URL littlefs_python-0.19.0-cp314-cp314-win32.whl
Size 135.8 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
643ffb360cedfde6a310da09ae806d030dd1769ef78bd79afe09eb345c4acccc
BLAKE2b-256 checksum
How to use checksums
40cd08b326234c29c7e11eda795bef1839fa6f2e429dab01f6d070e728f6ec73
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL littlefs_python-0.19.0-cp314-cp314-musllinux_1_2_x86_64.whl
Size 979.8 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
1586da7b9c6a4508479395322378fb36ca021e586cef2d2fe4b4b3f26c4e3c04
BLAKE2b-256 checksum
How to use checksums
acd50e516699be195f8ca462c902996e0ae6b34bd3b09416ce2c3047239ae921
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp314-cp314-musllinux_1_2_i686.whl

Download URL littlefs_python-0.19.0-cp314-cp314-musllinux_1_2_i686.whl
Size 946.2 kB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
0e5ca23e6f1938d92ea75f7ce2409b77e09480e7b523cac35b2bdbf6c957305e
BLAKE2b-256 checksum
How to use checksums
5e2bdc2518d31be33d8c2d1d356298f4b70933c22805b6f4736dec08aa6c648d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL littlefs_python-0.19.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.0 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
55343a36ccbf389d927f2e07ed7097b3b65f3e87b0416a670d5cae0f6131b5a8
BLAKE2b-256 checksum
How to use checksums
79da32b1d6f1aea2ae8f8b596a4704d5cc657c4f60c303b125f145f41d6e4f96
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL littlefs_python-0.19.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 986.4 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b64cc280bb53a0d93a8ccc4ab6ec3e90f53bbd06c6d7f318567cdaac26968046
BLAKE2b-256 checksum
How to use checksums
308f9dc82f6cd1c17fa5ea974164d9681e8e444d4183fafc8096e4db442dc59b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl

Download URL littlefs_python-0.19.0-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 944.0 kB
Tags CPython 3.14 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d643f7d5c4adf601e500b8958deb99d6f8bae914cf6c6be14e3cad047888506f
BLAKE2b-256 checksum
How to use checksums
81727e3f108b1f4e5ef524244c5b5c49066ab1122e5c5abc2c5f4b9f77b2a7a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp314-cp314-macosx_11_0_arm64.whl

Download URL littlefs_python-0.19.0-cp314-cp314-macosx_11_0_arm64.whl
Size 183.3 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d054ac280541afdae5722fb8d7ebc0e121d822c33d95d57889fd8fab2a211486
BLAKE2b-256 checksum
How to use checksums
2612ab923553e4894fbf44f4692d6c5898c1e66f41e57ff7a73b90e8aa0fb6f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp314-cp314-macosx_10_15_x86_64.whl

Download URL littlefs_python-0.19.0-cp314-cp314-macosx_10_15_x86_64.whl
Size 190.1 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
9cefa021649f760979657a414874f88292317effdd38dfbdd7edac7800ea514e
BLAKE2b-256 checksum
How to use checksums
8b2064ecd057f5ea8fa3c61e2457e2d66f05bbf5141bfb22b669637cf15ad825
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp313-cp313-win_arm64.whl

Download URL littlefs_python-0.19.0-cp313-cp313-win_arm64.whl
Size 137.9 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
5eef1580bc4a1678b5777ace3a646cf064bcb282114eea8c4a251c3704d2affd
BLAKE2b-256 checksum
How to use checksums
6edd696738040bfdcb9afb10ab5f51fcda286f6c0ccb83291e9c4f09f8c6a0ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp313-cp313-win_amd64.whl

Download URL littlefs_python-0.19.0-cp313-cp313-win_amd64.whl
Size 161.2 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
ec8d3de4f05d9420d0e1d013d9134cc68b2b6c15656115a7add2f1f9f5a655be
BLAKE2b-256 checksum
How to use checksums
d3f79c47d264f5ccff659eec6a8a087b207fb45d4a316581e2d8cd8ee228ffa4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp313-cp313-win32.whl

Download URL littlefs_python-0.19.0-cp313-cp313-win32.whl
Size 132.3 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
109dbfdd1bd381567d7f831aabcb279a09ffd85c80e9c696434395fa83fb7606
BLAKE2b-256 checksum
How to use checksums
ad92ed5e95624ed29857c30e675e516fc2cc4c411df8961ba93953e2c67bd2c8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL littlefs_python-0.19.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 986.0 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
fb9c65c235d33e10b9caa06d3cc37e396cc10f85d0ed7a4de7bfdb35f1c94814
BLAKE2b-256 checksum
How to use checksums
dcc146f854ad583eb40546bf0db884226170eb3ab016619026ae718114557862
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp313-cp313-musllinux_1_2_i686.whl

Download URL littlefs_python-0.19.0-cp313-cp313-musllinux_1_2_i686.whl
Size 945.5 kB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
d15020333abda47819d9d11d6fabe13eb64b83abeb9ae2d93c07a142c53f6aa4
BLAKE2b-256 checksum
How to use checksums
2ed5ccec20fca1823c32c072f9d4fcb159e711bae5143660cc185172696c00e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL littlefs_python-0.19.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.0 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6a5a799297570241487bdf42de82fa8d238966f1af502f4f4f5b32bfc4d74676
BLAKE2b-256 checksum
How to use checksums
196043f12328947f8472a67a540d691ed3a9401addfe7e4aa09cff7e8ea6b643
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL littlefs_python-0.19.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 985.3 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
f526d9216cc9dfccb81b9d7d990d9a2e9cee62261ec608bea8465e951006bd56
BLAKE2b-256 checksum
How to use checksums
e1d964411b1893ee90d3564fac0435bf21024b195b1bb93da1ac9ad44304d2eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl

Download URL littlefs_python-0.19.0-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 942.7 kB
Tags CPython 3.13 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
f155325d95e95690b39ec716e20b87b1c5a1a09a91cde158208aaa6277bea896
BLAKE2b-256 checksum
How to use checksums
3a4337be269b201f34de263c48792906ae076ad6d3f68a96b3fcac95dd3c209e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL littlefs_python-0.19.0-cp313-cp313-macosx_11_0_arm64.whl
Size 182.6 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
e006ad20d0af696967b55ff6d74a5ce1a0ecce5ba5a6a0f8030d56b0a6f6e92f
BLAKE2b-256 checksum
How to use checksums
949dd4cfaddb5942c789bb35e4976e13068ad9648c60589c2412686df77ae3b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL littlefs_python-0.19.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 189.7 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
1bd7dc438f27d6b3d6ec9a9210740653eefa1239745d0c9da230554d8bed9470
BLAKE2b-256 checksum
How to use checksums
3ba08fc8fdefb4a362a5919ca02f592898ae868174614625aca97f6aaf09760a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp312-cp312-win_arm64.whl

Download URL littlefs_python-0.19.0-cp312-cp312-win_arm64.whl
Size 137.7 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
c170794e550c18853f2ea1767df526aa879c27c963064cd88920994430cc6ffb
BLAKE2b-256 checksum
How to use checksums
d007e3c3296af085547b3fb4c6ad25bf330bd9c17a2805ccb33a14f2b0b9f7c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp312-cp312-win_amd64.whl

Download URL littlefs_python-0.19.0-cp312-cp312-win_amd64.whl
Size 160.8 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
0aaae1347d5a05da5e582b0d4c241d70b2736d01e5dbc58f9ae39ac659fc8393
BLAKE2b-256 checksum
How to use checksums
f05266fab84b0168d9fdf652e5cc3978ac816ec533fbfc742d974920efe9c2c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp312-cp312-win32.whl

Download URL littlefs_python-0.19.0-cp312-cp312-win32.whl
Size 132.4 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
012a4117d9e07376100907ae737ee35b48d58e394a17b00f3cbcd83d24d353bb
BLAKE2b-256 checksum
How to use checksums
628148cb5e64be3b8250d5e5df8afaa568a5065760b74f4a5e302a96a03c7336
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL littlefs_python-0.19.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 1.0 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c8d017ff77bd7435bdacb4d94e7f7c53aceab0bed5ada73940be9ed5ba4e205e
BLAKE2b-256 checksum
How to use checksums
14250a0025552605dedf9846661eb930e6639dfab49cb3bbc7907b10e08b23c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp312-cp312-musllinux_1_2_i686.whl

Download URL littlefs_python-0.19.0-cp312-cp312-musllinux_1_2_i686.whl
Size 973.7 kB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
30b3c6c8f7e85526747eb8188c2b8ccf572ac1701c7ecf4949b1231de0ced510
BLAKE2b-256 checksum
How to use checksums
cfc18b32e72fcd8e6a6d310ac617096f93809bac62827169d5e6f7ab0fa724e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL littlefs_python-0.19.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.0 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
53edd72cbce541939beec404a5509f4afc08ef694759201ffe91aff8adc5f254
BLAKE2b-256 checksum
How to use checksums
992c582c76811d6c799165619b618a1c4dc07178282ab55373aed31ba4c26976
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL littlefs_python-0.19.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 998.3 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
5a9a84ac0a4da2e37f9bfed0ecf70d2a8c57063000a39e93d1e4ab247643e7bd
BLAKE2b-256 checksum
How to use checksums
42700df951bdbe457abc2eb41ae6f0a06660b6f91decd06c70da82847ce1830e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl

Download URL littlefs_python-0.19.0-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 969.8 kB
Tags CPython 3.12 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
19d436537ace9f01d0f43b0453242d3aad3132abf97c5265302f03d84cc56482
BLAKE2b-256 checksum
How to use checksums
e0012f032bd9a730fd69c842f905ab65d65ccfa0fcca2f5a36a8609c9028b666
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL littlefs_python-0.19.0-cp312-cp312-macosx_11_0_arm64.whl
Size 181.3 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
986360d0fe75a123f156b5d6009cbc100ed2d2b966bada9b180ce7ff0faa43ee
BLAKE2b-256 checksum
How to use checksums
751f9d5d7cd2ae2a1e553ba65a314bd16436fbccb36c26fff380add605cac6f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL littlefs_python-0.19.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 188.2 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
947b3590e995d022051509c58c310550478f47074dca58479217b5938d5b7128
BLAKE2b-256 checksum
How to use checksums
2feb418abffd30cdd9240daf2b6155d3aea5ead05c24ebe6627a8b66ba55270c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp311-cp311-win_arm64.whl

Download URL littlefs_python-0.19.0-cp311-cp311-win_arm64.whl
Size 136.6 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
9e18b5359f24e6189d2869ae40297311d073ebad3be68cc83df6643b3a1089ba
BLAKE2b-256 checksum
How to use checksums
0c5bde627e24efc56d126d655d9bdfa0531630c9abc860e043d74e99642841c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp311-cp311-win_amd64.whl

Download URL littlefs_python-0.19.0-cp311-cp311-win_amd64.whl
Size 160.0 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
ccfa7e423d55b2645095a8abf56d4f46ae932c04e19ecd9e08d9e1191e5603cf
BLAKE2b-256 checksum
How to use checksums
171d5787baab2837b7c95e9fb194271039177ea0586e85478d2ee0f46fcde7fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp311-cp311-win32.whl

Download URL littlefs_python-0.19.0-cp311-cp311-win32.whl
Size 131.3 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
0864448636264eee6e2673118c711ad22e0663b6a6c63d2a95c05ee212d9c1fa
BLAKE2b-256 checksum
How to use checksums
dac67f2a3e8dd3877af86fb06149881cce09a4e5c197374f621f395fa9028f46
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL littlefs_python-0.19.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 1.0 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
51425e64a4e37bcbaaa2c99e12ffbbb1d81f96618bb824ac68c938757ed853d3
BLAKE2b-256 checksum
How to use checksums
71016e340769d769e7ce70c008d17745bfa0d62e4a8eb11b196904a282d1f748
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp311-cp311-musllinux_1_2_i686.whl

Download URL littlefs_python-0.19.0-cp311-cp311-musllinux_1_2_i686.whl
Size 975.2 kB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
4058e125fa7b44f91327ecf57db18f3a0d67d9015a67d4579e2e683870d33627
BLAKE2b-256 checksum
How to use checksums
e8d93756866f67ff5b023534b9caa3e8f8bb7dc078a8664a9061ff6575f55483
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL littlefs_python-0.19.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.0 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
71252f91d871357d2581473367840806c6dc05427e965e100f4b1433ae402c62
BLAKE2b-256 checksum
How to use checksums
5162812cb8a4d24384ada310200aca67e18389116757da267092d405bd40002f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL littlefs_python-0.19.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 1.0 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
711fa5c5748ba24cf3178ccff632357e4f93fb28901ceab6927e9c03a6b37e43
BLAKE2b-256 checksum
How to use checksums
7e4ffcdab8641cbf4124f0c5421a80252af3f5702f4f8fa12991d9d95409cc05
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl

Download URL littlefs_python-0.19.0-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 968.1 kB
Tags CPython 3.11 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
c197db6623142b33f484709445d04902c4c6af91c686d065f703d6ae94309fa2
BLAKE2b-256 checksum
How to use checksums
27e790e6494369d132d67aa98faa713a41cf895fbafb2c2b7d62a021e6fa18ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL littlefs_python-0.19.0-cp311-cp311-macosx_11_0_arm64.whl
Size 178.3 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
870f9b7c6d309bbd6d4ad95757c1af39376a5ba3c43800cab8c0933f5ad6da34
BLAKE2b-256 checksum
How to use checksums
c70a91dd9cd4fca2ff943a6cf5e0c3cf9d0411460657770ef0c2ae5326a725bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL littlefs_python-0.19.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 183.7 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
15007c78d1bb6b1a06ec0e7c662dd9e7469a06a5134fadd67bcd9812223905a2
BLAKE2b-256 checksum
How to use checksums
fb2051502c97902a588b25fa708b53125b11aaad18a7044fb16a69d36bf73d95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp310-cp310-win_amd64.whl

Download URL littlefs_python-0.19.0-cp310-cp310-win_amd64.whl
Size 161.8 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
54945e95faaf1edaf7bd554ea13889ad2ab786e213d0fca114385ee16de2c54d
BLAKE2b-256 checksum
How to use checksums
2734905e12c78c3d4d12b7edf4b86e53540b4385759b08a4a02440ad64e4830c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp310-cp310-win32.whl

Download URL littlefs_python-0.19.0-cp310-cp310-win32.whl
Size 134.0 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
020e2cc8b08e4246b41d8413146e8193c84e779e8e10e5ff08d6e60250022331
BLAKE2b-256 checksum
How to use checksums
b6636a0b36d1e71a37aa4be9a5b56212b957440d62cd5f092bd4994af10a3ef7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL littlefs_python-0.19.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 988.9 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7eb56074fbef683a923908091cae60fb3554f9bdaf82db92811e5bae8675b2cd
BLAKE2b-256 checksum
How to use checksums
45153d787d74fe11d7043d1a7c94f0c08b37314bba9cc384beed0215af82482e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp310-cp310-musllinux_1_2_i686.whl

Download URL littlefs_python-0.19.0-cp310-cp310-musllinux_1_2_i686.whl
Size 957.3 kB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
8abdaa1c78cb665c6cad6c8c5f0893d702af86587aadd7f1bc0442f61c742a19
BLAKE2b-256 checksum
How to use checksums
81f87c6ac666fee3af701bc67b7e709d1c911209440cc5ea44d12ae1b30c786c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL littlefs_python-0.19.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.0 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
58e8eb151741747447c953286c35743d82a51527bc500d61678823abdf14b6b5
BLAKE2b-256 checksum
How to use checksums
0ca3b37237be64730f35bbbdf0cc51434219798eee4cd31cd18ae26956d3c319
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL littlefs_python-0.19.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 986.5 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
58c37bc1d4d845af40a2456f1850359dd35325001f52208b04fcc07068e2e5fb
BLAKE2b-256 checksum
How to use checksums
eb5473e220f407cc7928c280dcdda23d5a3949e3328c4553f6d965c64bb5da93
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl

Download URL littlefs_python-0.19.0-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 952.0 kB
Tags CPython 3.10 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
d63e077eecd9982f0d3816ee0c95dd3b6c3e514e54272a4e80154df7f320e342
BLAKE2b-256 checksum
How to use checksums
7466c592d04f7273b6d23d504e2ed2117686bac007f0096c1eccdfbf222811cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL littlefs_python-0.19.0-cp310-cp310-macosx_11_0_arm64.whl
Size 180.5 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f8ecde73f89f4bd8edf764f5c422a40aef68bc401ce3465ced10cd0525bd23f3
BLAKE2b-256 checksum
How to use checksums
1a2edcf7c4174bbaeb8a0d3840235e38846331c79d466fa66cde4e5bcd3ea2cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp310-cp310-macosx_10_9_x86_64.whl

Download URL littlefs_python-0.19.0-cp310-cp310-macosx_10_9_x86_64.whl
Size 184.5 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9a409b071260aa0006b773c17528f8e2c91cf115799bddf6951e0e07b99b359e
BLAKE2b-256 checksum
How to use checksums
ad17e9ba82d3f4824b6b00e6a284b9067b84fcf0e61524fdb7126810e0556fa3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp39-cp39-win_amd64.whl

Download URL littlefs_python-0.19.0-cp39-cp39-win_amd64.whl
Size 162.3 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
5675b86b67a12a9764924525ddc15ef82b688714d4093ce696e082253ae2e790
BLAKE2b-256 checksum
How to use checksums
463eb5ae403d260b7139b1027fed4b5f972408c59730ad0c1d8d559fa35917d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp39-cp39-win32.whl

Download URL littlefs_python-0.19.0-cp39-cp39-win32.whl
Size 134.6 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
903bea7431e625f05cf76babcdf9bd39fcee7e12ebae43284711af9424c5f3c7
BLAKE2b-256 checksum
How to use checksums
6b4f3579a6d29fba08d7be5aa9c95d944ba6758e55321840301e5548c74c9d17
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL littlefs_python-0.19.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 983.9 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2c6df3da27680b08350f898c3a66ebddce15f1892f6aa007f9ca5f36d262aa76
BLAKE2b-256 checksum
How to use checksums
56b1d3d30abe472429acfdc8f48ec07573e0f22eb13303c479c495d73c1229ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp39-cp39-musllinux_1_2_i686.whl

Download URL littlefs_python-0.19.0-cp39-cp39-musllinux_1_2_i686.whl
Size 951.1 kB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
a27c00ad37a5ad79ad1b7dd72dd18d82b01b1deebe6aba50527424f13f16cc43
BLAKE2b-256 checksum
How to use checksums
6b11f28850c160c9df66525be45c923401a9e27356bb05c82b419be938064e51
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL littlefs_python-0.19.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 998.0 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5421c47b5bdd43d4cb855910263ee8884c2b6b0a779dfab6f31e1e27604a93d0
BLAKE2b-256 checksum
How to use checksums
f734287e720640dcf4f1e859246cc96ce38e37cb7a328d60593987f2729e9b87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL littlefs_python-0.19.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 980.6 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
140bcd3e34896e90dae524cc4762d97378cbd0e3b473a06829d6144e6ca9dd5b
BLAKE2b-256 checksum
How to use checksums
dcd70ecdf793fc799db8e2991f5855cc1dd68e5558a83c8c5fa0b05f0df79e31
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl

Download URL littlefs_python-0.19.0-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 946.2 kB
Tags CPython 3.9 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
6d59cb8a72912cbf7f10a3f88f881e8cef625945b3259083f69b71816087c617
BLAKE2b-256 checksum
How to use checksums
8178148f57e5b3adfb38e708288e26bed48bde8a9f0f0022ffe9fdafab85523e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL littlefs_python-0.19.0-cp39-cp39-macosx_11_0_arm64.whl
Size 181.2 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
53f19918ad27c7fec890eb08d2f0d5649cf55c2c179e2777c4ea2ed958ddbe67
BLAKE2b-256 checksum
How to use checksums
73c00b961f7c6157136c795da34d19b4700349b52c237f46a47d804821c95333
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp39-cp39-macosx_10_9_x86_64.whl

Download URL littlefs_python-0.19.0-cp39-cp39-macosx_10_9_x86_64.whl
Size 185.0 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
2c6fc43c47003b8a394d9639b89c82bbe234cf9fdc1f835be4f30b5e4ba05d49
BLAKE2b-256 checksum
How to use checksums
a40e59cbd4a3b95f1e1126dc711f847528c208145a6baa6e6d575287e264f1a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp38-cp38-win_amd64.whl

Download URL littlefs_python-0.19.0-cp38-cp38-win_amd64.whl
Size 163.0 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
6051ff3ece097e21eb301693ca93e7bceac55cbe378ca14dfdd948a08dfe9866
BLAKE2b-256 checksum
How to use checksums
cb15127e362cb435c7e75aa574d4285a733dd2b750ecc4e0f885c51ee0d831e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp38-cp38-win32.whl

Download URL littlefs_python-0.19.0-cp38-cp38-win32.whl
Size 135.5 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
65a415e6efa597091bc292f8e6b7ffb7b96d4e7209cbbf9c3b856df18fb5934a
BLAKE2b-256 checksum
How to use checksums
5f69e17c4e7ff1080e12f40a6143bdf97e7ab2774c0ddc8b1a48eeb46508a59c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL littlefs_python-0.19.0-cp38-cp38-musllinux_1_2_x86_64.whl
Size 994.9 kB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
62b7b9ff5ee463bf0359e2bfd04231cc06550481a16a50c79bb3d7af4bd77a4c
BLAKE2b-256 checksum
How to use checksums
7b1716173eff7d01c61805723bb50b64ea5fed2009a0e4356c7947e05f526b34
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp38-cp38-musllinux_1_2_i686.whl

Download URL littlefs_python-0.19.0-cp38-cp38-musllinux_1_2_i686.whl
Size 967.5 kB
Tags CPython 3.8 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
4a7be934562a5e3053646ce5bb0a98dea8361b97b8aa06bc830c18d49f79a8aa
BLAKE2b-256 checksum
How to use checksums
dadeb89a66d0ff6e6bb14ff9e45fd90fb5077f7c59155eebd07bb600af3cff75
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL littlefs_python-0.19.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 1.0 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
0965a06332177694681c1485a564d0ede4958258a649f45a4ed409c98ad2ab2c
BLAKE2b-256 checksum
How to use checksums
257dd00f9a94860bcce86b8c4848962ac05ed3311f04aaec8dfcd39f2c8e6e36
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL littlefs_python-0.19.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 999.9 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
c99b0ec49e9b840b2b4b143bc60272a9bed24eaf5187d166b2d54b09aac19d39
BLAKE2b-256 checksum
How to use checksums
dab179f1153a0a914c51893b65a97ead1cb7bd99d6fa0a0ea29de0006eef7a04
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl

Download URL littlefs_python-0.19.0-cp38-cp38-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Size 961.5 kB
Tags CPython 3.8 Linux glibc 2.28+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
fa1280eeb6d32b026dea65e5078d5af0fadccb26dbf709c073d0e5729270a4b7
BLAKE2b-256 checksum
How to use checksums
f0c6ccf2cd6d00c836c2fa4cce30b367a9070585c54a63a9cc44db8fd08cbd0c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp38-cp38-macosx_11_0_arm64.whl

Download URL littlefs_python-0.19.0-cp38-cp38-macosx_11_0_arm64.whl
Size 183.1 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f889f3d1839df23fda7c69a3b4d9a3fa1083330ab03b121448b71f51442c6d63
BLAKE2b-256 checksum
How to use checksums
0dc422c69422051dc37bae333fc9cbcffdd87c0d56c9d18bdcf7d607aff66215
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13

Release files / littlefs_python-0.19.0-cp38-cp38-macosx_10_9_x86_64.whl

Download URL littlefs_python-0.19.0-cp38-cp38-macosx_10_9_x86_64.whl
Size 186.2 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
58e0db33a7481cd85e4e7074959a4df39bc4f76426596fcab7462913ad13f288
BLAKE2b-256 checksum
How to use checksums
5f60aa5a922fe6e4f9587fcfa67889e576efa07f4a67e7da1fed7141b3c28a4c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.13
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page