Tags
Language
Tags
April 2024
Su Mo Tu We Th Fr Sa
31 1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 1 2 3 4

FastAPI Full Stack Web Development (API + Webapp)

Posted By: ELK1nG
FastAPI Full Stack Web Development (API + Webapp)

FastAPI Full Stack Web Development (API + Webapp)
MP4 | Video: h264, 1280x720 | Audio: AAC, 44100 Hz
Language: English | Size: 1.75 GB | Duration: 3h 27m

This course is a guide to learn FastAPI.

This course is a guide to learn FastAPI. FastAPI documentation is one of the best documentation. This course is for students who love videos as a medium to learn. We will be learning FastAPI with best practices. The Test-Driven Development goat ? will guide our development process. TDD is the way to think of the code before we actually write a piece of code. In this course we will be learning the following core concepts:

Creating APIs : We will implement the below endpoints:
Create Jobs
Retrieve
Update
Delete
List Jobs
User Authentication with basic security
Password will be hashed to provide additional security
We will use JSON Web Tokens to authenticate
Tokens won't be stored in LocalStorage or Cookies
Token will be stored in HttpOnly cookie
Version Control System
We will use GIT as our vcs
Github will be used to host our code
Creating web apps
We will use Jinja Templating Language
We will be working with several forms
Unit Testing
Tests will be written in Pytest
After each testing cycle, the Test database will be cleaned
Test Coverage
How not to write unit tests?
Permissions : A user who has not created the job, won't be able to delete it.
We will work with Postgres and monitor it using PgAdmin.
Fastapi provides us built-in OpenAPI docs, we will use the documentation to the fullest. The docs helps backend and frontend developers collaborate easily with each other.