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.
38 lines
805 B
38 lines
805 B
from fastapi import FastAPI
|
|
|
|
description = """
|
|
ChimichangApp API helps you do awesome stuff. 🚀
|
|
|
|
## Items
|
|
|
|
You can **read items**.
|
|
|
|
## Users
|
|
|
|
You will be able to:
|
|
|
|
* **Create users** (_not implemented_).
|
|
* **Read users** (_not implemented_).
|
|
"""
|
|
|
|
app = FastAPI(
|
|
title="ChimichangApp",
|
|
description=description,
|
|
summary="Deadpool's favorite app. Nuff said.",
|
|
version="0.0.1",
|
|
terms_of_service="http://example.com/terms/",
|
|
contact={
|
|
"name": "Deadpoolio the Amazing",
|
|
"url": "http://x-force.example.com/contact/",
|
|
"email": "[email protected]",
|
|
},
|
|
license_info={
|
|
"name": "Apache 2.0",
|
|
"url": "https://www.apache.org/licenses/LICENSE-2.0.html",
|
|
},
|
|
)
|
|
|
|
|
|
@app.get("/items/")
|
|
async def read_items():
|
|
return [{"name": "Katana"}]
|
|
|