Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 847 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 847 Bytes

microdot

Build status codecov

“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