Planet Python RSS
214 subscribers
17K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Real Python: Building UIs in the Terminal With Python Textual

Link: https://realpython.com/courses/building-uis-terminal-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
PyCoder’s Weekly: Issue #707: Python Infrastructure, Concurrency, Django in 2025, and More (Nov. 4, 2025)

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

#707 – NOVEMBER 4, 2025 View in Browser » Michael Kennedy: Managing Your Own Python Infrastructure How do you deploy your Python application without getting locked into an expensive cloud-based
Rodrigo Girão Serrão: A generator, duck typing, and a branchless conditional walk into a bar

Link: https://mathspp.com/blog/a-generator-duck-typing-and-a-branchless-conditional-walk-into-a-bar


A generator, duck typing, and a branchless conditional walk into a bar.
What's your favourite line of Python code?
My friend Aaron is quite a character.
One day, he was giving a talk and said that ev
Python Morsels: __slots__ for optimizing classes

Link: https://www.pythonmorsels.com/__slots__/

Most Python objects store their attributes in a __dict__ dictionary. Modules and classes always use __dict__, but not everything does.



Table of contents

How are class attributes stored by default?
Python Morsels: __slots__ for optimizing classes

Link: https://www.pythonmorsels.com/DELETE_ME___slots__/

Most Python objects store their attributes in a __dict__ dictionary. Modules and classes always use __dict__, but not everything does.



Table of contents

How are class attributes stored by default?