<summary>Or use <code>async def</code>...</summary>
Or if your code uses `async` / `await`, use `async def`:
If your code uses `async` / `await`, use `async def`:
```Python hl_lines="6"
```Python hl_lines="7 12"
from fastapi import FastAPI
app = FastAPI()
@app.get('/')
@app.get("/")
async def read_root():
return {'hello': 'world'}
return {"Hello": "World"}
@app.get("/items/{item_id}")
async def read_item(item_id: int, q: str = None):
return {"item_id": item_id, "q": q}
```
!!! note
If you don't know, check the _"In a hurry?"_ section about <ahref="https://fastapi.tiangolo.com/async/#in-a-hurry"target="_blank">`async` and `await` in the docs</a>.
**Note**:
If you don't know, check the _"In a hurry?"_ section about <ahref="https://fastapi.tiangolo.com/async/#in-a-hurry"target="_blank">`async` and `await` in the docs</a>.
</details>
* Run the server with:
@ -99,23 +115,34 @@ async def read_root():
uvicorn main:app --debug
```
!!! note
The command `uvicorn main:app` refers to:
<detailsmarkdown="1">
<summary>About the command <code>uvicorn main:app --debug</code>...</summary>
The command `uvicorn main:app` refers to:
* `main`: the file `main.py` (the Python "module").
* `app`: the object created inside of `main.py` with the line `app = FastAPI()`.
* `--debug`: make the server restart after code changes. Only do this for development.
* `main`: the file `main.py` (the Python "module").
* `app`: the object created inside of `main.py` with the line `app = FastAPI()`.
* `--debug`: make the server restart after code changes. Only do this for development.
</details>
### Check it
Open your browser at <ahref="http://127.0.0.1:8000"target="_blank">http://127.0.0.1:8000</a>.
Open your browser at <ahref="http://127.0.0.1:8000/items/5?q=somequery"target="_blank">http://127.0.0.1:8000/items/5?q=somequery</a>.
You will see the JSON response as:
```JSON
{"hello": "world"}
{"item_id": 5, "q": "somequery"}
```
You already created an API that:
* Receives HTTP requests in the _paths_`/` and `/items/{item_id}`.
* Both _paths_ take `GET`<abbrtitle="also known as HTTP methods"><em>operations</em></abbr>.
* The _path_`/items/{item_id}` has a _path parameter_`item_id` that should be an `int`.
* The _path_`/items/{item_id}` has an optional _query parameter_`q` that is a `str`.
### Interactive API docs
Now go to <ahref="http://127.0.0.1:8000/docs"target="_blank">http://127.0.0.1:8000/docs</a>.
@ -135,14 +162,12 @@ You will see the alternative automatic documentation (provided by <a href="https
## Example upgrade
Now modify the file `main.py` to include:
Now modify the file `main.py` to recive a body from a `PUT` request.
* a path parameter `item_id`.
* a body, declared using standard Python types (thanks to Pydantic).
* an optional query parameter `q`.
Declare the body using standard Python types, thanks to Pydantic.