2026-01-16 22:01:53 +00:00
2026-01-16 22:01:53 +00:00
2026-01-14 08:39:42 +00:00
2026-01-14 08:39:42 +00:00
2026-01-14 08:43:23 +00:00

SlowAPI

A barely working HTTP server

from slow import App, render

app = App()

@app.GET("/")
def home(request):
    return render("index.html")

import asyncio
if __name__ == "__main__":
    asyncio.run(app.run(host="localhost", port=8080))

Description
A barely working HTTP server
Readme MIT 128 KiB
Languages
Python 100%