Planet Python RSS
214 subscribers
17.1K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Twisted Matrix Labs: Twisted 21.7.0 Released

Link: http://feedproxy.google.com/~r/TwistedMatrixLaboratories/~3/1Nm8cLWnl2A/behalf-of-twisted-contributors-i.html

 On behalf of the Twisted contributors I announce the final release of Twisted 21.7.0This is mostly a bugfix release.Python 3.5 is no longer a supported platform.The minimum supported platform is Pyth
Python for Beginners: Convert a List to String in Python

Link: https://www.pythonforbeginners.com/basics/convert-a-list-to-string-in-python

Python strings are one of the most commonly used data types. Whereas, Python lists are the most commonly used data structures. In this article, we will try to convert a list to a string using differen
Python Software Foundation: Python Software Foundation Fellow Members for Q2 2021

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/1_DITBV7SCk/python-software-foundation-fellow.html

The PSF is pleased to announced its second batch of PSF Fellows for 2021! Let us welcome the new PSF Fellows for Q2! The following people continue to do amazing things for the Python community:Cheuk T
Real Python: The Real Python Podcast – Episode #71: Start Using a Debugger With Your Python Code

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

Are you still sprinkling print statements throughout your code while writing it? Print statements are often clunky and offer only a limited view of the state of your code. Have you thought there must
Stack Abuse: How to Join/Concatenate/Append Strings in Python

Link: https://stackabuse.com/how-to-join-concatenate-append-strings-in-python

Introduction
In this short tutorial, we'll take a look at how to concatenate strings in Python, through a few different approaches.
It's worth noting that strings in Python are immutable - a string ob
Mike Driscoll: Pre-Order Automating Excel with Python

Link: https://www.blog.pythonlibrary.org/2021/07/30/pre-order-automating-excel-with-python/

My 10th Python book is called Automating Excel with Python: Processing Spreadsheets with OpenPyXL. It only has 11 more days to go on Kickstarter where you can get an exclusive t-shirt!
I also have the
Talk Python to Me: #327: Little Automation Tools in Python

Link: https://talkpython.fm/episodes/show/327/little-automation-tools-in-python

You've heard me talk to wide cast of people building amazing things with Python. Some of them are building bio-reactors to remove carbon from the air with AI and Python. Others are optimizing aerodyna
Python Bytes: #244 vendorizing your Python podcast

Link: https://pythonbytes.fm/episodes/show/244/vendorizing-your-python-podcast

<p><strong>Watch the live stream:</strong></p>

<a href='https://www.youtube.com/watch?v=5Tm5tr3prPs' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>

<p><strong>About the show</strong></p>
PyBites: Are you overwhelmed by tutorial paralysis?

Link: https://pybit.es/articles/are-you-overwhelmed-by-tutorial-paralysis/

Tutorial Paralysis, information overload, hoarding and never completing online courses (How large are your Udemy and Coursera libraries?)…
This is the pain we’re increasingly hearing about in conversa
Łukasz Langa: Weekly Report 2021, July 26 - August 1

Link: https://lukasz.langa.pl/c6c774ef-9b44-4668-9b03-57a338a8eab3/

This week I tried to drop the open pull request count below 1,400. This was a grueling task and I barely succeeded.
Weekly Python StackOverflow Report: (cclxxxvi) stackoverflow python report

Link: http://python-weekly.blogspot.com/2021/08/cclxxxvi-stackoverflow-python-report.html

These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2021-08-01 06:46:48 GMTIdentify index of all elements in a list compari
Django Weblog: Django bugfix release: 3.2.6

Link: https://www.djangoproject.com/weblog/2021/aug/01/bugfix-release/

Today we've issued the 3.2.6 bugfix release.
The release package and checksums are available from our downloads page, as well as from the Python Package Index. The PGP key ID used
for this release is
Mike Driscoll: PyDev of the Week: Patrick Loeber

Link: https://www.blog.pythonlibrary.org/2021/08/02/pydev-of-the-week-patrick-loeber/

This week we welcome Patrick Loeber (@python_engineer) as our PyDev of the Week! Paticks runs a popular Python YouTube channel that covers Python basics, machine learning, and more! You can learn more
Stack Abuse: How to Reverse a List in Python

Link: https://stackabuse.com/how-to-reverse-a-list-in-python

Introduction
Python is a flexible language, and there's typically several ways to perform the same, menial task. Choosing an approach can depend on the time or space complexity, or simply on your pers
Philippe Normand: Introducing the GNOME Web Canary flavor

Link: https://base-art.net/Articles/introducing-the-gnome-web-canary-flavor/

Today I am happy to unveil GNOME Web Canary which aims to provide bleeding edge,
most likely very unstable builds of Epiphany, depending on daily builds of the
WebKitGTK development version. Read on t
Python for Beginners: How to Open a Non-Text File in Python

Link: https://www.pythonforbeginners.com/files/how-to-open-a-non-text-file-in-python

The Python standard library provides several tools for reading and writing text files, but what about non-text files? With Python, it’s possible to open non-text files as well. We can do this in a var