Planet Python RSS
218 subscribers
16.7K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Seth Michael Larson: Post Malone Oreos

Link: https://sethmlarson.dev/post-malone-oreos?utm_campaign=rss

@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}



Apparently I talk about my love for Post Malone's music too much, because I received not
Real Python: Python News Roundup: March 2025

Link: https://realpython.com/python-news-march-2025/

Spring isn’t the only thing in the air—new Python releases are here! Last month, Python’s core development team released versions 3.13.2, 3.12.9, and 3.14.0 alpha 5 of the language. The 3.14.0a5 versi
Django Weblog: Happy International Women's Day! 🎉 💜

Link: https://www.djangoproject.com/weblog/2025/mar/08/happy-international-womens-day/

This International Women's Day, we're celebrating a historic milestone in Django’s journey! 🚀
For the first time ever, Django has women in every leadership position within the project:

2 Django Steer
Python Software Foundation: PSF Distinguished Service Award Granted to Van Lindberg

Link: https://pyfound.blogspot.com/2025/03/dsa-van-lindberg.html

Van Lindberg, a longtime member of the PSF Board, has been recognized with the PSF’s Distinguished Service Award. Van was the co-chair and then Chair of PyCon from 2008-2012, served on the PSF Board f
PyCoder’s Weekly: Issue #672: Binary Data, Tail Calls, Pickles, and More (March 11, 2025)

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

#672 – MARCH 11, 2025 View in Browser » Bytes Objects: Handling Binary Data in Python In this tutorial, you’ll learn about Python’s bytes objects, which help you process low-level binary data. Y
Python Software Foundation: PSF Distinguished Service Award Granted to Thomas Wouters

Link: https://pyfound.blogspot.com/2025/03/dsa-thomas-wouters.html

Thomas Wouters, a longtime member of the PSF Board, has been recognized with the PSF’s Distinguished Service Award. Over the last 25 years, Thomas has been a steady, welcoming presence in the Python c
Real Python: Python Textual: Build Beautiful UIs in the Terminal

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

Have you ever wanted to create an app with an appealing interface that works in the command line? Welcome to Textual, a Python toolkit and framework for creating beautiful, functional text-based user
Python Engineering at Microsoft: New Python Driver for SQL Server and Azure SQL!

Link: https://devblogs.microsoft.com/python/mssql-python-for-sqlserver-alpha-release/

We’re thrilled to announce the alpha release of our new open-source Python driver for Microsoft SQL Server and the Azure SQL family, now available on GitHub: mssql-python.
Built from the ground up, th
TechBeamers Python: Enforcing Unsigned Integers in Python: A Complete Guide

Link: https://techbeamers.com/unsigned-integers-in-python/

Python does not have built-in unsigned integers, unlike C, C++, or Java. This can create problems when: You need strictly non-negative values You are porting code from C/C++ You work with binary da
TechBeamers Python: Python Increment and Decrement Operations – A Comprehensive Guide

Link: https://techbeamers.com/python-increment-and-decrement-operators/

Python provides multiple ways to increment and decrement values, which are commonly used for: Controlling iteration within loops Managing counters in simulations or data processing Adjusting value
Reuven Lerner: My newest course: HOPPy (Hands-on Projects in Python)

Link: https://lerner.co.il/2025/03/13/my-newest-course-hoppy-hands-on-projects-in-python/

Congratulations! You’ve finished a Python course, or even two. You’re now a certified Python programmer.
And yet, when it comes time to start a new Python project, you aren’t sure where to start. The
Django Weblog: Accessibility and inclusivity at FOSDEM 2025

Link: https://www.djangoproject.com/weblog/2025/mar/13/accessibility-and-inclusivity-at-fosdem-2025/



For this year’s FOSDEM conference, our Django accessibility team organized the "Inclusive Web" track. Here’s a recap of how it went!
The idea for the Inclusive Web devroom started at FOSDEM 2024, wh
Python Morsels: Alternatives to Python's "break" statement

Link: https://www.pythonmorsels.com/break-statement-alternatives/

Python's break statement is handy for breaking out of a loop. But break statements can often be replaced by a more readable looping helper function.


Table of contents

Using a containment check inst
Django Weblog: DSF member of the month - Cory Zue

Link: https://www.djangoproject.com/weblog/2025/mar/14/dsf-member-of-the-month-cory-zue/

For March 2025, we welcome Cory Zue (@coryzue.com) as our DSF member of the month!
Cory Zue is a Django developer for many years. He is currently a member of the DSF Social Media Working Group and h
Real Python: The Real Python Podcast – Episode #243: Manage Projects With pyproject.toml & Explore Polars LazyFrames

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

How can you simplify the management of your Python projects with one file? What are the advantages of using LazyFrames in Polars? Christopher Trudeau is back on the show this week, bringing another ba
TestDriven.io: Django Query Optimization - Defer, Only, and Exclude

Link: https://testdriven.io/blog/django-query-optimization/

In this article, we'll look at the differences between Django QuerySet's defer, only, and exclude methods.