This page is about a computer helper called Python.
Python is a way to tell computers what to do.
The page shows the newest tools people love this year.
Some new tools are super fast and clean up messes.
It says try the fast helper named uv first.
Kid mode 🧒
This page is What's Slamming Python Right Now. It is one of the projects Brandon built and put online. The grown-up details are below, tap Grown-up mode to read them the normal way.
What's Slamming Python Right Now
Mid-2026 snapshot of the hottest tools, shifts, and libraries
Built for Brandon, knowledge to Jan 2026, trends stable through June 2026
🔴 Big disruptive shift🟢 Mature, adopt now🟡 Emerging, watch it
Two stories are eating the ecosystem: the Astral Rust-tooling wave, and no-GIL Python going official. Everything else orbits those.
The Astral takeover
🟢
uv retired pip, poetry, pipenv, and virtualenv for new projects. Rust-built, 10 to 100x faster installs, manages Python versions, runs single-file scripts with inline deps via uv run.
🟢
Ruff is one tool replacing flake8 plus black plus isort plus pyupgrade. Default in most fresh repos.
🟡
ty is Astral's Rust type checker, the mypy challenger to watch. Meta's pyrefly plays the same lane. Type checking is having its fast-rewrite moment.
No-GIL is real now
🔴
Free-threaded Python (PEP 703) went from experimental in 3.13 to officially supported in 3.14, shipped October 2025. True parallel threads, no Global Interpreter Lock. Biggest language shift in a decade.
🟡
The experimental JIT (PEP 744) keeps maturing right alongside it.
Data and analytics
🟢
Polars, the Rust-backed DataFrame library, is the real pandas challenger for speed and lazy evaluation.
🟢
DuckDB, an in-process analytical SQL engine, is embedded everywhere and pairs with Polars and Arrow.
🟡
marimo, reactive git-friendly notebooks, coming for Jupyter's lunch.
AI and LLM glue
🟢
Pydantic v2 with its Rust core is the backbone for structured output everywhere.
🟢
PydanticAI, instructor, DSPy for typed and structured LLM work, with people moving off heavyweight LangChain toward lighter glue.
🟢
FastAPI still owns the API layer, with FastHTML and HTMX serving the hypermedia crowd.
The meta-pattern
🔴
Rewrite the hot path in Rust, bind it back to Python via PyO3 and maturin. uv, ruff, ty, polars, and pydantic-core all follow that one template. That formula is where the next slam comes from.
The simple version
🟢
uv is a super-fast helper that grabs all the parts your Python program needs. People love it because it almost never makes you wait.
🟢
Ruff is a tidy-up robot. It checks your code for messes and cleans them in a blink.
🔴
No-GIL Python means Python can finally do many jobs at the exact same time, like having more hands. That used to be against the rules.
🟢
Polars and DuckDB are speedy tools for crunching big piles of numbers fast.
🔴
The big trick is taking the slowest part of Python and rebuilding it in a faster language called Rust, then snapping it back on. That makes everything zoom.
If you adopt one thing this week, make it uv. It collapses your whole toolchain and the switch takes an afternoon.