Skip to content

Commit 0eb82a7

Browse files
committed
edits
1 parent 0f81c3a commit 0eb82a7

File tree

1 file changed

+20
-4
lines changed

1 file changed

+20
-4
lines changed

source/integrations/flask-celery-integration.txt

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
.. original URL: https://www.mongodb.com/developer/products/mongodb/python-flask-celery-newsletter/
33

44
======================================
5-
Tutorial: Flask and Celery Integration
5+
Tutorial: Celery and Flask Integration
66
======================================
77

88
.. contents:: On this page
@@ -21,9 +21,25 @@ Tutorial: Flask and Celery Integration
2121
Overview
2222
--------
2323

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/>`__.
2743

2844
Tutorial
2945
--------

0 commit comments

Comments
 (0)