|
1 | | -# RESTful API with Python, FastAPI, Pydantic, SQLAlchemy and Docker |
| 1 | +# CRUD RESTful API Server with Python, SQLAlchemy, FastAPI, and PostgreSQL |
2 | 2 |
|
3 | | -### 1. RESTful API with Python & FastAPI: Access and Refresh Tokens |
| 3 | +This article will teach you how to create a CRUD RESTful API with Python, FastAPI, SQLAlchemy ORM, Pydantic, Alembic, PostgreSQL, and Docker-compose to perform the basic Create/Read/Update/Delete operations against a database. |
4 | 4 |
|
5 | | -[RESTful API with Python & FastAPI: Access and Refresh Tokens](https://codevoweb.com/restful-api-with-python-fastapi-access-and-refresh-tokens) |
| 5 | + |
6 | 6 |
|
7 | | -### 2. RESTful API with Python & FastAPI: Send HTML Emails |
| 7 | +## Topics Covered |
8 | 8 |
|
9 | | -[RESTful API with Python & FastAPI: Send HTML Emails](https://codevoweb.com/restful-api-with-python-fastapi-send-html-emails) |
| 9 | +- Python, FastAPI, PostgreSQL, SQLAlchemy CRUD API Overview |
| 10 | +- Setting up FastAPI and PostgreSQL |
| 11 | + - Building the FastAPI Server |
| 12 | + - Starting the FastAPI Server |
| 13 | +- Setting up Environment Variables in FastAPI |
| 14 | +- Connecting to the PostgreSQL Server |
| 15 | +- Installing the UUID OSSP PostgreSQL Plugin |
| 16 | +- How to Create Database Models with SQLAlchemy |
| 17 | +- Creating Validation Schemas with Pydantic |
| 18 | +- Creating the FastAPI Route Handlers |
| 19 | + - Fetch All Posts Handler |
| 20 | + - Create New Post Handler |
| 21 | + - Update Post Handler |
| 22 | + - Get a Single Post Handler |
| 23 | + - Remove Post Handler |
| 24 | +- Add the Routes to the FastAPI Middleware Stack |
10 | 25 |
|
11 | | -### 3. CRUD RESTful API Server with Python, FastAPI, and PostgreSQL |
| 26 | +Read the entire article here: [https://codevoweb.com/crud-restful-api-server-with-python-fastapi-and-postgresql](https://codevoweb.com/crud-restful-api-server-with-python-fastapi-and-postgresql) |
12 | 27 |
|
13 | | -[CRUD RESTful API Server with Python, FastAPI, and PostgreSQL](https://codevoweb.com/crud-restful-api-server-with-python-fastapi-and-postgresql) |
| 28 | +### 1. RESTful API with Python,SQLAlchemy, & FastAPI: Access and Refresh Tokens |
| 29 | + |
| 30 | +[RESTful API with Python, SQLAlchemy, & FastAPI: Access and Refresh Tokens](https://codevoweb.com/restful-api-with-python-fastapi-access-and-refresh-tokens) |
| 31 | + |
| 32 | +### 2. RESTful API with Python, SQLAlchemy, & FastAPI: Send HTML Emails |
| 33 | + |
| 34 | +[RESTful API with Python, SQLAlchemy & FastAPI: Send HTML Emails](https://codevoweb.com/restful-api-with-python-fastapi-send-html-emails) |
| 35 | + |
| 36 | +### 3. CRUD RESTful API Server with Python, FastAPI, SQLAlchemy, and PostgreSQL |
| 37 | + |
| 38 | +[CRUD RESTful API Server with Python, FastAPI, SQLAlchemy, and PostgreSQL](https://codevoweb.com/crud-restful-api-server-with-python-fastapi-and-postgresql) |
0 commit comments