Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Reedy (0.14 sec)

  1. docs_src/query_params/tutorial005.py

    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/items/{item_id}")
    async def read_user_item(item_id: str, needy: str):
        item = {"item_id": item_id, "needy": needy}
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Mar 26 19:09:53 GMT 2020
    - 192 bytes
    - Viewed (0)
Back to top