Planet Python RSS
214 subscribers
17K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Mike Driscoll: A Tour of Python's itertools Library

Link: https://www.blog.pythonlibrary.org/2021/12/07/a-tour-of-pythons-itertools-library/

Python provides a great module for creating your own iterators. The module I am referring to is itertools. The tools provided by itertools are fast and memory efficient. You will be able to take these
Django Weblog: 2022 DSF Board Election Results

Link: https://www.djangoproject.com/weblog/2021/dec/08/2022-dsf-board-election-results/

Here are the results of this year's election in order of most votes:

Anna Makarudze
William Vincent
Aaron Bassett
Kátia Nakamura
Chaim Kirby
Mfon Eti-mfon
Žan Anderle

Congratulations to our winners.
Python for Beginners: IndexError in Python

Link: https://www.pythonforbeginners.com/basics/indexerror-in-python

Lists are one of the most used data structures in Python. You might have got the message “IndexError: list index out of range” when your program ran into an error while using lists. In this article, w
Zero to Mastery: Python Monthly Newsletter 💻🐍 November 2021

Link: https://zerotomastery.io/blog/python-monthly-newsletter-november-2021/?utm_source=python-rss-feed

24th issue of the Python Monthly Newsletter! Read by 20,000+ Python developers every month. This monthly Python newsletter covers the latest Python news so that you stay up-to-date with the industry a
PyCon: PyCon US 2022 Registration Launch!

Link: https://pycon.blogspot.com/2021/12/pycon-us-2022-registration-launch.html

Our favorite time of the year is finally here! Registration for PyCon US 2022 is now open and we are so excited to give you the details...Health & Safety GuidelinesTo gather in-person again safely and
Stack Abuse: How to Get and Parse HTTP POST Body in Flask - JSON and Form Data

Link: https://stackabuse.com/how-to-get-and-parse-http-post-body-in-flask-json-and-form-data/

Introduction
Flask is a great micro-framework for Web Development in Python, and allows you to be extremely minimal. A working REST API can be served up in seconds through a few lines of code:
from fl
Python Insider: Python 3.11.0a3 is available

Link: https://pythoninsider.blogspot.com/2021/12/python-3110a3-is-available.html

You can tell that we are slowly getting closer to the first beta as the number of release blockers that we need to fix on every release starts to increase  But we did it! https://www.python.org/downlo
Codementor: How to Make and Receive Phone Calls Using Plivo’s Voice API and Python

Link: https://www.codementor.io/plivocommunity/how-to-make-and-receive-phone-calls-using-plivo-s-voice-api-and-python-1oftzwhi9a

How to Make and Receive Phone Calls Using Plivo’s Voice API and Python
Python for Beginners: TypeError in Python

Link: https://www.pythonforbeginners.com/basics/typeerror-in-python

Have you ever tried to divide an integer with a string while programming in Python? If yes, you might have got an error message like “TypeError: unsupported operand type(s) for /: ‘int’ and ‘str’”.  I
Python Bytes: #262 So many bots up in your documentation

Link: https://pythonbytes.fm/episodes/show/262/so-many-bots-up-in-your-documentation

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

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

<p><strong>About the show</strong></p>
Python Software Foundation: PyPI User Feedback Summary

Link: http://pyfound.blogspot.com/2021/12/pypi-user-feedback-summary.html

The PSF conducted a series of three surveys to identify key user requirements that have not been addressed so far. We used this round of surveys to engage with the PyPI community and understand ways t
Python Engineering at Microsoft: Python in Visual Studio Code – December 2021 Release

Link: https://devblogs.microsoft.com/python/python-in-visual-studio-code-december-2021-release/

We are pleased to announce that the December 2021 release of the Python Extension for Visual Studio Code is now available. You can download the Python extension from the Marketplace, or install it dir
Stack Abuse: GET Request Query Parameters with Flask

Link: https://stackabuse.com/get-request-query-parameters-with-flask/

Query Parameters are part of the Query String - a section of the URL that contains key-value pairs of parameters. Typically, parameters are sent alongside GET requests to further specify filters on th
Talk Python to Me: #344: SQLAlchemy 2.0

Link: https://talkpython.fm/episodes/show/344/sqlalchemy-2.0

SQLAlchemy is the most widely used ORM (Object Relational Mapper) for Python developers. It's been around since February 2006. But we might be in for the most significant release since the first one:
Real Python: The Real Python Podcast – Episode #89: Solving Advent of Code Puzzles With Python

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

Are you ready to break open the first days of puzzles from the annual Advent of Code challenge? Advent of Code is an advent calendar of twenty-five programming puzzles published each December. Practic
ItsMyCode: Python Remove Newline From String

Link: https://itsmycode.com/python-remove-newline-from-string/

ItsMyCode |
There are times where we need to remove the newline from string while processing massive data. This tutorial will learn different approaches to strip newline characters from string in Pyth
Stack Abuse: How To Get User's IP Address Using Flask?

Link: https://stackabuse.com/how-to-get-users-ip-address-using-flask/

Introduction
Flask is one of the most popular Python web development frameworks. It's a lightweight web framework, yet it offers a variety of built-in methods that can be used for hassle-free deployme
Python for Beginners: Assert Statement in Python

Link: https://www.pythonforbeginners.com/basics/assert-statement-in-python

Debugging is one of the important parts of a software developer’s journey. Python programming language also provides various constructs for debugging programs. One such construct is an assert statemen