Asynchronous Tasks with FastApi, Celery and SQS

Описание к видео Asynchronous Tasks with FastApi, Celery and SQS

FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.7+ based on standard Python type hints.
When it comes to dealing with background tasks, FastApi already comes with BackgroundTasks which can be used to deal with small async tasks.
But when your application need to deal with heavy background computation and you don't necessarily need it to be run by the same process (for example, you don't need to share memory, variables, etc), Celery can be a tool that you can integrate with FastApi to achieve the goal.

Article Link: https://describly.com/asynchronous-ta...

GitHub Project Link: https://github.com/Describly/fastapi-...

Комментарии

Информация по комментариям в разработке