Skip to content

EPS-Works/sdk-stubs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 

Repository files navigation

SDK Stubs

This repository contains type stubs for the ArduSimple's micropython SDK, allowing type checkers and IDEs to provide autocompletion, type checking, and better developer experience.

Installation

You can install the stubs directly from GitHub

# Install the stubs
pip install git+https://github.com/eps-works/sdk-stubs.git --target typings

Tip

Use --upgrade and --force-reinstall flags to update typings

Ensure the installed stubs directory is included in your PYTHONPATH or recognized by your IDE.
An easy set up is to configure your pyproject.toml to import typings.

[tool.pyright]
exclude = ["typings"]
extraPaths = ["src", "typings"]

[tool.pylint]
ignore = ["__pycache__", ".venv", "typings"]
init-hook = "import sys; sys.path.append('typings')"

About

Ardusimple SDK stub implementations for micropython

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages