Articles by Tag #sqlalchemy

Browse our collection of articles on various topics related to IT technologies. Dive in and explore something new!

Is '__tablename__' Compulsory in SQLAlchemy? Can We Change It?

📌 Is __tablename__ Compulsory in SQLAlchemy? Can We Change It? No, __tablename__ is not...

Learn More 5 0Mar 18

🔌 Building Resilient Database Operations with Async SQLAlchemy + CircuitBreaker

When building production applications, database failures are inevitable. Network issues, high load,...

Learn More 5 0Jul 14

Modularizing SQLAlchemy Models with Mixins and Annotations

Building scalable and maintainable models often requires a modular approach, especially when...

Learn More 2 0Jan 3

Flask-Marshmallow vs. SQLAlchemy's SerializerMixin: Which One Should You Use?

When working with Flask and SQLAlchemy, serialization plays a crucial role in transforming database...

Learn More 1 0Jan 30

🚀 A Better Way to Seed Data Using SQLAlchemy (Async-friendly)

In modern backend projects, especially with FastAPI and async SQLAlchemy, seeding initial data like...

Learn More 0 0Jul 1

ACID Operation in Backend Engineering: Building Data Integrity Like a Pro

When you build a banking app, an e-commerce checkout, or any critical backend system, data integrity...

Learn More 0 0Jul 24

🚀 Evolving My FastAPI Project: Modular Architecture, Testing & MySQL Integration

Over the past few hours, I've been deep into refactoring one of my FastAPI projects with a clear...

Learn More 0 0Jun 30

Mastering SQLAlchemy Migrations: A Comprehensive Guide

Managing database schema changes can be a complex and error-prone process. As your application...

Learn More 0 0Jan 20

🚀 Mastering Unit of Work in SQLAlchemy: Efficient Transactions in 2025

How do you ensure database consistency while keeping your code clean? 🤔 💡 The Unit of Work (UoW)...

Learn More 0 0Mar 17

How to Use SQLAlchemy with Async Support in Flask

Using async with SQLAlchemy Asynchronous programming has become essential for building...

Learn More 0 0Apr 30

Safe Threading with SQLAlchemy in FastAPI

When building FastAPI applications that use SQLAlchemy for data persistence, you often need to...

Learn More 0 0Feb 14