A module and utility to work with the simple filesystem on the BBC micro:bit
Project description
A community fork of MicroFS.
A simple command line tool and module for interacting with the limited file system provided by MicroPython on the BBC micro:bit.
Installation
To install simply type:
$ pip install microfs2
Usage
There are two ways to use microfs - as a module in your Python code or as a stand-alone command to use from your shell (ufs).
In Code
In your Python script import the required functions like this:
from microfs.lib import MicroBitSerial, ls, rm, cp, mv, cat, du, put, get, version
Read the API documentation below to learn how each of the functions works.
Command Line
From the command line (but not the Python shell) use the “ufs” (“u” = micro) command.
To read the built-in help:
$ ufs --help
To see the version of microfs:
$ ufs --version
To set the device timeout (default is 10 seconds):
$ ufs --timeout 3 command
List the files on the device:
$ ufs ls
You can also specify a delimiter to separate file names displayed on the output (default is whitespace ‘ ‘):
# use ';' as a delimiter $ ufs ls ';'
Delete a file on the device:
$ ufs rm foo.txt
Copy a file from one location to another on the device:
$ ufs cp foo.txt bar.txt
Move a file from one location to another on the device:
$ ufs mv foo.txt bar.txt
Display the contents of a file on the device:
$ ufs cat foo.txt
Get the size of a file on the device in bytes:
$ ufs du foo.txt
Copy a file onto the device:
$ ufs put path/to/local.txt
Get a file from the device:
$ ufs get remote.txt
The put and get commands optionally take a further argument to specify the name of the target file:
$ ufs put /path/to/local.txt remote.txt $ ufs get remote.txt local.txt
Get version information for MicroPython running on the device:
$ ufs version
Development
The source code is hosted in GitHub. Please feel free to fork the repository. Assuming you have Git installed you can download the code from the canonical repository with the following command:
$ git clone https://github.com/blackteahamburger/microfs.git
To locally install your development version of the module into a virtualenv, run the following command:
$ pip install -e ".[dev]"
This also ensures that you have the correct dependencies for development.
There is a Makefile that helps with most of the common workflows associated with development.
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 Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file microfs2-2.0.0.tar.gz.
File metadata
- Download URL: microfs2-2.0.0.tar.gz
- Upload date:
- Size: 18.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a25441a29974f5ab61c740107618dea32e2890d3ed40ee85ac9d2a19c4c0f11
|
|
| MD5 |
5b6893ebf470fc04a876c65c673467ff
|
|
| BLAKE2b-256 |
4354469998a335660940fdd8648520abbc63ab49e937cac9ca3e50633e8048f5
|
File details
Details for the file microfs2-2.0.0-py3-none-any.whl.
File metadata
- Download URL: microfs2-2.0.0-py3-none-any.whl
- Upload date:
- Size: 12.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d12e35f8778b426ac17f0bb888c84ee29dac8d65c958d44bdfe8958e605aefc
|
|
| MD5 |
640fc488420906e4de0d19e8b6526605
|
|
| BLAKE2b-256 |
8cf6913747b2be7f1163cc827a02f0e466c88d270c95138fda2e9af69c714311
|