pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
292 B
14 lines
292 B
class MySuperContextManager:
|
|
def __init__(self):
|
|
self.db = DBSession()
|
|
|
|
def __enter__(self):
|
|
return self.db
|
|
|
|
def __exit__(self, exc_type, exc_value, traceback):
|
|
self.db.close()
|
|
|
|
|
|
async def get_db():
|
|
with MySuperContextManager() as db:
|
|
yield db
|
|
|