To begin, set up a new environment using your preferred method. If you need it, the FastAPI documentation provides an excellent guide on this process.
Once your environment is set up, you can install the project dependencies using your package manager of choice:
pdm install
# or
uv sync
# or
poetry installFinally, run the FastAPI development server:
fastapi devOpen http://localhost:8000/docs with your browser to see and execute the example endpoint provided by the skeleton project.
You can experiment with changing this endpoint by editing app/http/routers/default.py.
Discover the features and API of Pyrannic by visiting its documentation.
Your feedback and contributions are always welcome, feel free to explore the Pyrannic GitHub repository.