Skip to content

Robyn

Robyn is a Super Fast Async Python Web Framework with a Rust runtime.

VitePress
py
from robyn import Robyn

app = Robyn(__file__)

@app.get("/")
async def h(request):
    return "Hello, world!"

app.start(port=8080)

Released under the MIT License.