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
693 B
28 lines
693 B
from fastapi import FastAPI
|
|
|
|
tags_metadata = [
|
|
{
|
|
"name": "users",
|
|
"description": "Operations with users. The **login** logic is also here.",
|
|
},
|
|
{
|
|
"name": "items",
|
|
"description": "Manage items. So _fancy_ they have their own docs.",
|
|
"externalDocs": {
|
|
"description": "Items external docs",
|
|
"url": "https://fastapi.tiangolo.com/",
|
|
},
|
|
},
|
|
]
|
|
|
|
app = FastAPI(openapi_tags=tags_metadata)
|
|
|
|
|
|
@app.get("/users/", tags=["users"])
|
|
async def get_users():
|
|
return [{"name": "Harry"}, {"name": "Ron"}]
|
|
|
|
|
|
@app.get("/items/", tags=["items"])
|
|
async def get_items():
|
|
return [{"name": "wand"}, {"name": "flying broom"}]
|
|
|