Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Real Python: Python's Format Mini-Language for Tidy Strings

Link: https://realpython.com/python-format-mini-language/

When you’re doing string interpolation in your Python code, you often need to format the interpolated values to meet some formatting requirements. To do this, Python provides what is known as the form
The Python Coding Blog: Why Should Only The Grown-Ups Have Fun With Python?

Link: https://thepythoncodingbook.com/2024/01/31/codetoday-unlimited-coding-in-python-for-teenagers-children/

If you’re reading this, you’re possibly familiar with my Python work for adults. What you may not know is that most of my time over the past 8 years has been devoted to teaching Python to children and
TechBeamers Python: Python Reduce() for Reducing List, String, Tuple With Examples

Link: https://www.techbeamers.com/python-reduce/

The reduce() function in Python is handy for combining or filtering values in a list. It works by repeatedly using a function on pairs of elements, gradually producing a final result. For example, if
Python Engineering at Microsoft: Python in Visual Studio Code – February 2024 Release

Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-february-2024-release/

We’re excited to announce the February 2024 release of the Python and Jupyter extensions for Visual Studio Code!
This release includes the following announcements:

Python debugger extension installed
Real Python: The Real Python Podcast – Episode #190: Great Starting Points for Contributing to Open Source

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

What's it like to sit down for your first developer sprint at a conference? How do you find an appropriate issue to work on as a new open-source contributor? This week on the show, author and software
TechBeamers Python: How to Fetch the List of Popular GitHub Repos

Link: https://www.techbeamers.com/how-to-fetch-the-list-of-popular-github-repos/

Introduction In this guide, we’ll walk you through a straightforward Python script that taps into the GitHub API to fetch the list of popular repositories. We’ll be using the requests module, a handy
TechBeamers Python: Python Pandas Tutorial to Learn Series and DataFrames

Link: https://www.techbeamers.com/python-pandas-series-dataframe/

Python Pandas library is a perfect tool for deep analysis and modification of large data. It provides two basic data structures which are Series and DataFrame with several functions to create, clean,
Talk Python to Me: #447: Parallel Python Apps with Sub Interpreters

Link: https://talkpython.fm/episodes/show/447/parallel-python-apps-with-sub-interpreters

It's an exciting time for the capabilities of Python. We have the Faster CPython initiative going strong, the recent async work, the adoption of typing and on this episode we discuss a new isolation a
Armin Ronacher: Rye: A Vision Continued

Link: http://lucumr.pocoo.org/2024/2/4/rye-a-vision

In April of last year I released Rye to the public.
Rye, both then and now, represents my very personal vision of what an improved
Python packaging and project management solution can look like.
Essen
TechBeamers Python: Pandas Add Row Using Multiple Methods

Link: https://www.techbeamers.com/pandas-add-row/

This tutorial provides a thorough overview of different methods you can use to add a row in Pandas. While using Pandas with Python, we may need to update existing data and add rows in real-time. Hence
TechBeamers Python: Sorting List of Lists in Python Explained With Examples

Link: https://www.techbeamers.com/python-sort-list-of-lists/

Sorting lists of lists in Python presents a challenge when you need to organize structured data with multiple levels. Python’s built-in sorting methods don’t directly handle this complexity. To achiev
TechBeamers Python: Pandas Get Average Of Column Or Mean in Python

Link: https://www.techbeamers.com/pandas-get-column-average-mean/

Welcome to another Python tutorial on Pandas! In this guide, we’ll explore how to get the average of a column using the powerful Pandas library. Pandas is a versatile data manipulation and analysis li
TechBeamers Python: How to Find the List Shape in Python

Link: https://www.techbeamers.com/get-list-shape-in-python/

Welcome to this short tutorial where we’ll explore how to get the list shape in Python. This knowledge becomes essential when working with multi-dimensional data structures, like lists of lists a.k.a.
Fabio Zadrozny: PyDev Debugger and sys.monitoring (PEP 669) -- i.e.: really fast debugging for Python 3.12!

Link: http://pydev.blogspot.com/2024/02/pydev-debugger-and-sysmonitoring-pep.html

The latest release of PyDev (12.0.0) is now available and it brings a really nice speed improvement for those who are already in Python 3.12! -- If you're a LiClipse user, it's now available in LiClip
Python GUIs: QLineEdit — A Text Input Widget

Link: https://www.pythonguis.com/docs/qlineedit-widget/

The QLineEdit class is a versatile tool for single-line text input. The widget facilitates text manipulation by supporting insertion, deletion, selection, and cut-copy-paste operations natively. You c
Real Python: Python News: What's New From January 2024

Link: https://realpython.com/python-news-january-2024/

In January 2024, Python 3.13.0a3 was released! With several exciting features, improvements, and optimizations, this release is the third of six planned alpha releases. During the alpha phase, feature
Python Morsels: TextIOWrapper‽ converting files to strings in Python

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

Every encountered an _io.TextIOWrapper object when you wished you had a string? That's Python's version of a "text file" object!


Table of contents

TextIOWrapper objects are files
_io.TextIOWrapper
TestDriven.io: Django REST Framework and Vue versus Django and HTMX

Link: https://testdriven.io/blog/drf-vue-vs-django-htmx/

This article compares the development experience with Vue and Django REST Framework against HTMX and Django.