Accessing FastAPI Swagger docs offline
how can you access fastapi swagger docs offline
how can you access fastapi swagger docs offline
a CLI tool to check Python package health from PyPI and GitHub
migrating my blog to serving markdown files
If you're using SQLAlchemy with asyncio and asyncpg, running alembic autogenerate might throw a confusing MissingGreenlet error. This article shows you exactly how to solve it.
Externally-managed Python environments, dist-packages vs site-packages, and how modern tools like uv handle package isolation.
How I use Docker containers while developing a FastAPI application with PostgreSQL, using uv as the package manager. I am talking through my current local development setup, including the Dockerfile, docker-compose, and volume mounting for live reload.
SQLAlchemy Core provides an explicit way to define relational schemas and construct SQL using Python. This blog concentrates on the MetaData object and table definitions, looking at how SQLAlchemy Core represents and creates database structures.
Loading and Dealing with Environment Configurations Using Pydantic Settings.
WebSocket connections start as normal HTTP GET requests, and if the HTTP server agrees to upgrade the protocol, the connection switches to a full-duplex, bidirectional channel, abandoning HTTP’s request-response model
Evolving database schema alongside your code with Alembic