Issue Manager / issue-manager (push) Has been cancelled
Build Docs / changes (push) Has been cancelled
Build Docs / langs (push) Has been cancelled
Build Docs / build-docs (push) Has been cancelled
Build Docs / docs-all-green (push) Has been cancelled
Conflict detector / main (push) Has been cancelled
Test Redistribute / test-redistribute (fastapi) (push) Has been cancelled
Test Redistribute / test-redistribute (fastapi-slim) (push) Has been cancelled
Test Redistribute / test-redistribute-alls-green (push) Has been cancelled
Test / lint (push) Has been cancelled
Test / test (pydantic-v1, 3.10) (push) Has been cancelled
Test / test (pydantic-v1, 3.11) (push) Has been cancelled
Test / test (pydantic-v1, 3.13) (push) Has been cancelled
Test / test (pydantic-v1, 3.8) (push) Has been cancelled
Test / test (pydantic-v1, 3.9) (push) Has been cancelled
Test / test (pydantic-v2, 3.10) (push) Has been cancelled
Test / test (pydantic-v2, 3.11) (push) Has been cancelled
Test / test (pydantic-v2, 3.12) (push) Has been cancelled
Test / test (pydantic-v2, 3.13) (push) Has been cancelled
Test / test (pydantic-v2, 3.14) (push) Has been cancelled
Test / test (pydantic-v2, 3.8) (push) Has been cancelled
Test / test (pydantic-v2, 3.9) (push) Has been cancelled
Test / coverage-combine (push) Has been cancelled
Test / check (push) Has been cancelled
Label Approved / label-approved (push) Has been cancelled
FastAPI People Contributors / job (push) Has been cancelled
FastAPI People Sponsors / job (push) Has been cancelled
Update Topic Repos / topic-repos (push) Has been cancelled
FastAPI People / job (push) Has been cancelled
Test / test (pydantic-v1, 3.12) (push) Has been cancelled
74 lines
1.7 KiB
Python
74 lines
1.7 KiB
Python
from typing import Annotated
|
|
|
|
from fastapi import Depends, FastAPI, HTTPException, Query
|
|
from sqlmodel import Field, Session, SQLModel, create_engine, select
|
|
|
|
|
|
class Hero(SQLModel, table=True):
|
|
id: int | None = Field(default=None, primary_key=True)
|
|
name: str = Field(index=True)
|
|
age: int | None = Field(default=None, index=True)
|
|
secret_name: str
|
|
|
|
|
|
sqlite_file_name = "database.db"
|
|
sqlite_url = f"sqlite:///{sqlite_file_name}"
|
|
|
|
connect_args = {"check_same_thread": False}
|
|
engine = create_engine(sqlite_url, connect_args=connect_args)
|
|
|
|
|
|
def create_db_and_tables():
|
|
SQLModel.metadata.create_all(engine)
|
|
|
|
|
|
def get_session():
|
|
with Session(engine) as session:
|
|
yield session
|
|
|
|
|
|
SessionDep = Annotated[Session, Depends(get_session)]
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.on_event("startup")
|
|
def on_startup():
|
|
create_db_and_tables()
|
|
|
|
|
|
@app.post("/heroes/")
|
|
def create_hero(hero: Hero, session: SessionDep) -> Hero:
|
|
session.add(hero)
|
|
session.commit()
|
|
session.refresh(hero)
|
|
return hero
|
|
|
|
|
|
@app.get("/heroes/")
|
|
def read_heroes(
|
|
session: SessionDep,
|
|
offset: int = 0,
|
|
limit: Annotated[int, Query(le=100)] = 100,
|
|
) -> list[Hero]:
|
|
heroes = session.exec(select(Hero).offset(offset).limit(limit)).all()
|
|
return heroes
|
|
|
|
|
|
@app.get("/heroes/{hero_id}")
|
|
def read_hero(hero_id: int, session: SessionDep) -> Hero:
|
|
hero = session.get(Hero, hero_id)
|
|
if not hero:
|
|
raise HTTPException(status_code=404, detail="Hero not found")
|
|
return hero
|
|
|
|
|
|
@app.delete("/heroes/{hero_id}")
|
|
def delete_hero(hero_id: int, session: SessionDep):
|
|
hero = session.get(Hero, hero_id)
|
|
if not hero:
|
|
raise HTTPException(status_code=404, detail="Hero not found")
|
|
session.delete(hero)
|
|
session.commit()
|
|
return {"ok": True}
|