Browse Source

🎨 [pre-commit.ci] Auto format from pre-commit.com hooks

pull/13253/head
pre-commit-ci[bot] 2 months ago
parent
commit
6840483762
  1. 2
      docs/en/docs/tutorial/sql-databases.md
  2. 12
      docs_src/sql_databases/tutorial001.py
  3. 9
      docs_src/sql_databases/tutorial001_an.py
  4. 11
      docs_src/sql_databases/tutorial001_an_py310.py
  5. 11
      docs_src/sql_databases/tutorial001_an_py39.py
  6. 11
      docs_src/sql_databases/tutorial001_py310.py
  7. 11
      docs_src/sql_databases/tutorial001_py39.py
  8. 11
      docs_src/sql_databases/tutorial002.py
  9. 10
      docs_src/sql_databases/tutorial002_an.py
  10. 10
      docs_src/sql_databases/tutorial002_an_py310.py
  11. 10
      docs_src/sql_databases/tutorial002_an_py39.py
  12. 12
      docs_src/sql_databases/tutorial002_py310.py
  13. 11
      docs_src/sql_databases/tutorial002_py39.py

2
docs/en/docs/tutorial/sql-databases.md

@ -114,7 +114,7 @@ For production you would probably use a migration script that runs before you st
The `@app.on_event("startup")` and `@app.on_event("shutdown")` decorators are **deprecated** as of FastAPI v0.103.0.
Use the <a href="https://fastapi.tiangolo.com/advanced/events/#lifespan" class="external-link" target="_blank">`lifespan`</a> parameter in the `FastAPI` class instead for lifecycle management.
Use the <a href="https://fastapi.tiangolo.com/advanced/events/#lifespan" class="external-link" target="_blank">`lifespan`</a> parameter in the `FastAPI` class instead for lifecycle management.
///

12
docs_src/sql_databases/tutorial001.py

@ -28,16 +28,16 @@ def get_session():
yield session
@asynccontextmanager
async def lifespan(app:FastAPI):
create_db_and_tables() #Startup
yield #Allows app to run
#Shutdown
async def lifespan(app: FastAPI):
create_db_and_tables() # Startup
yield # Allows app to run
# Shutdown
app = FastAPI(lifespan=lifespan)
@app.post("/heroes/")
def create_hero(hero: Hero, session: Session = Depends(get_session)) -> Hero:
session.add(hero)

9
docs_src/sql_databases/tutorial001_an.py

@ -33,14 +33,15 @@ SessionDep = Annotated[Session, Depends(get_session)]
@asynccontextmanager
async def lifespan(app:FastAPI):
create_db_and_tables() #Startup
yield #Allows app to run
#Shutdown
async def lifespan(app: FastAPI):
create_db_and_tables() # Startup
yield # Allows app to run
# Shutdown
app = FastAPI(lifespan=lifespan)
@app.post("/heroes/")
def create_hero(hero: Hero, session: SessionDep) -> Hero:
session.add(hero)

11
docs_src/sql_databases/tutorial001_an_py310.py

@ -30,15 +30,18 @@ def get_session():
SessionDep = Annotated[Session, Depends(get_session)]
@asynccontextmanager
async def lifespan(app:FastAPI):
create_db_and_tables() #Startup
yield #This Allows app to run
async def lifespan(app: FastAPI):
create_db_and_tables() # Startup
yield # This Allows app to run
# Statements below yield are ran after shutdown
#Statements below yield are ran after shutdown
app = FastAPI(lifespan=lifespan)
@app.post("/heroes/")
def create_hero(hero: Hero, session: SessionDep) -> Hero:
session.add(hero)

11
docs_src/sql_databases/tutorial001_an_py39.py

@ -31,15 +31,16 @@ def get_session():
SessionDep = Annotated[Session, Depends(get_session)]
@asynccontextmanager
async def lifespan(app:FastAPI):
create_db_and_tables() #Startup
yield #Allows app to run
#Shutdown
async def lifespan(app: FastAPI):
create_db_and_tables() # Startup
yield # Allows app to run
# Shutdown
app = FastAPI(lifespan=lifespan)
@app.post("/heroes/")
def create_hero(hero: Hero, session: SessionDep) -> Hero:
session.add(hero)

11
docs_src/sql_databases/tutorial001_py310.py

@ -27,15 +27,16 @@ def get_session():
yield session
@asynccontextmanager
async def lifespan(app:FastAPI):
create_db_and_tables() #Startup
yield #Allows app to run
#Shutdown
async def lifespan(app: FastAPI):
create_db_and_tables() # Startup
yield # Allows app to run
# Shutdown
app = FastAPI(lifespan=lifespan)
@app.post("/heroes/")
def create_hero(hero: Hero, session: Session = Depends(get_session)) -> Hero:
session.add(hero)

11
docs_src/sql_databases/tutorial001_py39.py

@ -28,15 +28,16 @@ def get_session():
yield session
@asynccontextmanager
async def lifespan(app:FastAPI):
create_db_and_tables() #Startup
yield #Allows app to run
#Shutdown
async def lifespan(app: FastAPI):
create_db_and_tables() # Startup
yield # Allows app to run
# Shutdown
app = FastAPI(lifespan=lifespan)
@app.post("/heroes/")
def create_hero(hero: Hero, session: Session = Depends(get_session)) -> Hero:
session.add(hero)

11
docs_src/sql_databases/tutorial002.py

@ -45,17 +45,16 @@ def get_session():
yield session
@asynccontextmanager
async def lifespan(app:FastAPI):
create_db_and_tables() #StartUp
yield #Allows app to run
#Shut down
async def lifespan(app: FastAPI):
create_db_and_tables() # StartUp
yield # Allows app to run
# Shut down
app = FastAPI(lifespan=lifespan)
@app.post("/heroes/", response_model=HeroPublic)
def create_hero(hero: HeroCreate, session: Session = Depends(get_session)):
db_hero = Hero.model_validate(hero)

10
docs_src/sql_databases/tutorial002_an.py

@ -50,13 +50,15 @@ SessionDep = Annotated[Session, Depends(get_session)]
@asynccontextmanager
async def lifespan(app:FastAPI):
create_db_and_tables() #Startup
yield #Allows app to run
#Shutdown
async def lifespan(app: FastAPI):
create_db_and_tables() # Startup
yield # Allows app to run
# Shutdown
app = FastAPI(lifespan=lifespan)
@app.post("/heroes/", response_model=HeroPublic)
def create_hero(hero: HeroCreate, session: SessionDep):
db_hero = Hero.model_validate(hero)

10
docs_src/sql_databases/tutorial002_an_py310.py

@ -49,13 +49,15 @@ SessionDep = Annotated[Session, Depends(get_session)]
@asynccontextmanager
async def lifespan(app:FastAPI):
create_db_and_tables() #Startup
yield #Allows app to run
#Shutdown
async def lifespan(app: FastAPI):
create_db_and_tables() # Startup
yield # Allows app to run
# Shutdown
app = FastAPI(lifespan=lifespan)
@app.post("/heroes/", response_model=HeroPublic)
def create_hero(hero: HeroCreate, session: SessionDep):
db_hero = Hero.model_validate(hero)

10
docs_src/sql_databases/tutorial002_an_py39.py

@ -49,13 +49,15 @@ SessionDep = Annotated[Session, Depends(get_session)]
@asynccontextmanager
async def lifespan(app:FastAPI):
create_db_and_tables() #Startup
yield #Allows app to run
#Shutdown
async def lifespan(app: FastAPI):
create_db_and_tables() # Startup
yield # Allows app to run
# Shutdown
app = FastAPI(lifespan=lifespan)
@app.post("/heroes/", response_model=HeroPublic)
def create_hero(hero: HeroCreate, session: SessionDep):
db_hero = Hero.model_validate(hero)

12
docs_src/sql_databases/tutorial002_py310.py

@ -44,16 +44,16 @@ def get_session():
yield session
@asynccontextmanager
async def lifespan(app:FastAPI):
create_db_and_tables() #Startup
yield #Allows app to run
#Shutdown
async def lifespan(app: FastAPI):
create_db_and_tables() # Startup
yield # Allows app to run
# Shutdown
app = FastAPI(lifespan=lifespan)
@app.post("/heroes/", response_model=HeroPublic)
def create_hero(hero: HeroCreate, session: Session = Depends(get_session)):
db_hero = Hero.model_validate(hero)

11
docs_src/sql_databases/tutorial002_py39.py

@ -45,15 +45,16 @@ def get_session():
yield session
@asynccontextmanager
async def lifespan(app:FastAPI):
create_db_and_tables() #Startup
yield #Allows app to run
#Shutdown
async def lifespan(app: FastAPI):
create_db_and_tables() # Startup
yield # Allows app to run
# Shutdown
app = FastAPI(lifespan=lifespan)
@app.post("/heroes/", response_model=HeroPublic)
def create_hero(hero: HeroCreate, session: Session = Depends(get_session)):
db_hero = Hero.model_validate(hero)

Loading…
Cancel
Save