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.
10 lines
250 B
10 lines
250 B
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
fake_items_db = [{"item_name": "Foo"}, {"item_name": "Bar"}, {"item_name": "Baz"}]
|
|
|
|
|
|
@app.get("/items/")
|
|
async def read_item(skip: int = 0, limit: int = 10):
|
|
return fake_items_db[skip : skip + limit]
|
|
|