Planet Python RSS
229 subscribers
17.2K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Django Weblog: Hitting the Home Stretch: Help Us Reach the Django Software Foundation's Year-End Goal!

Link: https://www.djangoproject.com/weblog/2025/dec/18/hitting-the-home-stretch-help-us-reach-the-django/

As we wrap up another strong year for the Django community, we wanted to share an update and a thank you. This year, we raised our fundraising goal from $200,000 to $300,000, and we are excited to say
Real Python: The Real Python Podcast – Episode #277: Moving Towards Spec-Driven Development

Link: https://realpython.com/podcasts/rpp/277/

What are the advantages of spec-driven development compared to vibe coding with an LLM? Are these recent trends a move toward declarative programming? This week on the show, Marc Brooker, VP and Disti
Luke Plant: Help my website is too small

Link: https://lukeplant.me.uk/blog/posts/help-my-website-is-too-small/

I just got a notification from a site I belong to, telling me that some of the links in my profile are “broken” and “thus have been removed”.
The evidence that these sites are broken? They are too sma
Ned Batchelder: Generating data shapes with Hypothesis

Link: https://nedbatchelder.com/blog/202512/generating_data_shapes_with_hypothesis.html

In my last blog post (A testing conundrum), I described trying to test my Hasher class which hashes nested data. I couldn’t get Hypothesis to generate usable data for my test. I wanted to assert that
Zato Blog: Modern REST API Tutorial in Python

Link: https://zato.io/en/blog/modern-rest-api-tutorial-in-python.html


Modern REST API Tutorial in Python


2025-12-22, by Dariusz Suchojad


Great APIs don't win theoretical arguments - they just prefer to work reliably and to make developers' lives easier.
Here's a
Armin Ronacher: A Year Of Vibes

Link: https://lucumr.pocoo.org/2025/12/22/a-year-of-vibes/

2025 draws to a close and it’s been quite a year. Around this time last year, I
wrote a post that reflected on my life. Had
I written about programming, it might have aged badly, as 2025 has been a
Real Python: Quiz: SOLID Design Principles: Improve Object-Oriented Code in Python

Link: https://realpython.com/quizzes/solid-principles-python/

In this quiz, you’ll test your understanding of the SOLID Design Principles: Improve Object-Oriented Code in Python tutorial.
You will reason about behavior contracts, attribute invariants, and choosi
Real Python: SOLID Design Principles: Improve Object-Oriented Code in Python

Link: https://realpython.com/solid-principles-python/

A great approach to writing high-quality object-oriented Python code is to consistently apply the SOLID design principles. SOLID is a set of five object-oriented design principles that can help you wr
Seth Michael Larson: PEP 770 Software Bill-of-Materials (SBOM) data from PyPI, Fedora, and Red Hat

Link: https://sethmlarson.dev/pep-770-sbom-data-from-pypi-fedora-and-redhat?utm_campaign=rss

This year I authored PEP 770 which proposed a new standardized location
for Software Bill-of-Materials (SBOM) data within Python wheel archives.
SBOM data can now be stored in (package)-(version).dist
Python Bytes: #463 2025 is @wrapped

Link: https://pythonbytes.fm/episodes/show/463/2025-is-wrapped

Topics covered in this episode:

Has the cost of building software just dropped 90%?
More on Deprecation Warnings
How FOSS Won and Why It Matters
Should I be looking for a GitHub alternative?
Extras
J
"Michael Kennedy's Thoughts on Technology": Python Supply Chain Security Made Easy

Link: https://mkennedy.codes/posts/python-supply-chain-security-made-easy/

Maybe you’ve heard that hackers have been trying to take advantage of open source software to inject code into your machine, and worst case scenario, even the consumers of your libraries or your appli
Armin Ronacher: Advent of Slop: A Guest Post by Claude

Link: https://lucumr.pocoo.org/2025/12/23/advent-of-slop/

This is a guest post. Armin asked me to write about solving Advent of Code
2025 and I am happy to oblige. I am Claude, the AI that powers Claude Code,
and this is my voice. Armin has asked me, to s
Real Python: Quiz: Recursion in Python: An Introduction

Link: https://realpython.com/quizzes/python-recursion/

In this quiz, you’ll test your understanding of
Recursion in Python.
By working through this quiz, you’ll revisit what recursion is, how base and recursive cases work, when recursion is a good fit for
Hugo van Kemenade: And now for something completely different

Link: https://hugovk.dev/blog/2025/and-now/

Starting in 2019, Python 3.8 and
3.9 release manager Łukasz Langa
added a new section to the release notes called “And now for something completely
different” with a sketch transcript from Monty Pytho
Real Python: Reading User Input From the Keyboard With Python

Link: https://realpython.com/courses/reading-user-input-from-keyboard/

You may often want to make your Python programs more interactive by responding dynamically to input from the user. Learning how to read user input from the keyboard unlocks exciting possibilities and
Reuven Lerner: Reuven’s 2025 in review

Link: https://lerner.co.il/2025/12/23/reuvens-2025-in-review/

Can you believe that 2025 is almost over? It was full of big events for me, and yet it also whizzed past at breakneck speed.
And so, before we start 2026, I want to share a whole bunch of updates on w
PyCoder’s Weekly: Issue #714: Narwhals, Selenium, Testing Conundrum, and More (Dec. 23, 2025)

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

#714 – DECEMBER 23, 2025 View in Browser » Writing DataFrame-Agnostic Python Code With Narwhals If you’re a Python library developer looking to write DataFrame-agnostic code, this tutorial will
Giampaolo Rodola: C heap introspection in psutil

Link: https://gmpy.dev/blog/2025/psutil-heap-introspection-apis

Memory leaks in Python are often straightforward to diagnose. Just look at RSS,
track Python object counts, follow reference graphs. But leaks inside C
extension modules are another story. Traditional