Planet Python RSS
218 subscribers
16.7K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
meejah.ca: ShWiM: peer-to-peer terminal sharing

Link: https://meejah.ca/blog/initial-shwim-release

SHell WIth Me combines magic-wormhole and tty-share for e2ee, p2p terminal sharing
Wingware: Wing Python IDE Version 11.0.3 - August 1, 2025

Link: https://wingware.com/news/2025-08-01

Wing Python IDE version 11.0.3 has been released. It improves Python code analysis,
fixes problems debugging Django templates, fixes refactoring when the target file
is in a hidden directory, and mak
Matt Layman: Python and AI workflow with LangGraph

Link: https://www.mattlayman.com/videos/python-and-ai-workflow-with-langgraph/

In this stream, I worked on a personal AI workflow that I’m building using LangGraph. I discussed human-in-the-loop and how to bring a person into the workflow process.
Django Weblog: DSF member of the month - Jake Howard

Link: https://www.djangoproject.com/weblog/2025/aug/03/dsf-member-of-the-month-jake-howard/

For July 2025, we welcome Jake Howard as our DSF member of the month!
Jake actively shares his knowledge through blog posts and community talks. He is part of the Security Team Working Group and he
The Python Coding Stack: Flashy, Fancy Shortcuts Aren't Always Suitable [Python Shorts]

Link: https://www.thepythoncodingstack.com/p/flashy-fancy-shortcuts-arent-always

In the previous post, I talked about Python's or keyword and how it doesn't behave the way you may expect it to. Here's the link to that article if you missed it: Do You Really Know How `or` And `and`
PyCharm

Link:



The Bazel Plugin for IntelliJ IDEA Is Now Generally Available!
After much anticipation, we are finally ready to announce the general availability (GA) of the new Bazel plugin for IntelliJ IDEA, PyCh
Real Python: Quiz: Python Namespace Packages

Link: https://realpython.com/quizzes/python-namespace-package/

In this quiz, you’ll practice your knowledge about Python’s namespace packages.
What are they used for? How do you set up a namespace package? How could you create one before PEP 420? Complete this qu
Real Python: Quiz: Using the "or" Boolean Operator in Python

Link: https://realpython.com/quizzes/python-or-operator/

In this quiz, you’ll test your understanding of the Python or Operator.
You’ll learn how to use it in both Boolean and non-Boolean contexts,
and understand how it can be used to solve programming prob
Real Python: Quiz: Working With Python's Built-in Exceptions

Link: https://realpython.com/quizzes/working-builtin-exceptions/

In this quiz, you’ll revisit Python’s built-in exceptions, exploring their hierarchy and how to handle them gracefully. You’ll practice distinguishing between errors and exceptions, using try...except
Real Python: Quiz: Skip Ahead in Loops With Python's Continue Keyword

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

In this quiz, you’ll test your understanding of
Python’s continue statement.
The continue statement allows you to skip code in a loop for the current iteration,
jumping immediately to the next iterati
Stéphane Wirtel: Relancer l’écriture de mon livre *Introduction à Python 3.13*

Link: https://wirtel.be/post/2025/08/04/relancer-l%C3%A9criture-de-mon-livre-introduction-%C3%A0-python-3.13/

✍️ Écrire (et réécrire) mon livre Introduction à Python 3.13
Quand j’ai commencé mon parcours en tant qu’indépendant, mon objectif était limpide : donner des formations sur Python. Expliquer comment l
Real Python: Quiz: Introduction to Web Scraping With Python

Link: https://realpython.com/quizzes/introduction-to-web-scraping-with-python/

In this quiz, you’ll practice core concepts from Introduction to Web Scraping With Python. You’ll revisit what web scraping is, when to use Beautiful Soup, and how to install and configure your enviro
Real Python: Quiz: Intro to Object-Oriented Programming (OOP) in Python

Link: https://realpython.com/quizzes/intro-object-oriented-programming-oop-python/

In this quiz, you’ll revisit the fundamentals of object-oriented programming (OOP) in Python and how to work with classes, objects, and constructors.

[ Improve Your Python With 🐍 Python Tricks 💌 – Ge
Real Python: Quiz: Build a Scalable Flask Web Project From Scratch

Link: https://realpython.com/quizzes/flask-project/

Are you ready to revisit the essentials of building Flask applications? In this quiz, you’ll practice Flask concepts such as views, blueprints, application factory patterns, and template usage.
Check
Real Python: Quiz: First Steps With LangChain

Link: https://realpython.com/quizzes/first-steps-langchain/

In this quiz, you can test your knowledge on the fundamentals of LangChain, such as creating reusable instructions with prompt templates, LangChain chains, and LangChain’s debug mode.

[ Improve Your
Real Python: Skip Ahead in Loops With Python's Continue Keyword

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

Python’s continue keyword functions as a statement that controls the flow of a loop. It allows you to skip code in a loop for the current iteration and jump immediately to the next one. It’s used excl