AI Agents with LangGraph in 2026 — A Practical Tutorial

A from-scratch tutorial on building AI agents with LangGraph. Tools, persistent state, conditional routing, human-in-the-loop, and the production patterns most demos skip.

April 28, 2026 · 7 min · 1294 words · Manvendra Rajpoot

GitHub Actions CI/CD for Python Apps

Build a real CI/CD pipeline for Python apps on GitHub Actions: lint, type-check, test with services, multi-version matrix, Docker build/push, and a deploy step that won’t break.

April 28, 2026 · 7 min · 1416 words · Manvendra Rajpoot

Celery and Background Tasks for Python Backends

A practical Celery guide: brokers, workers, idempotent task design, retries with backoff, scheduled jobs, and the production setup that actually scales.

April 28, 2026 · 7 min · 1471 words · Manvendra Rajpoot

Flask in 2026: Quickstart and Honest Recommendations

Flask is still very much alive. Here’s a practical quickstart, the project structure that scales, and an honest take on when Flask is still the right choice in 2026.

April 28, 2026 · 6 min · 1195 words · Manvendra Rajpoot

Docker for Python Developers: A Practical Starter

Practical Docker for Python developers — write Dockerfiles that aren’t huge, use multi-stage builds, set up docker-compose for local dev, and learn the patterns production teams use.

April 28, 2026 · 7 min · 1416 words · Manvendra Rajpoot

Django vs FastAPI: Which One Should You Pick in 2026?

An opinionated, side-by-side comparison of Django and FastAPI covering philosophy, features, performance, and when to pick each (or both).

April 28, 2026 · 6 min · 1276 words · Manvendra Rajpoot

Testing FastAPI Apps: From Pytest to Database Isolation

A practical guide to testing FastAPI: pytest configuration, async HTTP client, transactional database isolation per test, and fixtures for authentication.

April 28, 2026 · 7 min · 1414 words · Manvendra Rajpoot

JWT Authentication in FastAPI: A Complete Walkthrough

An end-to-end JWT auth walkthrough for FastAPI: bcrypt password hashing, access + refresh tokens, dependency-injected current user, and how to avoid common pitfalls.

April 28, 2026 · 8 min · 1516 words · Manvendra Rajpoot

FastAPI + SQLAlchemy + PostgreSQL: A Modern Setup

Build a production-ready FastAPI + SQLAlchemy 2.0 + PostgreSQL stack with async sessions, dependency-injected DB access, and Alembic migrations.

April 28, 2026 · 7 min · 1364 words · Manvendra Rajpoot

Building a REST API with Django REST Framework: A Practical Tutorial

End-to-end DRF tutorial — build a real CRUD API with serializers, viewsets, JWT auth, permissions, filtering, and pagination.

April 28, 2026 · 6 min · 1221 words · Manvendra Rajpoot