pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
22 lines
381 B
22 lines
381 B
from typing import List
|
|
|
|
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
|
|
|