DEBSOURCES
Skip Quicknav
sources / python-klein / 24.8.0-2 / docs / introduction / codeexamples / helloWorld.py
123456789
from klein import route, run @route("/") def home(request): return "Hello, world!" run("localhost", 8080)