· software
From repetitive FastAPI setups to a modular CLI generator
Problem Statement I’ve been building FastAPI projects in production for a while, and I kept running into the same problem every time I started a new service: -...
Problem Statement I’ve been building FastAPI projects in production for a while, and I kept running into the same problem every time I started a new service: -...
Pytest is already one of the best testing frameworks in Python—but its default output is plain, and sometimes difficult to parse when you’re running a large tes...
Many Django REST Framework projects begin with rapid feature development and no automated test suite. At first this feels productive, but as foreign keys grow,...
The Problem With Most Test Suites
The Problem: Event Loops Are Confusing Here's the thing about async Python: your async/await code needs an event loop to run. That's not optional. And there ar...