@@ -237,7 +237,7 @@ Our application has five routes:
237
237
.. procedure::
238
238
:style: connected
239
239
240
- .. step:: Create Student Route
240
+ .. step:: Create Your Student Route
241
241
242
242
.. code-block:: python
243
243
@@ -268,7 +268,7 @@ Our application has five routes:
268
268
269
269
FastAPI returns an HTTP ``200`` status code by default; but in this instance, a ``201`` created is more appropriate.
270
270
271
- .. step:: Create Read Routes
271
+ .. step:: Create Your Read Routes
272
272
273
273
The application has two read routes: one for viewing all students, and one for viewing an individual student.
274
274
@@ -313,7 +313,7 @@ Our application has five routes:
313
313
314
314
If a document with the specified ``_id`` does not exist, we raise an ``HTTPException`` with a status of ``404``.
315
315
316
- .. step:: Create Update Route
316
+ .. step:: Create Your Update Route
317
317
318
318
.. code-block:: python
319
319
@@ -357,7 +357,7 @@ Our application has five routes:
357
357
358
358
If we get to the end of the function and we have not been able to find a matching document to update or return, then we raise a ``404`` error again.
359
359
360
- .. step:: Create Delete Route
360
+ .. step:: Create Your Delete Route
361
361
362
362
.. code-block:: python
363
363
@@ -380,10 +380,10 @@ More Resources
380
380
381
381
For more information, see the following resources:
382
382
383
- - Full Stack FastAPI App Generator
384
- - `Blog post <https://www.mongodb.com/blog/post/introducing-full-stack-fast-api-app-generator-for-python-developers>`__
385
- - `Github repository <https://github.com/mongodb-labs/full-stack-fastapi-mongodb>`__
386
- - `Introducing the FARM stack (FastAPI, React and MongoDB) blog post <https://developer.mongodb.com/how-to/FARM-Stack-FastAPI-React-MongoDB>`__
387
- - `FastAPI documentation <https://motor.readthedocs.io>`__
388
- - `List of FastAPI Integration Options <https://github.com/mjhea0/awesome-fastapi>`__
389
- - `MongoDB Developer Community <https://community.mongodb.com/>`__
383
+ - Full Stack FastAPI App Generator:
384
+ - `Blog post: Introducing the Full Stack FastAPI App Generator for Python Developers <https://www.mongodb.com/blog/post/introducing-full-stack-fast-api-app-generator-for-python-developers>`__
385
+ - `Github repository: full-stack-fastapi-mongodb <https://github.com/mongodb-labs/full-stack-fastapi-mongodb>`__
386
+ - `Introducing the FARM stack (FastAPI, React and MongoDB) blog post <https://developer.mongodb.com/how-to/FARM-Stack-FastAPI-React-MongoDB>`__
387
+ - `FastAPI documentation <https://motor.readthedocs.io>`__
388
+ - `Third-party FastAPI Integration Options <https://github.com/mjhea0/awesome-fastapi>`__
389
+ - `MongoDB Developer Community <https://community.mongodb.com/>`__
0 commit comments