2
2
.. original URL: https://www.mongodb.com/developer/products/mongodb/python-flask-celery-newsletter/
3
3
4
4
======================================
5
- Tutorial: Flask and Celery Integration
5
+ Tutorial: Celery and Flask Integration
6
6
======================================
7
7
8
8
.. contents:: On this page
@@ -21,9 +21,25 @@ Tutorial: Flask and Celery Integration
21
21
Overview
22
22
--------
23
23
24
- In this tutorial, you can build a newsletter platform using Flask, MongoDB, and
25
- Celery. This application allows users to subscribe to newsletters, and
26
- administrators to manage and send batch emails asynchronously.
24
+ In this tutorial, you can learn how to build a newsletter platform using
25
+ MongoDB, Celery and Flask. This application allows users to subscribe to
26
+ newsletters, and administrators to manage and send batch emails asynchronously.
27
+
28
+ Celery
29
+ ~~~~~~
30
+
31
+ Celery is an open-source distributed task queue that makes handling large
32
+ volumes of messages efficiently. It supports asynchronous processing and task
33
+ scheduling. For more information, see the `Celery webpage
34
+ <https://docs.celeryq.dev/en/main/index.html>`__.
35
+
36
+ Flask
37
+ ~~~~~
38
+
39
+ Flask is a lightweight web application framework with built-in configuration and
40
+ convention defaults that provide consistency to developers across projects. For
41
+ more information, see the `Flask webpage
42
+ <https://flask.palletsprojects.com/en/stable/>`__.
27
43
28
44
Tutorial
29
45
--------
0 commit comments