๐Ÿš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more โ†’
Socket
Book a DemoInstallSign in
Socket

micropython-stubber

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

micropython-stubber

Tooling to create and maintain stubs for MicroPython

1.25.1
PyPI
Maintainers
1

Boost MicroPython productivity in VSCode

pypi version python versions Black Star on GitHub All Contributors

pytest stubber Documentation Status

Open in VSCode

The intellisense and code linting that is so prevalent in modern editors, does not work out-of-the-gate for MicroPython projects. While the language is Python, the modules used are different from CPython , and also different ports have different modules and classes , or the same class with different parameters.

Writing MicroPython code in a modern editor should not need to involve keeping a browser open to check for the exact parameters to read a sensor, light-up a led or send a network request.

Fortunately with some additional configuration and data, it is possible to make the editors understand your flavor of MicroPython, wether you use one of the pre-compiled firmwares, but also if you run a one-off custom firmware version.

demo]

In order to achieve this a few things are needed:

  • Stub files for the native / enabled modules in the firmware using PEP 484 Type Hints
  • Specific configuration of the VSCode Python extensions
  • Specific configuration of Pylint [ Optional ]
  • Suppression of warnings that collide with the MicroPython principals or code optimization.

Please review the documentation on [https://micropython-stubber.readthedocs.io]

With that in place, VSCode will understand MicroPython for the most part, and help you to write code, and catch more errors before deploying it to your board.

Note that the above is not limited to VSCode and pylint, but it happens to be the combination that I use.

A lot of subs have already been generated and are shared on PyPi, github or pre-installed by a tool, so it is quite likely that you can just grab a copy be be productive in a few minutes.

To install the stubs from PyPI

This section describes how to install the stubs from PyPI, and how to use them in your project. If you want to create or maintain stub - please see the next section.

  • Install in a typings folder (recommended) pip install -U micropython-<port>[-<board>]stubs --no-user --target ./typings
  • Install in a venv (after activating) pip install -U micropython-<port>[-<board>]stubs --no-user

Examples:

pip install -U micropython-stm32-stubs

# Install stubs for a specific version.
pip install -U micropython-esp32-stubs==1.20.0.*

# Install stubs for a specific board.
pip install -U micropython-rp2-pico_w-stubs

For more details how to use the stubs please refer to the documentation on RTD

  • The sister-repo MicroPython-stubs contains all stubs I have collected with the help of others, and which can be used directly. That repo also contains examples configuration files that can be easily adopted to your setup.

  • Micropython-stubber uses MPFlash in some of its operations. mpflash was formerly hosted in this repo, but has been moved to its own repo.

Install and basic usage of the stubber tool

pip install micropython-stubber

# go to your working folder 
cd my_stub_folder
mkdir all-stubs

# clone the micropython repo's and switch to a specific version 
stubber clone --add-stubs
stubber switch v1.22.2

# get the document stubs for the current version ( v1.18 )
stubber get-docstubs

# get the frozen stubs for the current version ( v1.18 )
stubber get-frozen

# get the core CPython compatibility stubs from PyPi 
stubber get-core

# Update the fallback stubs
stubber update-fallback

#
ls all-stubs
dir all-stubs

Developing & testing

This is described in more detail in the developing and testing documents in the docs folder.

Branch Main

The name of the default branch has been changed to main. If you have cloned this repo before you main need to adjust the local repro to be aware of this, or create a fresh clone.

To update run the below command:

git branch -m master main                    
git fetch origin
git branch -u origin/main main                      
git remote set-head origin -a

for more info see Renaming a branch

Licensing

MicroPython-Stubber is licensed under the MIT license, and all contributions should follow this LICENSE.

Contributions

Jos Verlinde
Jos Verlinde

๐Ÿ’ป ๐Ÿ”ฌ ๐Ÿค” ๐Ÿ–‹ ๐Ÿ–๏ธ โœ…
Thonny, Python IDE for beginners
Thonny, Python IDE for beginners

๐Ÿค” ๐Ÿ”ฌ
MicroPython
MicroPython

๐Ÿ”ฃ ๐Ÿ–๏ธ
pyright
pyright

๐Ÿ”ง
Boris Lovosevic
Boris Lovosevic

๐Ÿ”ฃ ๐Ÿ–๏ธ
Paul Sokolovsky
Paul Sokolovsky

๐Ÿ”ฃ ๐Ÿ–๏ธ
pycopy
pycopy

๐Ÿ”ฃ ๐Ÿ–๏ธ
Pycom
Pycom

๐Ÿš‡
Braden Mars
Braden Mars

๐Ÿ› ๐Ÿ’ป ๐Ÿ–๏ธ ๐Ÿ“ฆ
James Manners
James Manners

๐Ÿ’ป ๐Ÿ›
Patrick
Patrick

๐Ÿ› ๐Ÿ’ป ๐Ÿ–๏ธ
Paul m. p. P.
Paul m. p. P.

๐Ÿค” ๐Ÿ”ฌ
Edward K. Ream
Edward K. Ream

๐Ÿ”Œ
Daryl Stultz
Daryl Stultz

๐Ÿ–๏ธ
Keeping things together
Keeping things together

๐Ÿ›
vbolshakov
vbolshakov

๐Ÿ› ๐Ÿ–๏ธ
Mauro Riva
Mauro Riva

๐Ÿ“ ๐Ÿ›
MathijsNL
MathijsNL

๐Ÿ›
Callum Jacob Hays
Callum Jacob Hays

๐Ÿ› โœ…
Zoltรกn Vรถrรถs
Zoltรกn Vรถrรถs

๐Ÿ”ฃ
vincent-l-j
vincent-l-j

๐Ÿ“–
Egor Litvinov
Egor Litvinov

๐Ÿ›
Sam Duke
Sam Duke

๐Ÿ’ป
Howard Lovatt
Howard Lovatt

๐Ÿ–๏ธ ๐Ÿ”ฌ
VirtualWolf
VirtualWolf

โœ…
Lukas Kremla
Lukas Kremla

โœ…

This project follows the all-contributors specification. Contributions of any kind welcome!

Keywords

MicroPython

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts