Planet Python RSS
217 subscribers
16.6K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Talk Python to Me: #512: Building a JIT Compiler for CPython

Link: https://talkpython.fm/episodes/show/512/building-a-jit-compiler-for-cpython

Do you like to dive into the details and intricacies of how Python executes and how we can optimize it? Well, do I have an episode for you. We welcome back Brandt Bucher to give us an update on the up
Armin Ronacher: Tools: Code Is All You Need

Link: https://lucumr.pocoo.org/2025/7/3/tools/

If you've been following me on Twitter, you know I'm not a big fan of MCP right
now. It's not that I dislike the idea; I just haven't found it to work as
advertised. In my view, MCP suffers from two
Mike Driscoll: Python eBook Fourth of July Sale

Link: https://www.blog.pythonlibrary.org/2025/07/03/python-ebook-fourth-of-july-sale/

Happy Fourth of July! I am hosting a sale for the 4th of July weekend, where you can get 25% off most of my books and courses.

Here are the books included in the sale and the direct links with the 25
Real Python: The Real Python Podcast – Episode #256: Solving Problems and Saving Time in Chemistry With Python

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

What motivates someone to learn how to code as a scientist? How do you harness the excitement of solving problems quickly and make the connection to the benefits of coding in your scientific work? Thi
PyPy: PyPy v7.3.20 release

Link: https://www.pypy.org/posts/2025/07/pypy-v7320-release.html

PyPy v7.3.20: release of python 2.7, 3.11
The PyPy team is proud to release version 7.3.20 of PyPy after the previous
release on Feb 26, 2025. The release fixes some subtle bugs in ctypes and
OrderedD
Python Software Foundation: Thinking about running for the PSF Board? Let’s talk!

Link: https://pyfound.blogspot.com/2025/07/thinking-about-running-for-psf-board.html

PSF Board elections are a chance for the community to choose representatives to help the PSF create a vision for and build the future of the Python community. This year, there are 4 seats open on the
Real Python: Free-Threaded Python Unleashed and Other Python News for July 2025

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

Last month was a watershed moment for Python. Python 3.14 beta 3, released mid-June, isn’t just another pre-release. It’s the first build in which the long-awaited free-threaded or “no-GIL” variant is
Python Bytes: #439 That Astral Episode

Link: https://pythonbytes.fm/episodes/show/439/that-astral-episode

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

<ul>
<li><em>* <a href="https://docs.astral.sh/ty?featured_on=pythonbytes">ty documentation site and uv migration guide</a></em>*</li>
<li><em>*
The Python Coding Stack: Python Backstage • Disassembling Python Code Using the `dis` Module

Link: https://www.thepythoncodingstack.com/p/python-disassembling-bytecode-dis-module

You're at the theatre. You're watching an impeccably produced play, and you're stunned at some of the visual effects. "How do they do that?", you're wondering.But you're lucky to have a VIP pass, and
Seth Michael Larson: Setting Discord status from physical GameCube console

Link: https://sethmlarson.dev/setting-discord-status-from-physical-gamecube-console?utm_campaign=rss


Have you ever seen one of your friends playing
a game or listening to music in their Discord “status”? That feature is
called “Rich Presence”.
What if you want to show your Discord friends that you'r
Python Software Foundation: Notice of Python Software Foundation Bylaws Change - Effective July 23, 2025

Link: https://pyfound.blogspot.com/2025/07/notice-of-python-software-foundation.html

This post serves as notice that the Board of the Python Software Foundation has resolved to amend the Bylaws, effective July 23, 2025, to remove a condition of the Bylaws that would prevent the Founda
Python Insider: Python 3.14.0 beta 4 is here!

Link: https://pythoninsider.blogspot.com/2025/07/python-3140-beta-4-is-here.html

It’s the
final 3.14 beta!
https://www.python.org/downloads/release/python-3140b4/
This is a beta preview of Python 3.14
Python 3.14 is still in development. This release, 3.14.0b4, is the
last of four
Real Python: Exploring Protocols in Python

Link: https://realpython.com/courses/exploring-protocols-python/

In Python, a protocol specifies the methods and attributes that a class must implement to be considered of a given type. Protocols are important in Python’s type hint system, which allows for static t
EuroPython: EuroPython 2025: Sponsor Job Postings

Link: https://blog.europython.eu/europython-2025-job-ads/

EuroPython is approaching, and as we prepare for another great edition, we’d like to take a moment to thank our community and sponsors for their continued support. We&aposre also excited to share some
PyCoder’s Weekly: Issue #689: Design Patterns, Signals, TorchAudio, and More (July 8, 2025)

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

#689 – JULY 8, 2025 View in Browser » Design Patterns You Should Unlearn in Python The Gang of Four design patterns specify object oriented solutions to common issues in code, except Python does
Real Python: Quiz: What Is Python's __init__.py For?

Link: https://realpython.com/quizzes/python-init-py/

In this quiz, you’ll test your knowledge of Python’s __init__.py file.
Understanding this file’s role will help you create more organized and reusable Python code.

[ Improve Your Python With 🐍 Python
Real Python: What Is Python's __init__.py For?

Link: https://realpython.com/python-init-py/

Python’s special __init__.py file marks a directory as a regular Python package and allows you to import its modules. This file runs automatically the first time you import its containing package. You