A very lightweight API framework
Project description
uAPI - A micropython API framework
This project is meant to make programming APIs on micropython supported microcontrollers easier. The general design is inspired by tiangolo/fastapi, one of my favorite python frameworks which I personally use a lot.
If you have any questions, it is recommended to check the examples directory first.
Usage
Generally there are two possibilities to use this framework in your project:
- prebuild (recommended): You can go to the releases page and check for the latest .mpy file. You can simply add this file on your controller and it will be used just as the sourcecode itself.
- source code: You can also add the entire
uAPI/
subdirectory on your controller and develop with it as with any other local module. This is only recommended if you want to experiment on something or contribute to the project.
Features
- Safe typing for headers
Building
The two sections below describe how to build the framework either manually or with Docker.
Manually
First of all make sure you have the latest version of the mpy-cross, the open source micropython cross compiler. For that visit the offical micropython github page.
Then you can simple aggregate all the python files in the uAPI/
subdirectory to a single uAPI.py
file which will be stored in build/
, using the provided script create_single_file.py
.
This file can already be used as your module. It is recommended to use the precompiled version though, reducing the space and also the runtime. Therefore simply use the mpy-cross command after merging the files:
mpy-cross -O[3] ./build/uAPI.py
-O[3]
will indicate mpy-cross to use the highest level of compression, read more about these in the mpy-cross documentation.
Docker(-Compose)
To build using the docker compose simply use, (don't forget to add --build
if running the first time):
docker-compose up uapi-build
If you do not want to run with docker-compose but still want to use docker, you can do so by mounting the directories into the image on run:
docker build . -t uapi-build
docker run \
-v $(pwd)/uAPI:/uAPI \
-v $(pwd)/build:/build \
uapi-build
Contributing
Thank you for your interest in contributing to this project!
Compiling and Testing
To validate whether your changes would compile you can call the micropython unix port from the offical repository.
You can check your compile by:
micropython -X compile-only <your changed file>
TODO TESTING
Formatting
We use black to check our formatting, to use it you can simply install it by (you may need an sudo install to get it as an recognized command in your shell):
(sudo) pip3 install black
You can simply use it as black .
to automatically format the whole project or with the --check --diff
flags to see if black would require you to do any changes without actually writing on your files.
Hooks
You should setup a pre-commit hook on your machine, that handles the format and syntax checks automatically and helps you to keep your worktree clean. Note that not well formatted code (and of course unfunctional one) will not be accepted to the codebase.
git config --local core.hooksPath ./.githooks/
License
This project is licensed under the terms of the MIT license.
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 micropython-uAPI-0.0.1.tar.gz
.
File metadata
- Download URL: micropython-uAPI-0.0.1.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7ae8b90c9bb3b4fe2d3d6d0a3439625bcbfb0a83523b878339dbf3da717f20d6 |
|
MD5 | d078b423366eac73c848084736ddc03c |
|
BLAKE2b-256 | fc589b9dc74280b5010792b27da999ebb3b424ec0173e4998b36843f15549b95 |