Remove code examples for Python 3.8 in `first_steps`

This commit is contained in:
Yurii Motov 2025-12-10 21:37:25 +01:00
parent 5b81a4ba3e
commit c1736a101c
5 changed files with 8 additions and 16 deletions

View File

@ -2,7 +2,7 @@
The simplest FastAPI file could look like this: The simplest FastAPI file could look like this:
{* ../../docs_src/first_steps/tutorial001.py *} {* ../../docs_src/first_steps/tutorial001_py39.py *}
Copy that to a file `main.py`. Copy that to a file `main.py`.
@ -183,7 +183,7 @@ That's it! Now you can access your app at that URL. ✨
### Step 1: import `FastAPI` { #step-1-import-fastapi } ### Step 1: import `FastAPI` { #step-1-import-fastapi }
{* ../../docs_src/first_steps/tutorial001.py hl[1] *} {* ../../docs_src/first_steps/tutorial001_py39.py hl[1] *}
`FastAPI` is a Python class that provides all the functionality for your API. `FastAPI` is a Python class that provides all the functionality for your API.
@ -197,7 +197,7 @@ You can use all the <a href="https://www.starlette.dev/" class="external-link" t
### Step 2: create a `FastAPI` "instance" { #step-2-create-a-fastapi-instance } ### Step 2: create a `FastAPI` "instance" { #step-2-create-a-fastapi-instance }
{* ../../docs_src/first_steps/tutorial001.py hl[3] *} {* ../../docs_src/first_steps/tutorial001_py39.py hl[3] *}
Here the `app` variable will be an "instance" of the class `FastAPI`. Here the `app` variable will be an "instance" of the class `FastAPI`.
@ -266,7 +266,7 @@ We are going to call them "**operations**" too.
#### Define a *path operation decorator* { #define-a-path-operation-decorator } #### Define a *path operation decorator* { #define-a-path-operation-decorator }
{* ../../docs_src/first_steps/tutorial001.py hl[6] *} {* ../../docs_src/first_steps/tutorial001_py39.py hl[6] *}
The `@app.get("/")` tells **FastAPI** that the function right below is in charge of handling requests that go to: The `@app.get("/")` tells **FastAPI** that the function right below is in charge of handling requests that go to:
@ -320,7 +320,7 @@ This is our "**path operation function**":
* **operation**: is `get`. * **operation**: is `get`.
* **function**: is the function below the "decorator" (below `@app.get("/")`). * **function**: is the function below the "decorator" (below `@app.get("/")`).
{* ../../docs_src/first_steps/tutorial001.py hl[7] *} {* ../../docs_src/first_steps/tutorial001_py39.py hl[7] *}
This is a Python function. This is a Python function.
@ -332,7 +332,7 @@ In this case, it is an `async` function.
You could also define it as a normal function instead of `async def`: You could also define it as a normal function instead of `async def`:
{* ../../docs_src/first_steps/tutorial003.py hl[7] *} {* ../../docs_src/first_steps/tutorial003_py39.py hl[7] *}
/// note /// note
@ -342,7 +342,7 @@ If you don't know the difference, check the [Async: *"In a hurry?"*](../async.md
### Step 5: return the content { #step-5-return-the-content } ### Step 5: return the content { #step-5-return-the-content }
{* ../../docs_src/first_steps/tutorial001.py hl[8] *} {* ../../docs_src/first_steps/tutorial001_py39.py hl[8] *}
You can return a `dict`, `list`, singular values as `str`, `int`, etc. You can return a `dict`, `list`, singular values as `str`, `int`, etc.

View File

@ -1,8 +0,0 @@
from fastapi import FastAPI
my_awesome_api = FastAPI()
@my_awesome_api.get("/")
async def root():
return {"message": "Hello World"}

View File

@ -1,7 +1,7 @@
import pytest import pytest
from fastapi.testclient import TestClient from fastapi.testclient import TestClient
from docs_src.first_steps.tutorial001 import app from docs_src.first_steps.tutorial001_py39 import app
client = TestClient(app) client = TestClient(app)