Planet Python RSS
214 subscribers
17.1K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Real Python: Python 3.10: Cool New Features for You to Try

Link: https://realpython.com/python310-new-features/

Python 3.10 is out! Volunteers have been working on the new version since May 2020 to bring you a better, faster, and more secure Python. As of October 4, 2021, the first official version is available
Python Morsels: How to read from a text file

Link: https://www.pythonmorsels.com/topics/how-read-text-file/




Transcript
Let's talk about reading from a text file in Python.
Opening and reading a text file in Python
Python has a built-in open function that accepts a filename (in this case we're using this
Zero to Mastery: Python Monthly Newsletter 💻🐍 September 2021

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

22nd 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
Quansight Labs Blog: Dataframe interchange protocol and Vaex

Link: https://labs.quansight.org/blog/2021/10/dataframe-interchange-protocol-and-vaex/

The work I briefly describe in this blog post is the implementation of the dataframe interchange protocol into Vaex which I was working on through the three month period as a Quansight Labs Intern.
Python Insider: Python 3.10.0 is available

Link: http://feedproxy.google.com/~r/PythonInsider/~3/ojK529j7CAQ/python-3100-is-available.html

On behalf of the Python development community and the Python 3.10 release team, I’m pleased to announce the availability of Python 3.10.0.Python 3.10.0 is the newest major release of the Python progra
Codementor: Functions in Python

Link: https://www.codementor.io/sadhanareddy/functions-in-python-1m7rpt1zyq

In This Article We are going to learn how functions will work.
Let's first discuss What exactly is a Python Function.
In Python, Function is a group of related statements that performs a specific...
Django Weblog: Django bugfix release: 3.2.8

Link: https://www.djangoproject.com/weblog/2021/oct/05/bugfix-release/

Today we've issued the 3.2.8 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
Stack Abuse: Handling File Uploads with Django

Link: https://stackabuse.com/handling-file-uploads-with-django/

Introduction
The World Wide Web facilitated the transfer of huge amounts of data between networked computers, and it's a community that creates and shares data in abundance. This data can take various
Python⇒Speed: Why you can't switch to Python 3.10 just yet

Link: https://pythonspeed.com/articles/switch-python-3.10/

Python 3.10 is now available–but should you switch to it immediately?
And if not now, when?
The short answer is, no, you probably don’t want to switch immediately; quite possibly you can’t switch imme
Python for Beginners: Closures in Python

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

You might have heard about decorators in Python. Decorators are implemented using a closure. In this article, we will study closures in python. To understand closures in a better way, we will first st
Mike Driscoll: PyBites Podcast: Episode #043 - Becoming a prolific Python content provider

Link: https://www.blog.pythonlibrary.org/2021/10/05/pybites43/

This week, Mike Driscoll (author of this website), is on the PyBites Podcast. It's titled Episode #043 - Becoming a prolific Python content provider
You can listen to the podcast on PyBites.
In the po
PyCoder’s Weekly: Issue #493 (Oct. 5, 2021)

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

#493 – OCTOBER 5, 2021 View in Browser » Python 3.10: Cool New Features for You to Try Explore some of the coolest and most useful features in Python 3.10. You’ll appreciate more user-friendly e
Talk Python to Me: #336: Terminal magic with Rich and Textual

Link: https://talkpython.fm/episodes/show/336/terminal-magic-with-rich-and-textual

Have you heard of the package Rich? This library allows you to create very, well, rich terminal-based UIs in Python. When you think of what you can typically build with basic print statements, that ma
Made With Mu: Announcing Mu version 1.1.0-beta.6

Link: https://madewith.mu/mu/users/2021/10/06/beta6.html


We’re delighted to announce that beta 6 of Mu is here (get it from from
the download page)!
As always, since this is a beta release and may contain bugs or unfinished
features. Please provide bug rep
Stack Abuse: Getting Started with GitHub Actions - Software Automation

Link: https://stackabuse.com/getting-started-with-github-actions-software-automation/

Introduction

In this guide, we'll take a look at what GitHub actions are, how they work, and build a workflow using Python to showcase how you can use GitHub actions to automate tasks.

Since its inc
Real Python: Python's sum(): The Pythonic Way to Sum Values

Link: https://realpython.com/python-sum-function/

Python’s built-in function sum() is an efficient and Pythonic way to sum a list of numeric values. Adding several numbers together is a common intermediate step in many computations, so sum() is a pre
PyCharm: PyCharm 2021.3 EAP 2

Link: http://feedproxy.google.com/~r/Pycharm/~3/sZThHgkuY7o/

The second PyCharm 2021.3 EAP build is out!
The Early Access Program is designed to give you a chance to try all the improvements to PyCharm and provide actionable feedback that will help ensure that
Ben Cook: How the NumPy append operation works

Link: https://sparrow.dev/numpy-append/

Anyone familiar with Python will know about the list append method:
a = [1, 2, 3]
a.append(4)

print(a)

# Expected result
# [1, 2, 3, 4]
But what if you want to append to a NumPy array? In that case,