Skip to content

Commit 319f562

Browse files
committed
Ran general code reformatting across the progject.
1 parent 8201cd6 commit 319f562

File tree

172 files changed

+332187
-331357
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

172 files changed

+332187
-331357
lines changed

README.md

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,33 @@ Demo code and other handouts for students of our FastAPI Web Apps course.
66

77
## Course Summary
88

9-
FastAPI has burst on to the Python web scene. In fact, the 2020 PSF developer survey shows FastAPI going from off the radar to the 3rd most popular and fastest growing framework for Python developers. People discovering FastAPI are thrilled with it's toolchain for building APIs. But they wonder if they will need to build a parallel app in Flask or Django for the HTML side of their site.
9+
FastAPI has burst on to the Python web scene. In fact, the 2020 PSF developer survey shows FastAPI going from off the
10+
radar to the 3rd most popular and fastest growing framework for Python developers. People discovering FastAPI are
11+
thrilled with it's toolchain for building APIs. But they wonder if they will need to build a parallel app in Flask or
12+
Django for the HTML side of their site.
1013

11-
This course is here to show you that you do not need a second browser-oriented framework: FastAPI is a fantastic framework for HTML-oriented content and static content. That's what this course is all about. You'll learn to build full web apps with FastAPI, equivalent to what you can do with Flask or Django. And it's an amazing framework with even more features than those older, more established frameworks.
14+
This course is here to show you that you do not need a second browser-oriented framework: FastAPI is a fantastic
15+
framework for HTML-oriented content and static content. That's what this course is all about. You'll learn to build full
16+
web apps with FastAPI, equivalent to what you can do with Flask or Django. And it's an amazing framework with even more
17+
features than those older, more established frameworks.
1218

1319
## What's this course about and how is it different?
1420

15-
There are not many courses out focusing on the FastAPI web framework. But even those that are around focus almost entirely on the API side of FastAPI. While that is useful and interesting, you'll need to answer the question of whether **you need another web framework such as Flask or Django for the web browsers.** The answer is no.
21+
There are not many courses out focusing on the FastAPI web framework. But even those that are around focus almost
22+
entirely on the API side of FastAPI. While that is useful and interesting, you'll need to answer the question of whether
23+
**you need another web framework such as Flask or Django for the web browsers.** The answer is no.
1624

17-
FastAPI is a truly modern framework that allows you to write web apps with dynamic HTML templates just as much as Flask. Throughout this course, you'll see how to use the various features of FastAPI along with a couple external packages to create wonderful Python web apps.
25+
FastAPI is a truly modern framework that allows you to write web apps with dynamic HTML templates just as much as Flask.
26+
Throughout this course, you'll see how to use the various features of FastAPI along with a couple external packages to
27+
create wonderful Python web apps.
1828

19-
As part of the course, we well create a nearly complete clone of pypi.org in FastAPI. We'll learn how to use SQLAlchemy, HTML templates, static files, and even deploy our app to a Linux VM in the cloud.
29+
As part of the course, we well create a nearly complete clone of pypi.org in FastAPI. We'll learn how to use SQLAlchemy,
30+
HTML templates, static files, and even deploy our app to a Linux VM in the cloud.
2031

2132
## What topics are covered
2233

23-
This course covers everything you need to know to develop, run, and deploy full web apps on top of FastAPI. Just some of the topics include:
34+
This course covers everything you need to know to develop, run, and deploy full web apps on top of FastAPI. Just some of
35+
the topics include:
2436

2537
- Building a basic FastAPI application
2638
- Using server-side dynamic HTML templates such as Jinja2 and Chameleon
@@ -38,4 +50,5 @@ See the [course revisions and change log](./revisions.md).
3850

3951
## Take the course
4052

41-
Take the course over at [Talk Python Training today](https://training.talkpython.fm/courses/full-html-web-applications-with-fastapi).
53+
Take the course over
54+
at [Talk Python Training today](https://training.talkpython.fm/courses/full-html-web-applications-with-fastapi).

code/ch4-templates/static/css/account.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ form.account-form > * {
1111
form.account-form h1 {
1212
text-align: center;
1313
}
14+
1415
form.account-form button {
1516
float: right;
1617
}
Lines changed: 7 additions & 1 deletion
Loading

0 commit comments

Comments
 (0)