“The impossibly small web framework for Python and MicroPython”
Microdot is a minimalistic Python web framework inspired by Flask. Given its small size, it can run on systems with limited resources such as microcontrollers. Both standard Python (CPython) and MicroPython are supported.
from microdot import Microdot
app = Microdot()
@app.route('/')
async def index(request):
return 'Hello, world!'
app.run()The following links are for legacy version 1 of Microdot:
Note that version 1 is no longer maintained, so you should consider migrating to version 2. See the migration notes for help.
The following features are planned for future releases of Microdot, both for MicroPython and CPython:
- Authentication support, similar to Flask-Login for Flask (Added in version 2.1)
- Support for forms encoded in
multipart/form-dataformat (Added in version 2.2) - CSRF protection extension (Added in version 2.5)
- Type hints (Added in version 2.6)
- Pub/sub mini-framework for WebSocket and SSE
- OpenAPI integration, similar to APIFairy for Flask
Do you have other ideas to propose? Let's discuss them!
This project relies on contributions from its users. If you benefit from it please consider making a single or ongoing monetary contribution in one of the following platforms:
Thank you!