Tutorial#
This tutorial builds a small blog API with two related models, walking through the
most common FastAPI-Restly patterns. It assumes you have read
Getting Started and installed fastapi-restly[standard]
with the aiosqlite driver.
It comes in two parts:
In Part 1: Generated CRUD we define the models and schemas, then get full CRUD endpoints from a single view class.
In Part 2: Customizing Views we override handlers, add custom routes, and share behaviour with base classes.