“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()- Change Log
- Documentation
- Legacy (v1)
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
- 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!