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