Skip to content

A tiny library for building REST APIs with FastAPI like interface.

Notifications You must be signed in to change notification settings

aniketmaurya/tiny-api

Repository files navigation

TinyAPI 🚀

A FastAPI like lean library for building REST APIs.

Created this project as a temporary replacement of FastAPI for Python 3.13 free-threading support.

Example:

from starlette.responses import JSONResponse
import uvicorn
from tiny_api import TinyAPI

app = TinyAPI()

@app.router.get("/")
async def hello(request):
    return JSONResponse({"hello": "world"})

if __name__ == "__main__":
    uvicorn.run(app, host="0.0.0.0", port=8000)

About

A tiny library for building REST APIs with FastAPI like interface.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages