ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

2,412 results

Related queries

fastapi async

uvicorn

fastapi websocket

fastapi microservices project

fastapi docker

fastapi dependency injection

fastapi middleware

fastapi router

fastapi authentication

Code Collider
15 FastAPI Best Practices For Production

I've curated a list of 15 FastAPI best practices and anti-patterns that every FastAPI developer should know to build ...

12:19
15 FastAPI Best Practices For Production

25,623 views

5 months ago

ArjanCodes
4 Tips for Building a Production-Ready FastAPI Backend

Learn how to design great software in 7 steps: https://arjan.codes/designguide. In this video, I'll talk about 4 things that you ...

27:02
4 Tips for Building a Production-Ready FastAPI Backend

119,720 views

1 year ago

Eric Roby
You're Probably Building FASTAPI Apps WRONG (Clean Architecture)

FastAPI is a fantastic Python web API framework. This video covers how to professional create a FastAPI architecture. FastAPI ...

28:08
You're Probably Building FASTAPI Apps WRONG (Clean Architecture)

87,490 views

8 months ago

TRYEXCEPT
FastAPI Tutorial - Structuring Your Applications

Hello welcome to Try Except. Today I will show you how to structure your FastAPI application using best practices and routers.

11:05
FastAPI Tutorial - Structuring Your Applications

6,842 views

1 year ago

ArjanCodes
Anatomy of a Scalable Python Project (FastAPI)

Learn how to design great software in 7 steps: https://arjan.codes/designguide. In this video, we break down the anatomy of a ...

21:16
Anatomy of a Scalable Python Project (FastAPI)

78,019 views

2 months ago

Code Collider
How FastAPI Handles Requests Behind the Scenes

... fastapi endpoint order of execution fastapi async def blocking io fastapi thread pool vs event loop fastapi best practices for ...

5:09
How FastAPI Handles Requests Behind the Scenes

86,937 views

1 year ago

Tech With Tim
Learn Fast API With This ONE Project

ImageKit is an image and video API plus AI-Powered DAM that we use in this project to handle all of our image and video ...

2:05:44
Learn Fast API With This ONE Project

84,892 views

1 month ago

People also watched

PyCon US
Talk - Anthony Shaw: Write faster Python! Common performance anti patterns

This talk will show small, specific examples of Python code that can be refactored to be faster without compromising on readability.

29:57
Talk - Anthony Shaw: Write faster Python! Common performance anti patterns

33,825 views

3 years ago

Ssali Jonathan
FastAPI Beyond CRUD Full Course - A FastAPI Course

In the "FastAPI Beyond CRUD" course, you'll move beyond the basics and dive into advanced API development with FastAPI.

12:52:55
FastAPI Beyond CRUD Full Course - A FastAPI Course

190,985 views

1 year ago

Python Italia
What does Starlette really do for FastAPI? - Marcelo Trylesinski

What does Starlette really do for FastAPI? - Marcelo Trylesinski - PyCon Italia 2023 FastAPI has been growing a lot lately, but ...

30:36
What does Starlette really do for FastAPI? - Marcelo Trylesinski

6,770 views

2 years ago

CodersArts
Folder Structure for Scalable FastAPI Applications

python #fastapi #flask #django #machinelearning #codersarts Want to build APIs in Python like a pro, even if you're a beginner?

10:33
Folder Structure for Scalable FastAPI Applications

3,591 views

1 year ago

Indently
5 Good Python Habits

Here are 5 good habits you should consider building in Python. ▷ Become job-ready with Python: https://www.indently.io ...

17:35
5 Good Python Habits

1,016,866 views

1 year ago

Evgeny Maksimov
Async in practice: how to achieve concurrency in FastAPI (and what to avoid doing!)

Concurrency can be confusing. Let's dive into how to use async functions and achieve concurrency with FastAPI git repo: ...

40:44
Async in practice: how to achieve concurrency in FastAPI (and what to avoid doing!)

25,973 views

3 years ago

Ssali Jonathan
Testing A FastAPI App With Pytest

In this video, I explore integration testing for FastAPI applications, focusing on using the FastAPI TestClient alongside Pytest.

1:11:50
Testing A FastAPI App With Pytest

4,150 views

8 months ago

Kantan Coding
The 3 Laws of Writing Readable Code

Is your code readable? Or is it difficult to understand? Following these three laws will help you to become the guy that every ...

5:28
The 3 Laws of Writing Readable Code

1,405,713 views

1 year ago

Eric Roby
SQLModel: The Python Library You Didn’t Know You Needed

SQLModel is coming for the throne of Python ORMs.This video covers everything you need to know about SQLModel and how to ...

14:57
SQLModel: The Python Library You Didn’t Know You Needed

18,059 views

1 year ago

Tech With Tim
The Ultimate FastAPI + React Full Stack Project (Deploy This and You’re Set)

In this video, you'll learn how to build a full stack application using FastAPI in Python and JavaScript and React. Now I'll cover ...

3:30:23
The Ultimate FastAPI + React Full Stack Project (Deploy This and You’re Set)

92,893 views

5 months ago

Eric Roby
Dependency Injection Explained Like You’re 5 (with FastAPI Examples)

Learning dependency injection can be hard. In this simple FastAPI tutorial we will go over dependency injection and that Depends ...

13:23
Dependency Injection Explained Like You’re 5 (with FastAPI Examples)

30,229 views

1 year ago

debugverse
5 FastAPI ProTips For Writing Better API

Five quick tips to make your Fast API app work faster and better.

2:11
5 FastAPI ProTips For Writing Better API

504 views

1 year ago

ArjanCodes
Mastering API Testing with FastAPI: Databases, Dependencies, and More!

Review code better and faster with my 3-Factor Framework: https://arjan.codes/diagnosis. In this tutorial, I'll guide you through API ...

24:49
Mastering API Testing with FastAPI: Databases, Dependencies, and More!

99,966 views

2 years ago

PyCon SK
5 Things weve learned building large APIs with FastAPI - Maarten Huijsmans

FastAPI follows the UNIX philosophy of "do one thing, and do it well". By using Starlette and Pydantic, FastAPI provides you with ...

30:45
5 Things weve learned building large APIs with FastAPI - Maarten Huijsmans

8,423 views

3 years ago

EuroPython Conference
Performance tips by the FastAPI Expert — Marcelo Trylesinski

EuroPython 2023 — North Hall on 2023-07-21] https://ep2023.europython.eu/session/performance-tips-by-the-fastapi-expert Is ...

24:59
Performance tips by the FastAPI Expert — Marcelo Trylesinski

13,585 views

2 years ago

Tech With Tim
5 Tips To Organize Python Code

Welcome back to another video! In this video I am going to be sharing with you 5 tips on how you can better organize your code!

12:16
5 Tips To Organize Python Code

313,944 views

3 years ago

Better Stack
Logging in FastAPI Apps / Writing a FastAPI Middleware

This video will demonstrate a logging setup for the FastAPI web framework in Python. It will cover basic config using Python's ...

31:01
Logging in FastAPI Apps / Writing a FastAPI Middleware

38,806 views

2 years ago

InfoWorld
What does the structure of a modern Python project look like?

Python projects that use modern tooling and standards work best when the files in the project repository follow a certain layout.

4:25
What does the structure of a modern Python project look like?

39,630 views

1 year ago

ArjanCodes
SQLModel + FastAPI: Say Goodbye to Repetitive Database Code

Learn how to design great software in 7 steps: https://arjan.codes/designguide. When you develop an API, you might feel like ...

19:50
SQLModel + FastAPI: Say Goodbye to Repetitive Database Code

107,985 views

1 year ago

Hynek Schlawack
My 2025 uv-based Python Project Layout for Production Apps

In 2025, all you need to take a #Python application from a simple script to production is: uv. But, how do you setup your project ...

24:13
My 2025 uv-based Python Project Layout for Production Apps

43,418 views

9 months ago

pixegami
Python FastAPI Tutorial: Build a REST API in 15 Minutes

Learn how to install and build your first app with FastAPI (a high-performance web framework for Python). In this tutorial, you'll ...

15:16
Python FastAPI Tutorial: Build a REST API in 15 Minutes

371,384 views

2 years ago