Ssali Jonathan
Ssali Jonathan
  • Видео 362
  • Просмотров 1 230 232
Dependency Injection, CRUD With SQLAlchemy | Building Performant APIs with Python & Litestar Part #4
In this video, I demonstrate how to use dependency injection in Litestar to share session objects, enabling our API endpoints to perform CRUD operations on the database we built with SQLAlchemy. Additionally, we explore how these sessions can be utilized to execute queries on the database efficiently.
PLEASE DONATE TO THE CHANNEL THROUGH:
BUY ME A COFFEE:
buymeacoffee.com/jod35
PATREON:
www.patreon.com/jod35
You can also consider Becoming a member of this channel.
FOLLOW ME:
X:
x.com/jod35_
GITHUB:
github.com/jod35
Просмотров: 335

Видео

Database Connection and Set Up with SQLAlchemy I Build Performant APIs with Litestar Part #3
Просмотров 23921 день назад
In this video, we build on top of what we built in the previous video to introduce a relational database. We use SQLAlchemy, an SQL toolkit, and ORM for Python. In this video, we go into topics like getting and managing application state, and lifespan events and we also connect and create database models to set up the database. #python #litestar #asgi #sqlalchemy SOURCE CODE: github.com/Daily-h...
Happy 2025 !!! (What happened in 2024 And Thanks)
Просмотров 31028 дней назад
PLEASE DONATE TO THE CHANNEL THROUGH: PATREON: www.patreon.com/jod35 You can also consider Becoming a member of this channel. FOLLOW ME: X: x.com/jod35_ GITHUB: github.com/jod35
Building a simple CRUD API Building Performant APIs with Python and Litestar Part #2
Просмотров 705Месяц назад
In this video, we’ll walk through building a basic CRUD API using the Litestar web framework. We’ll start by setting up routes that map to specific endpoints, then create, read, update, and delete data from a simple list-based database. Along the way, you’ll see how to organize your code with controllers and handle requests cleanly, showcasing how Litestar keeps things straightforward yet power...
Introduction and Project set up | Building Performant APIs with Python & Litestar Part #1
Просмотров 508Месяц назад
In this video, we begin a series of videos in which we shall learn how to build performant APIs with Litestar. Litestar is an opinionated web framework that allows you to build performant REST APIs and other server-side applications on the backend. #python #litestar #asgi SOURCE CODE: github.com/Daily-hobby-projects/Pefomant-APIs-with-Litestar.git PLEASE DONATE TO THE CHANNEL THROUGH: PATREON: ...
Channel Update (Having Burnout, Future Videos and Thanks)
Просмотров 453Месяц назад
PLEASE DONATE TO THE CHANNEL THROUGH: BUY ME A COFFEE: buymeacoffee.com/jod35 PATREON: www.patreon.com/jod35 You can also consider Becoming a member of this channel. FOLLOW ME: X: x.com/jod35_ GITHUB: github.com/jod35
A Conversation With A Machine Learning Engineer At Pycon Uganda 2024 - Wesley Kambale
Просмотров 1,1 тыс.3 месяца назад
The following is my conversation with Wesley Kambale, a machine learning engineer at this year's Pycon Uganda. PLEASE DONATE TO THE CHANNEL THROUGH: BUY ME A COFFEE: buymeacoffee.com/jod35 PATREON: www.patreon.com/jod35 You can also consider Becoming a member of this channel. FOLLOW ME: X: x.com/jod35_ GITHUB: github.com/jod35
10000 Subscribers, Thank you
Просмотров 3533 месяца назад
PLEASE DONATE TO THE CHANNEL THROUGH: BUY ME A COFFEE: buymeacoffee.com/jod35 PATREON: www.patreon.com/jod35 You can also consider Becoming a member of this channel. FOLLOW ME: X: x.com/jod35_ GITHUB: github.com/jod35
FastAPI Beyond CRUD Full Course - A FastAPI Course
Просмотров 68 тыс.5 месяцев назад
In the "FastAPI Beyond CRUD" course, you'll move beyond the basics and dive into advanced API development with FastAPI. This course is perfect for developers who are already comfortable with CRUD operations and are eager to explore the powerful features that FastAPI has to offer. You'll start by learning how to set up a FastAPI project and run a simple web server, before quickly progressing to ...
Deploying FastAPI, PostgreSQL, Celery & Redis on Render - FastAPI Beyond CRUD (Part 23)
Просмотров 1,6 тыс.5 месяцев назад
In this video, we’ll walk through deploying a FastAPI application on Render: This application comprises FastAPI, PostgreSQL, Celery, and Redis. You’ll learn how to set up FastAPI , PostgreSQL for reliable database management, and Redis to enhance Celery as an efficient task queue for background processing. We’ll cover configuration tips, deployment steps, and best practices to ensure a smooth a...
Get Ready For Pycon Uganda 2024 feat @pyconuganda
Просмотров 9615 месяцев назад
Get Ready For Pycon Uganda 2024 feat @pyconuganda
API Testing With Unittest Mock, Pytest & Schemathesis - FastAPI Beyond CRUD (Part 22)
Просмотров 1,4 тыс.5 месяцев назад
API Testing With Unittest Mock, Pytest & Schemathesis - FastAPI Beyond CRUD (Part 22)
API Documentation With Swagger And Redoc - FastAPI Beyond CRUD (Part 21)
Просмотров 1,6 тыс.5 месяцев назад
API Documentation With Swagger And Redoc - FastAPI Beyond CRUD (Part 21)
Background Tasks with FastAPI Background Tasks and Celery + Redis - FastAPI Beyond CRUD (Part 20)
Просмотров 5 тыс.6 месяцев назад
Background Tasks with FastAPI Background Tasks and Celery Redis - FastAPI Beyond CRUD (Part 20)
Handling Password Resets - FastAPI Beyond CRUD (Part 19)
Просмотров 8586 месяцев назад
Handling Password Resets - FastAPI Beyond CRUD (Part 19)
User Account Verification Via Email - FastAPI Beyond CRUD (Part 18)
Просмотров 2,3 тыс.6 месяцев назад
User Account Verification Via Email - FastAPI Beyond CRUD (Part 18)
Middleware, Setting Up Custom Logging And CORS - FastAPI Beyond CRUD (Part 17)
Просмотров 2,2 тыс.6 месяцев назад
Middleware, Setting Up Custom Logging And CORS - FastAPI Beyond CRUD (Part 17)
Error Handling (How to create Custom Error Handlers and Exceptions) - FastAPI Beyond CRUD (Part 16)
Просмотров 1,6 тыс.6 месяцев назад
Error Handling (How to create Custom Error Handlers and Exceptions) - FastAPI Beyond CRUD (Part 16)
More Database And Schema Relationships - FastAPI Beyond CRUD (Part 15)
Просмотров 9306 месяцев назад
More Database And Schema Relationships - FastAPI Beyond CRUD (Part 15)
Model And Schema Relationships (One To Many SQLModel) - FastAPI Beyond CRUD (Part 14)
Просмотров 1,8 тыс.7 месяцев назад
Model And Schema Relationships (One To Many SQLModel) - FastAPI Beyond CRUD (Part 14)
Role-Based Access Control Using Dependency Injection (User Roles) - FastAPI Beyond CRUD (Part 13)
Просмотров 3,5 тыс.7 месяцев назад
Role-Based Access Control Using Dependency Injection (User Roles) - FastAPI Beyond CRUD (Part 13)
JWT Authentication (Revoke Access Tokens Using Redis) - FastAPI Beyond CRUD (Part 12)
Просмотров 1,7 тыс.7 месяцев назад
JWT Authentication (Revoke Access Tokens Using Redis) - FastAPI Beyond CRUD (Part 12)
JWT Authentication (Renew User Access Using Refresh Tokens) - FastAPI Beyond CRUD (Part 11)
Просмотров 2 тыс.7 месяцев назад
JWT Authentication (Renew User Access Using Refresh Tokens) - FastAPI Beyond CRUD (Part 11)
JWT Authentication (Protect Endpoints with HTTP Bearer Auth) - FastAPI Beyond CRUD (Part 10)
Просмотров 2,4 тыс.7 месяцев назад
JWT Authentication (Protect Endpoints with HTTP Bearer Auth) - FastAPI Beyond CRUD (Part 10)
JWT Authentication (Create Access And Refresh Tokens) - FastAPI Beyond CRUD (Part 9)
Просмотров 3 тыс.7 месяцев назад
JWT Authentication (Create Access And Refresh Tokens) - FastAPI Beyond CRUD (Part 9)
User Account Creation (Email & Password) - FastAPI Beyond CRUD (Part 8)
Просмотров 1,6 тыс.7 месяцев назад
User Account Creation (Email & Password) - FastAPI Beyond CRUD (Part 8)
Create a User Authentication Model (Database Migrations With Alembic) - FastAPI Beyond CRUD (Part 7)
Просмотров 2 тыс.7 месяцев назад
Create a User Authentication Model (Database Migrations With Alembic) - FastAPI Beyond CRUD (Part 7)
CRUD With Async SQLModel (An Introduction to Dependency Injection) - FastAPI Beyond CRUD (Part 6)
Просмотров 2,7 тыс.7 месяцев назад
CRUD With Async SQLModel (An Introduction to Dependency Injection) - FastAPI Beyond CRUD (Part 6)
Databases With SQLModel (Connection, Lifespan Events, And Models) - FastAPI Beyond CRUD (Part 5)
Просмотров 4,2 тыс.7 месяцев назад
Databases With SQLModel (Connection, Lifespan Events, And Models) - FastAPI Beyond CRUD (Part 5)
Modular Project Structure With FastAPI Routers - FastAPI Beyond CRUD (Part 4)
Просмотров 3,7 тыс.7 месяцев назад
Modular Project Structure With FastAPI Routers - FastAPI Beyond CRUD (Part 4)