Planet Python RSS
215 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Real Python: How to Get the Most Out of PyCon US

Link: https://realpython.com/pycon-guide/

Congratulations! You’re going to PyCon US!
Whether this is your first time or not, going to a conference full of people who love the same thing as you is always a fun experience. There’s so much more
RoseHosting Blog: How to Install and Switch Python Versions on Ubuntu 20.04

Link: https://www.rosehosting.com/blog/how-to-install-and-switch-python-versions-on-ubuntu-20-04/

This tutorial is about installing and switching between different Python versions on Ubuntu 20.04. Using multiple Python versions on your ...
Read more
The post How to Install and Switch Python Versi
Podcast.__init__: Cloud Native Networking For Developers With The Gloo Platform

Link: https://www.pythonpodcast.com/solo-gloo-cloud-native-networking-episode-360/

Communication is a fundamental requirement for any program or application. As the friction involved in deploying code has gone down, the motivation for architecting your system as microservices goes u
Stack Abuse: Guide to Sets in Python

Link: https://stackabuse.com/sets-in-python/

Introduction
In Python, a set is a data structure that stores unordered items. The set items are also unindexed. Like a list, a set allows the addition and removal of elements. However, there are a fe
Stack Abuse: Lists vs Tuples in Python

Link: https://stackabuse.com/lists-vs-tuples-in-python/

Introduction
Lists and tuples are two of the most commonly used data structures in Python, with dictionary being the third. Lists and tuples have many similarities:

They are both sequence data types
Real Python: Building a Django User Management System

Link: https://realpython.com/courses/building-a-django-user-management-system/

If you’re building your own Django applications, you might decide to extend them with user accounts. In this video course, you’ll learn how to work with Django user management and add it to your progr
Python Morsels: What are hashable objects?

Link: https://www.pythonmorsels.com/what-are-hashable-objects/

Sets and dictionaries are powered by hashability. And hashable objects tend to be immutable.



Table of contents

Sets items must be hashable
Dictionary keys must be hashable
Hashability makes dictio
PyCoder’s Weekly: Issue #521 (April 19, 2022)

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

#521 – APRIL 19, 2022 View in Browser » Build an Editor in Python and WebAssembly Step-by-step instructions on how to build a code editor in the browser using Python and WebAssembly (WASM), via
Mike Driscoll: Python 101 - Intro to Testing with Python and unittest (Video)

Link: https://www.blog.pythonlibrary.org/2022/04/20/python-101-intro-to-testing-with-python-and-unittest-video/

In this tutorial, you will learn the basics of testing with Python and the built-in unittest module

You can also read the article that this video is based on at Mouse vs Python here: Python 3 Testing
Real Python: Python 3.11 Preview: Task and Exception Groups

Link: https://realpython.com/python311-exception-groups/

Python 3.11 will be released in October 2022. Even though October is still months away, you can already preview some of the upcoming features, including the new task and exception groups that Python 3
Talk Python to Me: #362: Hypermodern Python Projects

Link: https://talkpython.fm/episodes/show/362/hypermodern-python-projects

What would a modern Python project look like? Maybe it would use Poetry rather than pip directly for its package management. Perhaps its test automation would be controlled with Nox. You might automat
Python Software Foundation: Announcing Python Software Foundation Fellow Members for Q1 2022! 🎉

Link: http://pyfound.blogspot.com/2022/04/announcing-python-software-foundation.html

The PSF is pleased to announce its first batch of PSF Fellows for 2022! Let us welcome the new PSF Fellows for Q1! The following people continue to do amazing things for the Python community:Denny Per
Python Bytes: #280 Easy terminal scripts by sourcing your Py

Link: https://pythonbytes.fm/episodes/show/280/easy-terminal-scripts-by-sourcing-your-py

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

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

<p><strong>About the show</strong></p>
Real Python: The Real Python Podcast – Episode #107: Type-Safe ORM With Prisma Client & Real Python at PyCon US 2022

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

Are you using an Object-Relational Mapper (ORM) for your Python projects? What if it could work with SQL or No-SQL databases and be fully type-safe? This week on the show, Robert Craigie talks about P
PyCon: Important Venue Information Update

Link: https://pycon.blogspot.com/2022/04/important-venue-information-update.html

The PyCon US 2022 staff, committees, and volunteers know that for many attending PyCon US 2022 next week the Health and Safety Guidelines and Vaccine Verification policy along with a commitment to enf
Nikola: Nikola v8.2.1 is out!

Link: https://getnikola.com/blog/nikola-v821-is-out.html

On behalf of the Nikola team, I am pleased to announce the immediate
availability of Nikola v8.2.1. This is a minor release with a couple
new features, as well as fixes for compatibility with the late
ItsMyCode: Convert DateTime to Unix timestamp in Python

Link: https://itsmycode.com/convert-datetime-to-unix-timestamp-in-python/

This tutorial will look at how to convert DateTime to Unix timestamp in Python and String Date to timestamp with examples.
What is Unix Timestamp?
Unix was initially developed between 1960 – and 1970.
ItsMyCode: How to get column names in Pandas Dataframe

Link: https://itsmycode.com/how-to-get-column-names-in-pandas-dataframe/

Pandas DataFrame is Two-dimensional, size-mutable, potentially heterogeneous tabular data. Pandas DataFrame consists of rows and columns to store the data. Each column will have its own header name th