Planet Python RSS
217 subscribers
16.7K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Hugo van Kemenade: Free-threaded Python on GitHub Actions

Link: https://hugovk.dev/blog/2025/free-threaded-python-on-github-actions/

GitHub Actions now supports experimental free-threaded CPython!
There are three ways to add it to your test matrix:

actions/setup-python: t suffix
actions/setup-uv: t suffix
actions/setup-python: fre
Seth Michael Larson: Don't bring slop to a slop fight

Link: https://sethmlarson.dev/dont-bring-slop-to-a-slop-fight?utm_campaign=rss

Whenever I talk about generative AI slop being sent into
every conceivable communication platform I see a common
suggestion on how to stop the slop from reaching human eyes:
“Just use AI to detect the
Real Python: What Can You Do With Python?

Link: https://realpython.com/courses/what-can-you-do-with-python/

You’ve finished a course or finally made it to the end of a book that teaches you the basics of programming with Python. You’ve learned about variables, lists, tuples, dictionaries, for and while loop
TechBeamers Python: 10 Viral Tips to Learn Python Instantly 🚀

Link: https://techbeamers.com/10-viral-tips-to-learn-python-instantly/

Python is one of the most in-demand programming languages in 2025, powering AI, web development, automation, and more. Whether you’re a complete beginner or looking to sharpen your skills, you don’t n
PyCoder’s Weekly: Issue #674: LangGraph, Marimo, Django Template Components, and More (March 25, 2025)

Link: https://pycoders.com/issues/674

#674 – MARCH 25, 2025 View in Browser » LangGraph: Build Stateful AI Agents in Python LangGraph is a versatile Python library designed for stateful, cyclic, and multi-actor Large Language Model
PyCon: Call for Volunteers: PyCon US Code of Conduct Team

Link: https://pycon.blogspot.com/2025/03/call-for-volunteers-pycon-us-code-of.html

Help us make PyCon US welcoming, fun, and safe!We are looking for volunteers to join the Code of Conduct Team for PyCon US 2025 in Pittsburgh, PA. The Code of Conduct Team supports the PyCon US commun
Python GUIs: Multithreading PySide6 applications with QThreadPool — Run background tasks concurrently without impacting your UI

Link: https://www.pythonguis.com/tutorials/multithreading-pyside6-applications-qthreadpool/

A common problem when building Python GUI applications is the interface "locking up" when attempting to perform long-running background tasks. In this tutorial, we'll cover quick ways to achieve concu
Real Python: Quiz: Python's Instance, Class, and Static Methods Demystified

Link: https://realpython.com/quizzes/instance-class-and-static-methods-demystified/

In this quiz, you’ll test your understanding of Instance, Class, and Static Methods in Python. By working through this quiz, you’ll revisit the differences between these methods and how to use them ef
Real Python: Quiz: Python Set Comprehensions: How and When to Use Them

Link: https://realpython.com/quizzes/python-set-comprehension/

In this quiz, you’ll test your understanding of Python Set Comprehensions: How and When to Use Them.
Set comprehensions are a concise and quick way to create, transform, and filter sets in Python.
The
Real Python: Quiz: GitHub Actions for Python

Link: https://realpython.com/quizzes/github-actions-python/

In this quiz, you’ll test your understanding of Continuous Integration and Deployment for Python With GitHub Actions.
By working through this quiz, you’ll revisit how to use GitHub Actions and workflo
Real Python: Introducing DuckDB

Link: https://realpython.com/python-duckdb/

The DuckDB database provides a seamless way to handle large datasets in Python with Online Analytical Processing (OLAP) optimization. You can create databases, verify data imports, and perform efficie
Python Morsels: Checking whether iterables are equal in Python

Link: https://www.pythonmorsels.com/iterable-equality/

You can check whether iterables contain the same elements in Python with equality checks, type conversions, sets, Counter, or looping helpers.



Table of contents

Simple equality checks
Comparing di
Eli Bendersky: Notes on implementing Attention

Link: https://eli.thegreenplace.net/2025/notes-on-implementing-attention/

Some notes on implementing attention blocks in pure Python +
Numpy. The focus here is on the exact implementation in code, explaining all the
shapes throughout the process. The motivation for why atte
Python Anywhere: innit: a new system image, with Python 3.13 and Ubuntu 22.04

Link: https://blog.pythonanywhere.com/219/

If you signed up for an account on PythonAnywhere after 25 March 2025, you’ll
have Python versions 3.11, 3.12 and 3.13 available. Additionally, the underlying operating system for
your account will b
Armin Ronacher: Rust Any Part 3: Finally we have Upcasts

Link: http://lucumr.pocoo.org/2025/3/27/any-upcast

Three years ago I shared the As-Any Hack on
this blog. That hack is a way on stable rust to get upcasting to
supertraits working in Rust. To refresh your memory, the goal was to make
something like
Test and Code: pytest-html - a plugin that generates HTML reports for test results

Link: https://testandcode.com/episodes/pytest-html-a-plugin-that-generates-html-reports-for-test-results

pytest-html has got to be one of my all time favorite plugins. pytest-html is a plugin for pytest that generates a HTML report for test results. This episode digs into some of the super coolness of py
meejah.ca: Magic Wormhole is What?

Link: https://meejah.ca/blog/what-is-magic-wormhole

Various levels of details regarding a secure peer connection technology
Test and Code: pytest-html - a plugin that generates HTML reports for test results

Link: https://testandcode.com/episodes/pytest-html

pytest-html has got to be one of my all time favorite plugins. pytest-html is a plugin for pytest that generates a HTML report for test results. This episode digs into some of the super coolness of py