Articles¶
The first place to look when you want to read something worth reading about Python.
This is a curated, community-voted section of articles from across the Python ecosystem. It’s not just an aggregator however, think of it like a high-signal place to keep yourself informed about Python and its ecosystem.
Links to past years’ archives can be found at the bottom of the page.
AsyncIO cruft and reinvention (with Rust) ↗
Now that the GIL (global interpreter lock) is out of the way, running an AsyncIO workload in free-threaded Python becomes a complex ordeal. Additionally, all of the consequences of GIL-first design become baggage. An experimental Rust-backed async multi-threaded runtime called TonIO (a nod to Rust’s own Tokio async runtime) tries to solve post-GIL Python concurrency while keeping mental overhead minimal.
Writing agentic systems in Python ↗
From Python as a non-negotiable foundation all the way to an entire agentic system, this straightforward guide charts out a roadmap for getting hands on experience as an AI first Python engineer.