Planet Python RSS
215 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
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
The Python Coding Blog: Have your Apollo 11 moment: A Python Lunar Landing game using the turtle module

Link: https://thepythoncodingbook.com/2022/04/24/python-lunar-landing-game-using-turtle-tutorial/

How difficult can it be to land on the moon? I have no idea. All I know is that it’s not that easy landing the lunar module in this Python turtle game:


But, how about writing the game? I’ve taken a
Matthew Wright: Reading date arguments to a Python script using argparse

Link: https://www.wrighters.io/reading-date-arguments-to-a-python-script-using-argparse/

Argparse doesn't support date arguments by default, but it can be easily extended to parse and validate dates in your Python scripts.The post Reading date arguments to a Python script using argparse a
Zato Blog: Zato architecture primer

Link: https://zato.io/blog/posts/zato-architecture-primer.html

Overview
Zato is a Python-based middleware and backend platform designed for integrating and building server-side systems.
The platform belongs to a broader family of solutions that, depending on one’
eGenix.com: eGenix Antispam Bot for Telegram 0.3.0 GA

Link: https://www.egenix.com/company/news/eGenix-Antispam-Bot-for-Telegram-0.3.0-GA.html

Introduction

eGenix has long been running a local user group meeting in Düsseldorf
called Python Meeting Düsseldorf and we are using a Telegram group
for most of our communication.
In the early days
PyCon: Pycon US 2022 Developer Sprints

Link: https://pycon.blogspot.com/2022/04/pycon-us-2022-developer-sprints.html

We are super excited to announce the launch of the PyCon US 2022 Sprints!When: Sprints will take place on May 2nd and May 3rdWhere: At Pycon US at the Salt Palace Convention CenterProject Signups: Get
Mike Driscoll: PyDev of the Week: Julien Palard

Link: https://www.blog.pythonlibrary.org/2022/04/25/pydev-of-the-week-julien-palard/

This week we welcome Julien Palard (@sizeof) as our PyDev of the Week! Julien is a core developer of the Python programming language and a Python trainer. Julien is also the creator of HackInScience,
Real Python: Combining Data in Pandas With merge(), .join(), and concat()

Link: https://realpython.com/pandas-merge-join-and-concat/

The Series and DataFrame objects in pandas are powerful tools for exploring and analyzing data. Part of their power comes from a multifaceted approach to combining separate datasets. With pandas, you
Podcast.__init__: Automatically Enforce Software Structures With Powerful Code Modifications Powered By LibCST

Link: https://www.pythonpodcast.com/libcst-automated-code-modification-episode-361/

Programmers love to automate tedious processes, including refactoring your code. In order to support the creation of code modifications for your Python projects Jimmy Lai created LibCST. It provides a
Mike Driscoll: Python 101 - Creating Multiple Threads

Link: https://www.blog.pythonlibrary.org/2022/04/26/python-101-creating-multiple-threads/

Concurrency is a big topic in programming. The concept of concurrency is to run multiple pieces of code at once. Python has a couple of different solutions that are built-in to its standard library. Y