Planet Python RSS
217 subscribers
16.7K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Real Python: How to Manage Python Projects With pyproject.toml

Link: https://realpython.com/python-pyproject-toml/

The pyproject.toml file simplifies Python project configuration by unifying package setup, managing dependencies, and streamlining builds. In this tutorial, you’ll learn how it can improve your day-to
Armin Ronacher: Ugly Code and Dumb Things

Link: http://lucumr.pocoo.org/2025/2/20/ugly-code

This week I had a conversation with one of our engineers about “shitty
code” which lead me to sharing with him one of my more unusual
inspirations: Flamework, a
pseudo framework created at Flickr.

Tw
PyBites: NLP Made Easy: How We Prioritize Exercise Improvements with a Few Lines of Code

Link: https://pybit.es/articles/nlp-made-easy-prioritizing-exercise-improvements-in-a-few-loc/

We highly appreciate user feedback for continuous improvement. With hundreds of Bite exercises and thousands of reviews, it’s easy to get overwhelmed by the data though. How do you uncover insights fr
Python Morsels: Multiline strings

Link: https://www.pythonmorsels.com/multi-line-strings/

Need to represent multiple lines of text in Python? Use Python's multi-line string syntax!



Table of contents

A string with line breaks in it
Using string concatenation to build up long strings
Mul
Real Python: The Real Python Podcast – Episode #240: Telling Effective Stories With Your Python Visualizations

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

How do you make compelling visualizations that best convey the story of your data? What methods can you employ within popular Python tools to improve your plots and graphs? This week on the show, Matt
Talk Python to Me: #494: Update on Flet: Python + Flutter UIs

Link: https://talkpython.fm/episodes/show/494/update-on-flet-python-flutter-uis

As Python developers, we're incredibly lucky to have over half a million packages that we can use to build our applications with over at PyPI. However, when it comes to choosing a UI framework, the op
👍1
Real Python: Quiz: How to Use sorted() and .sort() in Python

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

In this quiz, you’ll test your understanding of
sorting in Python.
By working through this quiz, you’ll revisit how to sort various types of data in different data structures, customize the order, and
Django Weblog: Call for Proposals for DjangoCon Africa 2025 is now open!

Link: https://www.djangoproject.com/weblog/2025/feb/24/cfp-for-djangocon-africa-2025-is-now-open/

The call for proposals for DjangoCon Africa 2025 is officially open! 💃🏻 Come be a part of this headline event by submitting a talk.
Submit a proposal for DjangoCon Africa 2025
Why speak at DjangoCon A
Real Python: How to Use sorted() and .sort() in Python

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

Sorting in Python is a fundamental task that you can accomplish using sorted() and .sort(). The sorted() function returns a new sorted list from the elements of any iterable, without modifying the ori
Python Bytes: #421 22 years old

Link: https://pythonbytes.fm/episodes/show/421/22-years-old

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

<ul>
<li><strong><a href="https://github.com/cle-b/httpdbg?featured_on=pythonbytes">httpdbg</a></strong></li>
<li><strong><a href="https://socket
Łukasz Langa: A peek into a possible future of Python in the browser

Link: https://lukasz.langa.pl/f37aa97a-9ea3-4aeb-b6a0-9daeea5a7505/

My Python code was too slow, so I made it faster with Python. For some definition of “Python”.
Talk Python to Me: #495: OSMnx: Python and OpenStreetMap

Link: https://talkpython.fm/episodes/show/495/osmnx-python-and-openstreetmap

On this episode, I’m joined by Dr. Jeff Boeing, an assistant professor at the University of Southern California whose research spans urban planning, spatial analysis, and data science. We explore why
PyPy: Low Overhead Allocation Sampling with VMProf in PyPy's GC

Link: https://www.pypy.org/posts/2025/02/pypy-gc-sampling.html

Introduction
There are many time-based statistical profilers around (like VMProf or py-spy
just to name a few). They allow the user to pick a trade-off between profiling
precision and runtime overhead
PyCoder’s Weekly: Issue #670: pyproject.toml, DuckDB, Flet, and More (Feb. 25, 2025)

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

#670 – FEBRUARY 25, 2025 View in Browser » How to Manage Python Projects With pyproject.toml Learn how to manage Python projects with the pyproject.toml configuration file. In this tutorial, you
Python GUIs: Which Python GUI library should you use? — Comparing the Python GUI libraries available in 2025

Link: https://www.pythonguis.com/faq/which-python-gui-library/

Python is a popular programming used for everything from scripting routine tasks to building websites and performing complex data analysis. While you can accomplish a lot with command line tools, some
👍1
Zato Blog: Automate Microsoft 365 Like a Pro: Skip the OAuth Headaches

Link: https://zato.io/en/blog/automate-microsoft-365-in-python.html


Automate Microsoft 365 Like a Pro: Skip the OAuth Headaches


2025-02-26, by Dariusz Suchojad


Are you tired of fighting with Microsoft 365 APIs and complex authentication flows? This
practical tu
Real Python: Quiz: How to Work With Polars LazyFrames

Link: https://realpython.com/quizzes/polars-lazyframe/

In this quiz, you’ll test your understanding of the techniques covered in
How to Work With Polars LazyFrames.
By working through the questions, you’ll review your understanding of why LazyFrames are a