Skip to content

NexiosAsync Python Web Framework

Nexios is a fast, minimalist Python framework for building async APIs with clean architecture, zero boilerplate, and a Pythonic feel.

Nexios

Getting Started 2.4.0rc1

You can get started using Nexios right away using pip

sh
pip install nexios
nexios new <project_name>
py
from NexiosApp

app = NexiosApp

@app.get("/")
async def index(request, response):

  return {"message" : "Nexios , Fast Async , Minimal"}