mshuler / microdot

The impossibly small web framework for Python and MicroPython.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

The impossibly small web framework for Python and MicroPython.

License:MIT License


Languages

Language:Python 99.7%Language:Dockerfile 0.2%Language:Shell 0.1%Language:JavaScript 0.0%Language:CSS 0.0%Language:HTML 0.0%