Planet Python RSS
216 subscribers
17.1K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Ahmed Bouchefra: The Anatomy of a Scalable Python Project

Link: https://efficientcoder.net/python/the-anatomy-of-a-scalable-python-project/

Ever start a Python project that feels clean and simple, only to have it turn into a tangled mess a few months later? Yeah, I’ve been there more times than I can count.
Today, I want to pull back the
Ahmed Bouchefra: Tired of Pip and Venv? Meet UV, Your New All-in-One Python Tool

Link: https://efficientcoder.net/python/tired-of-pip-and-venv-meet-uv-your-new-all-in-one-python-tool/

Hey there, how’s it going?
Let’s talk about the Python world for a second. If you’ve been around for a while, you know the drill. You start a new project, and the ritual begins: create a directory, se
Python Morsels: Unnecessary parentheses in Python

Link: https://www.pythonmorsels.com/unnecessary-parentheses/

Python's ability to use parentheses for grouping can often confuse new Python users into over-using parentheses in ways that they shouldn't be used.


Table of contents

Parentheses can be used for gr
Seth Michael Larson: Blogrolls are the Best(rolls)

Link: https://sethmlarson.dev/blogrolls-are-the-best-rolls?utm_campaign=rss

Happy 6-year blogiversary to me! 🎉 To celebrate
I want to talk about other peoples’ blogs, more specifically
the magic of “blogrolls”.
Blogrolls are “lists of other sites that you read, are a follower
Python Software Foundation: Python is for everyone: Join in the PSF year-end fundraiser & membership drive!

Link: https://pyfound.blogspot.com/2025/11/python-is-for-everyone-join-in-psf-year.html

The Python Software Foundation (PSF) is the charitable organization behind Python, dedicated to advancing, supporting, and protecting the Python programming language and the community that sustains it
Real Python: The Python Standard REPL: Try Out Code and Ideas Quickly

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

The Python standard REPL (Read-Eval-Print Loop) lets you run code interactively, test ideas, and get instant feedback. You start it by running the python command, which opens an interactive shell incl
Python Engineering at Microsoft: Python in Visual Studio Code – November 2025 Release

Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-november-2025-release/

We’re excited to announce that the November 2025 release of the Python extension for Visual Studio Code is now available!
This release includes the following announcements:

Add Copilot Hover Summarie
Python Bytes: #457 Tapping into HTTP

Link: https://pythonbytes.fm/episodes/show/457/tapping-into-http

<strong>Topics covered in this episode:</strong><br>

<ul>
<li><strong><a href="https://httptap.dev?featured_on=pythonbytes">httptap</a></strong></li>
<li><strong><a href="https://blog.jetbrains.com/
Real Python: The Real Python Podcast – Episode #274: Preparing Data Science Projects for Production

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

How do you prepare your Python data science projects for production? What are the essential tools and techniques to make your code reproducible, organized, and testable? This week on the show, Khuyen
Kay Hayen: Nuitka Release 2.8

Link: https://nuitka.net/posts/nuitka-release-28.html

This is to inform you about the new stable release of Nuitka. It is the extremely compatible Python compiler,
“download now”.
This release adds a ton of new features and corrections.
Bug Fixes

Standa
Ned Batchelder: Why your mock breaks later

Link: https://nedbatchelder.com/blog/202511/why_your_mock_breaks_later.html

In Why your mock doesn’t work I explained this rule of
mocking:Mock where the object is used, not where it’s
defined.That blog post explained why that rule was important: often a mock doesn’t
work at
Real Python: Quiz: How to Serve a Website With FastAPI Using HTML and Jinja2

Link: https://realpython.com/quizzes/fastapi-jinja2-template/

In this quiz, you’ll test your understanding of building dynamic websites with FastAPI and Jinja2 Templates.
By working through this quiz, you’ll revisit how to return HTML with HTMLResponse, serve as
Real Python: How to Serve a Website With FastAPI Using HTML and Jinja2

Link: https://realpython.com/fastapi-jinja2-template/

By the end of this guide, you’ll be able to serve dynamic websites from FastAPI endpoints using Jinja2 templates powered by CSS and JavaScript. By leveraging FastAPI’s HTMLResponse, StaticFiles, and J
Rodrigo Girão Serrão: Floodfill algorithm in Python

Link: https://mathspp.com/blog/floodfill-algorithm-in-python


Learn how to implement and use the floodfill algorithm in Python.
What is the floodfill algorithm?
Click the image below to randomly colour the region you click.
Go ahead, try it!

IMG_WIDTH = 160
IM
Python Bytes: #458 I will install Linux on your computer

Link: https://pythonbytes.fm/episodes/show/458/i-will-install-linux-on-your-computer

<strong>Topics covered in this episode:</strong><br>

<ul>
<li><strong>Possibility of a new website for Django</strong></li>
<li><strong><a href="https://github.com/slaily/aiosqlitepool?featured_on=p