pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
356 B
20 lines
356 B
from fastapi import FastAPI
|
|
from pydantic import BaseModel
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
class Item(BaseModel):
|
|
name: str
|
|
description: str
|
|
|
|
|
|
items = [
|
|
{"name": "Foo", "description": "There comes my hero"},
|
|
{"name": "Red", "description": "It's my aeroplane"},
|
|
]
|
|
|
|
|
|
@app.get("/items/", response_model=list[Item])
|
|
async def read_items():
|
|
return items
|
|
|