Quickstart
Install Ignyx via pip:
pip install ignyx
Create a basic app:
from ignyx import Ignyx
app = Ignyx()
@app.get("/")
async def root():
return {"message": "Ignited!"}
if __name__ == "__main__":
app.run(host="0.0.0.0", port=8000)
Once the server is running, open:
http://localhost:8000/scalarfor the modern Scalar API referencehttp://localhost:8000/docsfor Swagger UIhttp://localhost:8000/redocfor ReDochttp://localhost:8000/openapi.jsonfor the raw OpenAPI schema
If you want to paginate list endpoints, see Pagination.