A python wrapper for littlefs
Project description
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
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.6 - 3.11 / x86_64, arm64
MacOS: Python 3.6 - 3.11 / x86_64, arm64
Windows: Python 3.6 - 3.11 / 32- & 64-bit
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 .
Note
It’s highly recommended to install the package in a virtual environment!
Development Hints
Test should be run before commiting: 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 direcotry containing the generated stub files.
Creating a new release
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Hashes for littlefs_python-0.6.2-cp311-cp311-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0c59820dd5586f33f0e9ccf21f9676a11a89ea11d1a72e9e732366511cdd996 |
|
MD5 | a2244410f4f3bf0ed6ab1996de6f6e55 |
|
BLAKE2b-256 | 9b1095c0c7e8d9d3725450c8bfdd855d600b8e6c44fedc961be057e7fe66356d |
Hashes for littlefs_python-0.6.2-cp311-cp311-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2edd7012e4c57da145b1b775d7bf26434244dcc5fd8021ce94f407e604ade24 |
|
MD5 | 3ca79b2e9df9b145a37cd96b0f62574f |
|
BLAKE2b-256 | d4c5b3b732a423a95263b322e21b17ee1477d0ba9a26083497b18522c4aeb2db |
Hashes for littlefs_python-0.6.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a378f62850728ba9cf5ceeb92ed2bf31996acf76f7a1be821f8c611ae670f4e |
|
MD5 | 9d40057321cb6f7cf8e88b1a2af94664 |
|
BLAKE2b-256 | 9842c518fd8d3e76a9fd73715221385668979981b7c1f136da48a910e6b56e56 |
Hashes for littlefs_python-0.6.2-cp311-cp311-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 85cfa96d09bba7a9c5aff7f8d31fad1a93b1cf64b6091a2a605acfc035bf44ff |
|
MD5 | 17597fba4844d0566aa9c4a8436f3bdb |
|
BLAKE2b-256 | 6b2962048d988a6e63e45e47505bd927ec7cdd8d18f7710d86ac1cd8a0409e41 |
Hashes for littlefs_python-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a32c708cb82994fa5466d4e2028067037657a1c6a36b6ae48dbf89cf62229a16 |
|
MD5 | 0549061a16b031b13f0fc8460d13f5c1 |
|
BLAKE2b-256 | c1e0e7a2724f1dec1bbd48cbe61071fa562e75b59624003b7d758fde9f0aefaa |
Hashes for littlefs_python-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd5b974be5c042615cefc8cb40ded33527f3e1310f49d7423e93e373faeff563 |
|
MD5 | 80bf08a1b8483c3a078d752f6f9cbefa |
|
BLAKE2b-256 | 66c06f034871f7b39b2b9eacccdd44a810419661aad14e05cfc062fef7752fa0 |
Hashes for littlefs_python-0.6.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7e3db817f103564336360bde2e3da487a3d9c39e68a5de1d92fc63bc33678a7e |
|
MD5 | 5866a4644ccf6e7f34f3245acde9d5b5 |
|
BLAKE2b-256 | a9734c8e3e18cc203299331ea931ea0646c4cc8c6d698049d3f314219eaa6117 |
Hashes for littlefs_python-0.6.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef933e1714941c1c63691a9481efc4503eca86e817591a6833c9aebd34c787c2 |
|
MD5 | ed715bce85d62f89ba5303135151ca8c |
|
BLAKE2b-256 | 8e488e305134acc3357f58525ee6ef0179a4583edc86815e11010c3c4007f74e |
Hashes for littlefs_python-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc5e3991739889844c77b4d559aec515ddac2533ec5497aa0cdcbe4bd9ec934d |
|
MD5 | d35f23731e553940108fc0105dc2cc25 |
|
BLAKE2b-256 | 2c22c634743d36e6af4530cbf2c686c09ed5926d326f283e45f8240846829888 |
Hashes for littlefs_python-0.6.2-cp310-cp310-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b480e1b624f9e57b0f38969c7e38672a26624934d9a0c76d866ee94412118737 |
|
MD5 | 886216a938ae1bb99acdf885a5983787 |
|
BLAKE2b-256 | 44d76390133f4ed79eb2f9327034879f8480a551a33870a69ebd6a0af2d7a561 |
Hashes for littlefs_python-0.6.2-cp310-cp310-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01e29591747d2d509fd30633b9fef06eda290e3678757f8ceb8b90a61d74ab8b |
|
MD5 | 25441f00c14e142784a62962ba28a689 |
|
BLAKE2b-256 | bffb1f9c3c095577f6aa367d687e987ada613a1ebe65d185230fab28c4fdea10 |
Hashes for littlefs_python-0.6.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 44f6df73bd83ce5bf49f4744c2a2acd4ce87b828d6035d686d9df5f4aa2136e3 |
|
MD5 | cc46b0349fb7424ae6aecd646fbc66a2 |
|
BLAKE2b-256 | 0a18ce4cda77668db91a0e7bc18d4fd8752258317d5b0583097993dd14519fcf |
Hashes for littlefs_python-0.6.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e0cd4dc6a8aeb0771e5cec0506f9ecae54e8a70363e6555d9f97a1ee07907686 |
|
MD5 | bdc325fc6fcdf3fd65b69006069b11a3 |
|
BLAKE2b-256 | d15748596b51e3150c250870b26d17ea6fe16528632ff73e7260dfc2750bb717 |
Hashes for littlefs_python-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c7960de268c96bae970f7869dade4f8618a394310c8219b2d11ede8ee715388 |
|
MD5 | 6c8b73a37fca0211792082f0850130a6 |
|
BLAKE2b-256 | d908c1d5500da74e8ef5952ac6c49e72de87dd2b54e52622a7b117fc43bb15b0 |
Hashes for littlefs_python-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb14b4b28a6aba4e22b80ffc70dff3060fe4dcaf1bb8afc8eb54cafd6f5513f8 |
|
MD5 | 50259c8bf4396a11f4e568204b2d4ed6 |
|
BLAKE2b-256 | 9eaf46efe11cbbe4f241c8cf6e2b3d536afdec8a7ecb402f6dc9654fb09f1af1 |
Hashes for littlefs_python-0.6.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2fe3d8cc1a5c9b5f13b47fe5e7044b7db27fd220d6f62852214579e0af08ed79 |
|
MD5 | ccbe91a635ea213cd2e924c0060b6ee1 |
|
BLAKE2b-256 | e4f513923a4cf1ef1aa9926a959cbe9c96e160910e5ae1bbe5554928f2b53650 |
Hashes for littlefs_python-0.6.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63499c81269624dff662c16812f5f9505d2a42a8361a682d61a3ba368d99417c |
|
MD5 | 9c85335f1b0fe71e6111cd9c67da4920 |
|
BLAKE2b-256 | ec3888db2e3f5324f161161e4a51bfba88f9983ceb3f11f19604e4523a8497a6 |
Hashes for littlefs_python-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b2c36f926526d90482c47eafa3caf5d551d224b93864876e2a2862d9cbe6989 |
|
MD5 | 865c9f18cfa5a79267135251d98c4bc0 |
|
BLAKE2b-256 | cbce48708baf4645a3d7d0d03c2b9aa68a870caf35102dc71790cbbc2b1e108a |
Hashes for littlefs_python-0.6.2-cp39-cp39-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c6e965ea3e95cdb8b32e3455b824519a324b95a71181851b4872a731d0549ca0 |
|
MD5 | d2a53f02867d0e206cb24edf6b428e01 |
|
BLAKE2b-256 | 3fcde63e85c5addba1aa7d0f6bf142df2d2a21fe6594a66902e991a6163595b5 |
Hashes for littlefs_python-0.6.2-cp39-cp39-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42e0a0884dc6d8c841e41ddef5bccefe02a486026dd21cab0908a716f140b27e |
|
MD5 | 5fdb6ff7f94afa6ef35e719166297562 |
|
BLAKE2b-256 | fae7006d6cdd3ca3b27f103fe22e59d14c09cf9432b83725ced460a12e37d03a |
Hashes for littlefs_python-0.6.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | db57d09a377127f300469d3cbae31630c3bd3485db97d4c870d0c3558b79982c |
|
MD5 | ba111f008d4d0b6aae6c9c06a215c659 |
|
BLAKE2b-256 | a200cccdd147254e6a5f7045a318cffad23110f7bba4b66f4cf73f63cf0d4df0 |
Hashes for littlefs_python-0.6.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 07153a9e7fb7b495debf19a7e1aa8b6a31873121e4658cc52e006863f0f72c67 |
|
MD5 | 27d3799cac8ee80d2069a1a46ec6aaf6 |
|
BLAKE2b-256 | aa3cfc8c124f36b4d316b38e88d057e0d7937b5e0514323ce6e376ba8cf11f08 |
Hashes for littlefs_python-0.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5cc8cf9d06106d915167393db5c5a92dc81e5cc9547420ac52fa38ecb40ba007 |
|
MD5 | bed5face375ebc3603a309ba0a19d5fb |
|
BLAKE2b-256 | ca2c62ce32f179a4cf2918f0c12fdb6a5563d5464d9462a4bd5bf6f7a5ab2c0b |
Hashes for littlefs_python-0.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 05e0ff9a92da71c2b4e71fbf3bef6500802165b0f11923ed45f49fcbe33c9698 |
|
MD5 | 0a14dffb643ac09d9d58fdbf850df59a |
|
BLAKE2b-256 | 23ab28ed340507541b9fde6a19cf62be543165d20012e1f8851f5eb81264541a |
Hashes for littlefs_python-0.6.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5789fd4da0eb2714cb26d7a0e1e942dbb93d798702fab800300fede948d1d6e5 |
|
MD5 | acc1bf2fef75e2928ecaec6f231ab6ed |
|
BLAKE2b-256 | ea430b997c7a402f62fa46d5718efb4b1b77b4da7654de6bd0e660778b543c19 |
Hashes for littlefs_python-0.6.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 46a019913a7392a69a24047af201e19de5d6620ec5cd0cec2bdcbd8ec5272751 |
|
MD5 | 4304c067d5d5063240cbaeccfb9bf2ba |
|
BLAKE2b-256 | 83322ba80f7a8309d12a824704f8c85d948265bd422bc8a6bd487ac0ca36aa4e |
Hashes for littlefs_python-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 201fc5eda0bb374454a40f742ae44c43602813caddc875f73fe3d8cfe7d946c2 |
|
MD5 | 01702c40cc0b21ccac7c553ba86a158f |
|
BLAKE2b-256 | 2c56432df511b4a6988c6f0cc78912ca568d8cce8cbb0d3185937ed3b0a118ff |
Hashes for littlefs_python-0.6.2-cp38-cp38-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 400951ebbbd7894cfe64e618eff52eb94e5b832a0942c2f2108ef268b87bdf81 |
|
MD5 | 08e2638f985c5b3b425fb307e87a7462 |
|
BLAKE2b-256 | 92c84ade1f1c2e892463654d2f3c10283564c5f02a95f135831997f117b1fa94 |
Hashes for littlefs_python-0.6.2-cp38-cp38-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3da231693877eeb63e635be964a0f61331e34d018dba8c68d892a367b0426e42 |
|
MD5 | b1142648fa9cdd640c532506ca36c630 |
|
BLAKE2b-256 | ecee1931e80dfe04852744c862ca7958ed8cf6a374712478be1e0283c27189dc |
Hashes for littlefs_python-0.6.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f05d0e8181b440fff939edb49cfe539298ef537d36a0e90ebb5d118d351e3ea |
|
MD5 | e0342dbff64d017bc8ad3b7f29861bdf |
|
BLAKE2b-256 | 1f5d270944cf8a104bce49daf37e7d60839fe509cbb196264e8ee0c9a5e383f5 |
Hashes for littlefs_python-0.6.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9b7823b35b34d0f79af98a653084ec448358a8975a87c78756540c3559efc459 |
|
MD5 | f757c1008f41d5a851ae3074e8a5d398 |
|
BLAKE2b-256 | e4cc109ee715b88b080a91d2404859e93203c78ea2f9f40ff4949d995daf8eea |
Hashes for littlefs_python-0.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 81ba14160f962524f35ec56e08de65f4c6d02fd7cd45610c3e3b36665ab9d519 |
|
MD5 | 357e23cd8b09e927f7af22e6bb78a91f |
|
BLAKE2b-256 | 4710f57f7dd5193a29935393ffa3701d7b1d281796179b9a1182f271f842d63d |
Hashes for littlefs_python-0.6.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9415d2c3e9ed2dcf4aa183b0b01a53260855921e87a4c03c4af4128e45b0e5a9 |
|
MD5 | c29e3f63f51e25c7e845c66b5f084b17 |
|
BLAKE2b-256 | b987bbc002c3abcc178459b239c8d5dfd4e44305c1387841ab8d59a5edbec40f |
Hashes for littlefs_python-0.6.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2913ed79a57ef76b1f9713d7f6936787b7e6e2ab8e677f0b7030de608ee1155f |
|
MD5 | 42038c46427261c6afca83eaf3e02cc5 |
|
BLAKE2b-256 | 5605a557bbc631344b7178cde13006e01137adad1f7760843d14f5ec2fe5e3c2 |
Hashes for littlefs_python-0.6.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a8389026dacb048787e6d0f401b54b804fcf250e9b7378ec27edff33be006b0 |
|
MD5 | 042858023b097a2364b9477220617d26 |
|
BLAKE2b-256 | 69f0241f298df9b98a346658452b2379b964e337322234af1111de04835f6b20 |
Hashes for littlefs_python-0.6.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b4c4a30b77cb5eb3d7f9bef00ceb6aadf7e72e1504b2976fc93642f65dd37b7d |
|
MD5 | c0b8c34cd77d766d5d39b957af5364c8 |
|
BLAKE2b-256 | ea1046c81b2b385ace3ed4f97bcca538e79697506f95428379939881787067d7 |
Hashes for littlefs_python-0.6.2-cp37-cp37m-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 66c2887abfe3b50d0c8a2872c37d71ffa538b145b42b5b4bf3b8315187df166d |
|
MD5 | a1a52990e0a2d4ecc7c72a496de01e0c |
|
BLAKE2b-256 | 54430b4fcf1a7ed31bfcbf663419367ee85eab0bf67814854983bb48649a8197 |
Hashes for littlefs_python-0.6.2-cp37-cp37m-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4fa9df205e2bf6cb61de102da9d3bcef91612fbbc0e37111a6efa46a2ff110a1 |
|
MD5 | 31bebd45e3a845cd046f776c231f734a |
|
BLAKE2b-256 | 973dde1cce7a3ab03005da4222e103ae24d87147ec8f51737f8e2fb21deae8d0 |
Hashes for littlefs_python-0.6.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0aaff7075e561e07ae3838aba5940ec6a704558ecf72190b3fe357959b7a8db8 |
|
MD5 | b98ddf38e1d21425759de66aa4039ed7 |
|
BLAKE2b-256 | 9d8919a1d691d425f8fa0a8b00b410b54d262972f7d38f13940e270dfc68f681 |
Hashes for littlefs_python-0.6.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 784c8c4868eaa0328847350d636a2eda0c3aef6385d5137ff0dc749ad3993d17 |
|
MD5 | bed4d4702d2f2988ecf4082b98a5631d |
|
BLAKE2b-256 | c0b90e01eb89b0b50bcea33eafe0ecfb7dd38ce2e949d07b6d4d3a7167808d9d |
Hashes for littlefs_python-0.6.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8814d8ce5f29f8ad9cda55b6949763ec6a058166cc121487e4d2abebf78543f |
|
MD5 | 88bd4339948f39afbe870f6de802ad12 |
|
BLAKE2b-256 | cf4342261065483a5ac78e069251fb97a68505f09d1743b55faa88fa1f59e610 |
Hashes for littlefs_python-0.6.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6fdbf5c688e441b32f7a052e2ad66c97e673b37b0d615078fa6e9dc0bd7b777f |
|
MD5 | 5f161fdcdc5e7cccbd3d53a8945d0906 |
|
BLAKE2b-256 | 12e0d886286ac628454c6b015cbf1ba571835faec9b5915cf59f3c4b92eca150 |
Hashes for littlefs_python-0.6.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d7fb68d8f4c949e6ae2158e0fe3af5508f4fb9b49b3a2116a47867ef26bced2a |
|
MD5 | 2a143e832773f2f8c79d3b0929e6a35f |
|
BLAKE2b-256 | bec78673bc3dc3d5f6676694b9cd7ba69b80c8cf28bba191df949285af47bef8 |
Hashes for littlefs_python-0.6.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0c7df36ba06af91d88bc4f181a78c4438b451e44b06689ca58446ed1f7d92e0 |
|
MD5 | f3a67928530c088526f5eebb381f38c9 |
|
BLAKE2b-256 | 08bbac5fe2df6da688721452d3e1998e899d82671a746e500db384c83c8361f2 |
Hashes for littlefs_python-0.6.2-cp36-cp36m-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | edf0d5b910dd88ace10e8d026799bcd32c8c155183ec8136f73ef5912efabca9 |
|
MD5 | b6b0a37b38bf6c6e5341e0b8b552d70e |
|
BLAKE2b-256 | 7c70de20813ab0a48b2cb47d382a6012304c1eae2805ac9f2f5005897080bd04 |
Hashes for littlefs_python-0.6.2-cp36-cp36m-win32.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8352073a798df6a419197d15d912c0ccfc942a1e0a97572b5107d191d27bad44 |
|
MD5 | 893aff626673841c3a2a7c0096511c63 |
|
BLAKE2b-256 | 579f24b56fafce94cdc39dadd0b2172f25eaf8bcddfc9c71522b40642782cfbd |
Hashes for littlefs_python-0.6.2-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40b0adff8b5fa103b670b503d2d9672b0d0473e3a6ed49872376c4f8bd3bd4be |
|
MD5 | 161b743ccb4110d696ed8d121a92b16c |
|
BLAKE2b-256 | 836d062b942ef1839e5f0b4e31b9c49c5632b9507dbc9256d3d15ba473e41690 |
Hashes for littlefs_python-0.6.2-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3d38a29f80e6e6bb8a27cdc0a55dc10d3614201e3faef09fcc72f55509fc653 |
|
MD5 | 2d8c56ddaca23307568c642cb9f2e1db |
|
BLAKE2b-256 | e0ae6cdb059df7ccc64e015b8950ad6e1fcfdec798c4269680416ccfc924c6f1 |
Hashes for littlefs_python-0.6.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 07d766732ea14b585d02481900b0fc21aa7bd8912f8c35cbfa12cb4baa375621 |
|
MD5 | af91043c3503e1811ba1bf71ee3cebe5 |
|
BLAKE2b-256 | 166015d8890a9e9d8afe411c3f489dd4a8324a5f6c5d4398d030035224abb880 |
Hashes for littlefs_python-0.6.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 10eca122ed3b3557f40b253fd6aa6b9898172b92b14bb02d3bb5d9483b2564cc |
|
MD5 | e3644eda4cf31c3f13bb7a99677274ba |
|
BLAKE2b-256 | bc0eba2a4546acc5cb4ed3fd28f8b14e3c9b823bdfecccd4c6abede2e194cd66 |
Hashes for littlefs_python-0.6.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 10f8a62fdd1d5ae5f562c5f492735df53a53cc23140804fb45c8f4ac3b83b912 |
|
MD5 | 168057549cf387272c41e9fc33b41a63 |
|
BLAKE2b-256 | 9fff76637ddff691c3aeedbfe8c222d01103deed253c54904fcc238185cdbcd8 |
Hashes for littlefs_python-0.6.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 439a5585e58cdd95f14fa8c6415483b2a8359111e4f290c93c952e77eb3aedcd |
|
MD5 | 9cea2de9ba5178dceac19652d1dca5e4 |
|
BLAKE2b-256 | e207d594ac7a23991cf90fe566dc78b38f3caec4d0f16c914ed92b708df11cb3 |