FastAPI Event Handlers (on_event)
2023. 8. 13. 17:51
개발/FastAPI
FastAPI 에서 애플리케이션이 시작하기 전에 실행하거나 애플리케이션이 종료될 때 event handlers 를 정의할 수 있다. 이벤트 헨들러는 async def 또는 def 로 정의할 수 있다. FastAPI 의 아래의 문서에서 확인할 수 있다. https://fastapi.tiangolo.com/ko/advanced/events/?h=event Lifespan Events - FastAPI FastAPI framework, high performance, easy to learn, fast to code, ready for production fastapi.tiangolo.com FastAPI 의 예제를 살펴보면 다음과 같다. startup event 애플리케이션이 시작되기 전에 실행되는 함수를 ..