Efficient MicroPython Device File System Management Tool
Project description
MpyFileOpt--Efficient MicroPython Device File System Management Tool
🌐 简体中文
This tool is designed for managing the file system of MicroPython devices, supporting operations such as uploading, downloading, deleting, viewing, renaming, and creating folders for the file system.
Features:
- Compared to ampy, it supports more file system operations.
- The average file upload speed is as high as
8.70KB/s, and the average download speed is as high as11.00KB/s, which is much higher than ampy and most similar tools.
Note:1K = 1024, the device used for testing: HandPy - Supports recursive upload, download, and deletion of non-empty folders.
- A complete device exception handling mechanism ensures stability.
It is suitable for scenarios where efficient operations on the MicroPython device file system are required, and its speed advantage is particularly evident when transferring large files.
Installation and use
Install
If you prefer to install directly, you can use pip (depending on the situation):
pip install mpyfileopt
Or, manually package and install (depending on the situation):
git clone https://github.com/emofalling/MpyFileOpt-Python.git
cd ./MpyFileOpt-Python
python -m build --wheel
# If `build` is not installed, please install `build` first (depending on the situation):
# python -m pip install build
# Then find the file with the .whl extension in ./dist, and install it using pip (depending on the situation):
python -m pip install ./dist/your_whl_file.whl
Otherwise, you can first clone this project and then navigate directly to the directory ./mpyfopt:
git clone https://github.com/emofalling/MpyFileOpt-Python.git
cd ./MpyFileOpt-Python/mpyfopt
# If you use this way, in subsequent commands related to mpyfopt, replace mpyfopt with ./mpyfopt or .\mpyfopt (as appropriate).
Using as a Command Line Tool
Verify that you can run the mpyfopt program and get the help output:
mpyfopt --help
Using example:
~/myproject/micropython/mpyzip $ mpyfopt -p /dev/ttyUSB3 ls
boot.py lib main.py mpyzip.mpy
~/myproject/micropython/mpyzip $ mpyfopt -p /dev/ttyUSB3 shell
/ > push / ./tests/test_unzip.zip
Write file: /test_unzip.zip
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 60.64/60.64 KB 8.89 KB/s eta 0:00:00
Wrote in 8.32 seconds, average speed: 8.41 KB/s
Total report: Wrote 0 directories, 1 files
/ > ls
boot.py lib main.py mpyzip.mpy test_unzip.zip
/ > exit
~/myproject/micropython/mpyzip $
For detailed command-line usage of mpyfopt, please refer to Usage of mpyfopt Commands.
Using as a Python Library
Execute this code in Python to import (depending on the situation):
import mpyfopt
For detailed usage of importing mpyfopt, please refer to Import and Usage of mpyfopt.
Appendix
The choice of Block Size
It depends on the device.
When reading, the larger the block size, the faster the read speed, but it will gradually approach a critical point $^1$.
When writing, the block size is fastest at a certain critical point $^2$, but the speed decreases when it is above or below this critical point.
Whether reading or writing, if the block size is too large, the device will throw a MemoryError (but don't worry, the robust exception handling mechanism of mpyfopt makes it difficult for errors to cause crashes), making it impossible to read.
$^1$: Baudrate ÷ 8, in units of B/s. When the baudrate is 115200, this critical point is 14.4KB/s (1K=1024).
$^2$: It depends on the device. Actual tests show that a block size of 4096 bytes can ensure that most devices are close to this critical point.
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
File details
Details for the file mpyfileopt-1.0.1.tar.gz.
File metadata
- Download URL: mpyfileopt-1.0.1.tar.gz
- Upload date:
- Size: 25.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
672818e9e5a8bdaabdf2857b10bcd0e29c286eaadc38abfd155ea914933b5d56
|
|
| MD5 |
fc3ce2c5670a2b350fbddee41ef3696f
|
|
| BLAKE2b-256 |
e3708e53fbb7af11d5cfe39cf6e85e58629e3fbcee149085a69bb866fa0c9b41
|