#python
Wiki 12
- Armin Ronacher (lucumr.pocoo.org) Armin Ronacher's blog at lucumr.pocoo.org β Flask creator, Sentry co-founder, currently building Pi; long-running posts on Python, infra, and (recently) LLM tooling
- Build Your Own OpenClaw 18-step Python tutorial for building a Claude Code-style coding agent from scratch
- Charles Leifer's Blog Python and database systems engineer at charlesleifer.com; peewee ORM, SQLite/Postgres deep-dives, Redis internals, well-aged opinions
- httpx2 as the blessed httpx fork Michiel Beijen on why his httpxyz fork is yielding to Pydantic's httpx2 fork, the Codeberg-vs-GitHub effect, and what httpx2 already got right
- If AI Writes Your Code, Why Use Python? (Mitchem) Mitchem's case that the Python/TS default broke once agents got good at Rust and Go β what shipped in Q1 2026 and where the argument breaks
- James Bennett Django core contributor, blogger at b-list.org, careful LLM skeptic
- jxnl.co Jason Liu's writing β instructor library author, AI agent workflows, structured output, RAG, knowledge work with coding agents
- Language Choice for Agents The proposed inversion of language-pick economics once agents write most code β strong types, fast check loops, and compiler-error feedback favor Rust/Go over Python/TS
- loopwerk.io Kevin Renskers's personal blog at loopwerk.io β practical write-ups on Python, web dev, and developer tooling, often comparison-shaped
- Python sets and dicts are not O(1) Lemire builds a Python set that takes quadratic time from colliding integers, then shows a plain dict slowing 9x from cache misses alone
- Simon Willison's Weblog Simon Willison's daily blog at simonwillison.net β short link-and-commentary posts on LLMs, datasette, web tooling, and open-source governance
- uv is fantastic, but its package management UX is a mess Kevin Renskers' May 2026 case that uv's day-to-day project maintenance (outdated, upgrade, default version bounds) is behind Poetry and pnpm
Toolbox 25
- ActiveGraph Event-sourced Python agent runtime where the graph is a replayable fold over an append-only log
- agent-skill-linter Lints agent skill bundles for spec compliance and publishing readiness, with auto-fix
- bluetui Terminal Bluetooth manager for Linux that doubles as a Bluetooth HID remote for Smart TVs
- claude-defuddle Claude Code skill turning web pages, videos and papers into clean Obsidian notes
- cli-anything Claude Code plugin that generates a full Python CLI plus SKILL.md for any GUI app's real backend
- Cloud in a Bottle Imbue's open-source personal cloud: rootless sandboxed app containers behind one login, a curated catalog, and a managed tier
- CodeAlmanac A codebase wiki maintained by coding agents β plain markdown in your repo, fed from agent transcripts on a schedule and gardened daily
- commonforms CLI and Python library that detects form fields in a PDF and writes back a fillable version, using the open FFDNet models
- ctx Local SQLite-backed context manager for Claude Code and Codex with workstreams, conversation binding, and branching
- deltafin Runs Kimi K3's 2.8T weights on one Apple Silicon Mac, streaming MXFP4 experts over HTTP to disk
- engrim Local SQLite memory shared across coding agents: typed decision records, FTS5 plus static-embedding recall, per-agent provenance
- feynobg Feyn's background-removal model grown from BiRefNet, plus NoBg, the library used to train and run it
- gallery-dl Command-line downloader for image galleries across hundreds of sites β yt-dlp for pictures
- HARTOS Python AI runtime pitched as an OS β local inference, p2p federation, a closed learning core
- library-skills CLI that finds agent skills bundled inside your dependencies and symlinks them into the project
- manylinux PEP-defined platform tags and old-glibc Docker images for portable Python binary wheels
- MasterHttpRelayVPN Python proxy that fronts HTTPS traffic through a free Google Apps Script relay
- MemPalace Agent memory that keeps conversations verbatim in ChromaDB under a wings-and-rooms hierarchy
- needle 26M-parameter function-calling model distilled from Gemini 3.1 for phones, watches and glasses
- Petals BitTorrent-style distributed LLM inference across volunteer GPUs β working idea, dormant code since 2024
- Pigeon Python library for signed, attenuating capability passes an agent hands a sub-agent instead of its own API key, checked at the tool call
- python-build-standalone Self-contained, relocatable CPython builds that run on any machine of the target architecture
- RomM Self-hosted ROM library manager that scrapes metadata, and plays games in the browser
- tare Claude Code skill and three Python scripts that read local session logs to explain where usage went and why a limit was hit
- vera Language meant to be written by LLMs β no variable names, mandatory contracts, effect rows
Sources 1
- uv is fantastic, but its package management UX is a mess Astral's uv is rightfully celebrated for speed and for collapsing the Python toolchain (venv, pip, pyenv, pip-tools, poetry) into one Rust binary. Day-to-day project maintenance β finding outdatedβ¦