Skip to main content

CLI helper for MicroPythonOS: https://github.com/MicroPythonOS/MicroPythonOS

Project description

mposcli

tests codecov mposcli @ PyPi Python Versions License GPL-3.0-or-later

Experimental CLI helper for MicroPythonOS: https://github.com/MicroPythonOS/MicroPythonOS

Main Idea: Install it via pipx (see below) and use mposcli command in MicroPythonOS repository path.

Install, e.g.:

sudo apt install pipx

pipx install mposcli

To upgrade an existing installation: Just call: pipx upgrade PyHardLinkBackup

Usage e.g.:

cd ~/MicroPythonOS
~/MicroPythonOS$ mposcli run-desktop

CLI

usage: mposcli [-h] {build,cp,cp-app,flash,run,run-desktop,shell,update,update-
submodules,version}



╭─ options ──────────────────────────────────────────────────────────────────────────────╮
│ -h, --help             show this help message and exit                                 │
╰────────────────────────────────────────────────────────────────────────────────────────╯
╭─ subcommands ──────────────────────────────────────────────────────────────────────────╮
│ (required)                                                                             │
│   • build              Build MicroPythonOS by calling: ./scripts/build_mpos.sh         │
│                        <target> see: https://docs.micropythonos.com/os-development/    │
│   • cp                 Copy/update internal_filesystem/lib/mpos files to the device    │
│                        via "mpremote fs cp". Display a file chooser to select which    │
│                        files to copy/update. But can also be used to copy/update all   │
│                        files. see:                                                     │
│                        https://docs.micropythonos.com/architecture/filesystem/         │
│   • cp-app             Copy/update internal_filesystem/apps to the device via          │
│                        "mpremote fs cp". Display a file chooser to select which app to │
│                        copy/update. But can also be used to copy/update all files.     │
│                        see: https://docs.micropythonos.com/os-development/installing-o │
│                        n-esp32/                                                        │
│   • flash              Flash MicroPythonOS to the device. Display a file chooser to    │
│                        select the image to flash. All lvgl_micropython/build/*.bin     │
│                        files will be shown in the file chooser. see: https://docs.micr │
│                        opythonos.com/os-development/installing-on-esp32/               │
│   • run                Run a script via "mpremote run": With optional file selection   │
│                        and retry loop.                                                 │
│   • run-desktop        Run MicroPythonOS on desktop. see: https://docs.micropythonos.c │
│                        om/getting-started/running/#running-on-desktop                  │
│   • shell              Start a REPL shell connected to the device using mpremote.      │
│                        Optional reset before starting the REPL. The goal it to try to  │
│                        get a REPL in a loop until it works.                            │
│   • update             Update MicroPythonOS repository. Assume that there is a         │
│                        "origin" and/or "upstream" remote configured. Will also ask if  │
│                        you want to update the submodules as well, which is             │
│                        recommended.                                                    │
│   • update-submodules  Updates MicroPythonOS git submodules only. Use "mposcli update" │
│                        to update the main repository and optionally the submodules as  │
│                        well. see: https://docs.micropythonos.com/os-development/linux/ │
│                        #optional-updating-the-code                                     │
│   • version            Print version and exit                                          │
╰────────────────────────────────────────────────────────────────────────────────────────╯

mposcli build

usage: mposcli build [-h] [{esp32,esp32-small,esp32s3,unphone,unix,macOS}] [-v]

Build MicroPythonOS by calling: ./scripts/build_mpos.sh <target> see:
https://docs.micropythonos.com/os-development/

╭─ positional arguments ───────────────────────────────────────────────────╮
│ [{esp32,esp32-small,esp32s3,unphone,unix,macOS}]                         │
│                  Target platform to build for. (default: unix)           │
╰──────────────────────────────────────────────────────────────────────────╯
╭─ options ────────────────────────────────────────────────────────────────╮
│ -h, --help       show this help message and exit                         │
│ -v, --verbosity  Verbosity level; e.g.: -v, -vv, -vvv, etc. (repeatable) │
╰──────────────────────────────────────────────────────────────────────────╯

mposcli cp

usage: mposcli cp [-h] [CP OPTIONS]

Copy/update internal_filesystem/lib/mpos files to the device via "mpremote fs cp". Display
a file chooser to select which files to copy/update. But can also be used to copy/update
all files. see: https://docs.micropythonos.com/architecture/filesystem/

╭─ positional arguments ─────────────────────────────────────────────────────────────────╮
│ [{None}|PATH]         Optional file or directory path. (default: None)                 │
╰────────────────────────────────────────────────────────────────────────────────────────╯
╭─ options ──────────────────────────────────────────────────────────────────────────────╮
│ -h, --help            show this help message and exit                                  │
│ --new-file-limit INT  How many of the newest files to show in the file chooser?        │
│                       (default: 10)                                                    │
│ --reset, --no-reset   Reset the device after copy/update? (default: True)              │
│ --repl, --no-repl     After flashing/verify start REPL with mpremote to see the output │
│                       of the device? (default: True)                                   │
│ -v, --verbosity       Verbosity level; e.g.: -v, -vv, -vvv, etc. (repeatable)          │
╰────────────────────────────────────────────────────────────────────────────────────────╯

mposcli cp-app

usage: mposcli cp-app [-h] [--reset | --no-reset] [--repl | --no-repl] [-v]

Copy/update internal_filesystem/apps to the device via "mpremote fs cp". Display a file
chooser to select which app to copy/update. But can also be used to copy/update all files.
see: https://docs.micropythonos.com/os-development/installing-on-esp32/

╭─ options ──────────────────────────────────────────────────────────────────────────────╮
│ -h, --help           show this help message and exit                                   │
│ --reset, --no-reset  Reset the device after copy/update? (default: True)               │
│ --repl, --no-repl    After flashing/verify start REPL with mpremote to see the output  │
│                      of the device? (default: True)                                    │
│ -v, --verbosity      Verbosity level; e.g.: -v, -vv, -vvv, etc. (repeatable)           │
╰────────────────────────────────────────────────────────────────────────────────────────╯

mposcli run

usage: mposcli run [-h] [{None}|PATH] [--new-file-limit INT] [-v]

Run a script via "mpremote run": With optional file selection and retry loop.

╭─ positional arguments ─────────────────────────────────────────────────────────────────╮
│ [{None}|PATH]         Optional file path. If not provided, you can select from the     │
│                       list of the newest modified files in                             │
│                       internal_filesystem/lib/mpos. (default: None)                    │
╰────────────────────────────────────────────────────────────────────────────────────────╯
╭─ options ──────────────────────────────────────────────────────────────────────────────╮
│ -h, --help            show this help message and exit                                  │
│ --new-file-limit INT  How many of the newest files to show in the file chooser?        │
│                       (default: 10)                                                    │
│ -v, --verbosity       Verbosity level; e.g.: -v, -vv, -vvv, etc. (repeatable)          │
╰────────────────────────────────────────────────────────────────────────────────────────╯

mposcli flash

usage: mposcli flash [-h] [FLASH OPTIONS]

Flash MicroPythonOS to the device. Display a file chooser to select the image to flash.
All lvgl_micropython/build/*.bin files will be shown in the file chooser. see:
https://docs.micropythonos.com/os-development/installing-on-esp32/

╭─ options ──────────────────────────────────────────────────────────────────────────────╮
│ -h, --help             show this help message and exit                                 │
│ --port {None}|STR      Port used for esptool and mpremote, e.g.: "/dev/ttyUSB0" or     │
│                        "/dev/ttyACM0" etc. Leave empty for autodetection (default:     │
│                        None)                                                           │
│ --address STR          Address (default: 0x0)                                          │
│ --flash-size STR       Flash Size (default: detect)                                    │
│ --verify, --no-verify  Verify after flashing? (default: True)                          │
│ --repl, --no-repl      After flashing/verify start REPL with mpremote to see the       │
│                        output of the device? (default: True)                           │
│ -v, --verbosity        Verbosity level; e.g.: -v, -vv, -vvv, etc. (repeatable)         │
╰────────────────────────────────────────────────────────────────────────────────────────╯

mposcli run-desktop

usage: mposcli run-desktop [-h] [--heapsize INT] [--script {None}|STR] [--binary
{None}|STR] [-v]

Run MicroPythonOS on desktop. see: https://docs.micropythonos.com/getting-
started/running/#running-on-desktop

╭─ options ──────────────────────────────────────────────────────────────────────────────╮
│ -h, --help           show this help message and exit                                   │
│ --heapsize INT       Heap size in MB (default: 8, same as PSRAM on many ESP32-S3       │
│                      boards) (default: 8)                                              │
│ --script {None}|STR  Script file (.py) or app name to run. If omitted, starts          │
│                      normally. (default: None)                                         │
│ --binary {None}|STR  Optional name of the binary to start. If omitted, shows a file    │
│                      chooser to select one from the lvgl_micropython build directory.  │
│                      (default: None)                                                   │
│ -v, --verbosity      Verbosity level; e.g.: -v, -vv, -vvv, etc. (repeatable)           │
╰────────────────────────────────────────────────────────────────────────────────────────╯

mposcli shell

usage: mposcli shell [-h] [--reset | --no-reset] [-v]

Start a REPL shell connected to the device using mpremote. Optional reset before starting
the REPL. The goal it to try to get a REPL in a loop until it works.

╭─ options ────────────────────────────────────────────────────────────────────────╮
│ -h, --help           show this help message and exit                             │
│ --reset, --no-reset  Reset the device before starting the REPL? (default: False) │
│ -v, --verbosity      Verbosity level; e.g.: -v, -vv, -vvv, etc. (repeatable)     │
╰──────────────────────────────────────────────────────────────────────────────────╯

mposcli update

usage: mposcli update [-h] [UPDATE OPTIONS]

Update MicroPythonOS repository. Assume that there is a "origin" and/or "upstream" remote
configured. Will also ask if you want to update the submodules as well, which is
recommended.

╭─ options ──────────────────────────────────────────────────────────────────────────────╮
│ -h, --help       show this help message and exit                                       │
│ --cleanup, --no-cleanup                                                                │
│                  Cleanup unnecessary files and optimize the local repository, too?     │
│                  (default: True)                                                       │
│ --shallow-clone, --no-shallow-clone                                                    │
│                  Submodules only a shallow clone with --depth=1? (default: True)       │
│ --reset-submodules, --no-reset-submodules                                              │
│                  Drop and recreate all submodules? (Takes a while) (default: False)    │
│ --jobs INT       git submodule update --jobs argument, i.e. how many submodules to     │
│                  update in parallel (default: 16)                                      │
│ -v, --verbosity  Verbosity level; e.g.: -v, -vv, -vvv, etc. (repeatable)               │
╰────────────────────────────────────────────────────────────────────────────────────────╯

mposcli update-submodules

usage: mposcli update-submodules [-h] [UPDATE-SUBMODULES OPTIONS]

Updates MicroPythonOS git submodules only. Use "mposcli update" to update the main
repository and optionally the submodules as well. see: https://docs.micropythonos.com/os-
development/linux/#optional-updating-the-code

╭─ options ──────────────────────────────────────────────────────────────────────────────╮
│ -h, --help       show this help message and exit                                       │
│ --cleanup, --no-cleanup                                                                │
│                  Cleanup unnecessary files and optimize the local repository, too?     │
│                  (default: True)                                                       │
│ --shallow-clone, --no-shallow-clone                                                    │
│                  Submodules only a shallow clone with --depth=1? (default: True)       │
│ --reset-submodules, --no-reset-submodules                                              │
│                  Drop and recreate all submodules? (Takes a while) (default: False)    │
│ --jobs INT       git submodule update --jobs argument, i.e. how many submodules to     │
│                  update in parallel (default: 16)                                      │
│ -v, --verbosity  Verbosity level; e.g.: -v, -vv, -vvv, etc. (repeatable)               │
╰────────────────────────────────────────────────────────────────────────────────────────╯

start development

At least uv is needed. Install e.g.: via pipx:

apt-get install pipx
pipx install uv

Clone the project and just start the CLI help commands. A virtual environment will be created/updated automatically.

~$ git clone https://github.com/jedie/mposcli.git
~$ cd mposcli
~/mposcli$ ./cli.py --help
~/mposcli$ ./dev-cli.py --help
usage: ./dev-cli.py [-h] {coverage,install,lint,mypy,nox,pip-audit,publish,shell-
completion,test,update,update-readme-history,update-test-snapshot-files,version}



╭─ options ──────────────────────────────────────────────────────────────────────────────╮
│ -h, --help     show this help message and exit                                         │
╰────────────────────────────────────────────────────────────────────────────────────────╯
╭─ subcommands ──────────────────────────────────────────────────────────────────────────╮
│ (required)                                                                             │
│   • coverage   Run tests and show coverage report.                                     │
│   • install    Install requirements and 'mposcli' via pip as editable.                 │
│   • lint       Check/fix code style by run: "ruff check --fix"                         │
│   • mypy       Run Mypy (configured in pyproject.toml)                                 │
│   • nox        Run nox                                                                 │
│   • pip-audit  Run pip-audit check against current requirements files                  │
│   • publish    Build and upload this project to PyPi                                   │
│   • shell-completion                                                                   │
│                Setup shell completion for this CLI (Currently only for bash shell)     │
│   • test       Run unittests                                                           │
│   • update     Update dependencies (uv.lock) and git pre-commit hooks                  │
│   • update-readme-history                                                              │
│                Update project history base on git commits/tags in README.md Will be    │
│                exited with 1 if the README.md was updated otherwise with 0.            │
│                                                                                        │
│                Also, callable via e.g.:                                                │
│                    python -m cli_base update-readme-history -v                         │
│   • update-test-snapshot-files                                                         │
│                Update all test snapshot files (by remove and recreate all snapshot     │
│                files)                                                                  │
│   • version    Print version and exit                                                  │
╰────────────────────────────────────────────────────────────────────────────────────────╯

History

  • v0.9.0
    • 2026-06-16 - fix README
    • 2026-06-16 - NEW: "run" command to start a script on the device with retry loop
    • 2026-06-16 - Apply project updates
    • 2026-06-16 - Update requirements
  • v0.8.0
    • 2026-04-08 - Update build targets
    • 2026-04-08 - Enhance git submodule update
    • 2026-04-08 - update requirements
    • 2026-03-31 - Fix local <-> device filesystem mapping
  • v0.7.1
    • 2026-03-24 - Warn if non executeable build found
    • 2026-03-24 - Set log level to WARNING as default
  • v0.7.0
    • 2026-03-24 - Safe diskspace in mposcli update / update-submodules
    • 2026-03-22 - Use "retry loop" for copy, too
Expand older history entries ...
  • v0.6.0
    • 2026-03-21 - NEW: "shell" to start the REPL
  • v0.5.0
    • 2026-03-08 - update README
    • 2026-03-05 - Enhance "cp" command and auto restart "mpremote repl"
    • 2026-03-03 - Refactor "cp" command
    • 2026-03-03 - flash command: use port auto detection as default
  • v0.4.1
    • 2026-02-27 - Use "--force" for pulling submodules to overwrite local changes
  • v0.4.0
    • 2026-02-24 - NEW command: "cp-app" to install/update internal_filesystem/apps
    • 2026-02-24 - Log skipped files
    • 2026-02-23 - Update requirements and fix code style
    • 2026-02-23 - "build" command: target as positional argument
    • 2026-02-23 - Expand "cp" command and allow optional filesystem path
  • v0.3.0
    • 2026-02-18 - Add "update" beside "update-submodules"
    • 2026-02-17 - Update requirements
    • 2026-02-16 - update README
  • v0.2.0
    • 2026-02-16 - New CLI command: "cp" with convenience features.
    • 2026-02-16 - New command: "flash" with file selector
    • 2026-02-16 - Update README.md
  • v0.1.0
    • 2026-02-16 - Add "update-submodules" command
    • 2026-02-16 - Add "build" command
    • 2026-02-16 - CLI command: "run-desktop"
    • 2026-02-16 - first commit

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

mposcli-0.9.0.tar.gz (113.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mposcli-0.9.0-py3-none-any.whl (40.8 kB view details)

Uploaded Python 3

File details

Details for the file mposcli-0.9.0.tar.gz.

File metadata

  • Download URL: mposcli-0.9.0.tar.gz
  • Upload date:
  • Size: 113.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for mposcli-0.9.0.tar.gz
Algorithm Hash digest
SHA256 3e95fc9718eb21404992d6b9702ad68ee40b9e4042f4d8830bcfd650994d188e
MD5 39122fc5a6c364eeb5d8a2ce2f2599d4
BLAKE2b-256 d6b1e4928e56fc90f3116063664fc26c48d203905892c103de469d660cd3df4e

See more details on using hashes here.

File details

Details for the file mposcli-0.9.0-py3-none-any.whl.

File metadata

  • Download URL: mposcli-0.9.0-py3-none-any.whl
  • Upload date:
  • Size: 40.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.0

File hashes

Hashes for mposcli-0.9.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8bff9eac8ba9f2a51e81520762027ebaf08961212c754f11d4a07caed2de7943
MD5 54ab18eda74111587e60e576d295a170
BLAKE2b-256 cc6e5a44f5a375f9f761b9642f92f72330a173667e7008c948c2b79faf19ef7d

See more details on using hashes here.

Supported by

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