Files
fastapi/docs/src/query_params/tutorial001.py
2018-12-28 16:10:29 +04:00

11 lines
251 B
Python

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 = 100):
return fake_items_db[skip : skip + limit]