c00b24c9436e1b8f3d4c9bb6f2adfca988902e91
microdot
“The impossibly small web framework for Python and MicroPython”
Microdot is a minimalistic Python web framework inspired by Flask, and designed to run on systems with limited resources such as microcontrollers. It runs on standard Python and on MicroPython.
from microdot import Microdot
app = Microdot()
@app.route('/')
def index(request):
return 'Hello, world!'
app.run()
Resources
Languages
Python
99.2%
Shell
0.6%
Dockerfile
0.2%