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.
28 lines
519 B
28 lines
519 B
from typing import List
|
|
|
|
from fastapi import FastAPI
|
|
from pydantic import BaseModel
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
class Item(BaseModel):
|
|
name: str
|
|
price: float
|
|
|
|
|
|
class ResponseMessage(BaseModel):
|
|
message: str
|
|
|
|
|
|
@app.post("/items/", response_model=ResponseMessage)
|
|
async def create_item(item: Item):
|
|
return {"message": "item received"}
|
|
|
|
|
|
@app.get("/items/", response_model=List[Item])
|
|
async def get_items():
|
|
return [
|
|
{"name": "Plumbus", "price": 3},
|
|
{"name": "Portal Gun", "price": 9001},
|
|
]
|
|
|