Skip to content

Commit c58c993

Browse files
committed
Update the readme.md file to reflect the release of the full course.
1 parent 37b0b40 commit c58c993

File tree

2 files changed

+50
-1
lines changed

2 files changed

+50
-1
lines changed

Diff for: README.md

+50-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,52 @@
11
# Modern APIs with FastAPI course
22

3-
Coming November 2020 from Talk Python Training. Sign up to get notified at [talkpython.fm/friends](https://talkpython.fm/friends).
3+
A course from Talk Python Training. Sign up at [**talkpython.fm/fastapi**](https://talkpython.fm/fastapi).
4+
5+
[![](./readme_resources/fastapi-modern.png)](https://talkpython.fm/fastapi)
6+
7+
## Course Summary
8+
9+
FastAPI is one of the most exciting new web frameworks out today. It's exciting because it leverages more of the modern Python language features than any other framework: type hints, async and await, dataclasses, and much more. If you are building an API in Python, you have many choices. But, to us, FastAPI is the clear choice going forward. And this course will teach you everything you need to know to get started. We'll build a realistic API working with live data and deploy that API to a cloud server Linux VM. In fact, you'll even see how to create proper HTML web pages to augment your API all within FastAPI.
10+
11+
## What's this course about and how is it different?
12+
13+
This course is **designed to get you creating new APIs running in the cloud with FastAPIs quickly**. We start off with just a little foundational concepts, then jump right into build our first API with FastAPI.
14+
15+
Then we explore the foundational modern Python features to make sure you're ready to take full advantage of this framework. We'll look at how async and await works in Python, how to build self-validating and describing classes with Pydantic, Python 3's type hints, and other core language concepts.
16+
17+
We round out the course by building a realistic API working with live data. Then we deploy that API using nginx + gunicorn + uvicorn running on Ubuntu in a cloud VM at Digital Ocean.
18+
19+
## What topics are covered
20+
21+
In this course, you will:
22+
23+
- **See how simple working with basic APIs** in FastAPI can be.
24+
- Create API methods that **handle common HTTP verbs** (GET, POST, DELETE, etc)
25+
- **Return JSON data** to API clients
26+
- **Use async and await** to create truly scalable applications
27+
- **Leverage Pydantic** to create required and optional data exchange
28+
- Have FastAPI **automatically validate and convert data types** (e.g. "2021-01-05" to a `datetime`)
29+
- Organize your app using APIRoutes to **properly factor your application** across Python files.
30+
- Return the **most appropriate error response** (e.g. 400 Bad Request) to API clients
31+
- To deploy Python web applications in production-ready configurations on Linux
32+
- Understand why gunicorn and uvicorn should be used together in production
33+
- And lots more
34+
35+
View the [full course outline](https://training.talkpython.fm/courses/getting-started-with-fastapi).
36+
37+
## Who is this course for?
38+
39+
This course is for anyone who wants to build an API with Python as the backend language. If you want your API to rival the speed and features of any major web API framework, this is the course to take.
40+
41+
The **student requirements are quite light for this course**. You'll need Basic Python language knowledge:
42+
43+
- Functions
44+
- Strings
45+
- Variables
46+
- API clients (making a call with requests)
47+
48+
Note: All software used during this course, including editors, Python language, etc., are 100% free and open source. **You won't have to buy anything to take the course**.
49+
50+
## Sound good?
51+
52+
If this sounds like a great course for you, take it over at [**talkpython.fm/fastapi**](https://talkpython.fm/fastapi).

Diff for: readme_resources/fastapi-modern.png

71.7 KB
Loading

0 commit comments

Comments
 (0)