Planet Python RSS
215 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
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
CodeGrades: Hello, World (again)

Link: https://blog.codegrades.com/posts/hello-world-again/


The COVID outbreak has disrupted our world in lots of different ways.
For CodeGrades, it meant our face-to-face work with young coders, in London,
had to stop.
We had been meeting since the Autumn of
STX Next: 13 Best Django and Django REST Tutorials in 2022

Link: https://www.stxnext.com/blog/best-django-tutorials/




Thinking of learning Django? You’re already familiar with Python, but want to go further and try something new? Or maybe you already know Django and just wish to boost your qualifications even mo
Daniel Roy Greenfeld: Live Discussion with Sebastián Ramírez (Tiangolo)

Link: https://daniel.feldroy.com/posts/2022-04-26-live-discussion-with-tiangolo

On April 26th at 10 AM PDT / 5 PM GMT I'm having (or have already had) a live discussion with Sebastián Ramírez, creator of FastAPI, Typer, SQL Model, and more.
PyCoder’s Weekly: Issue #522 (April 26, 2022)

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

#522 – APRIL 26, 2022 View in Browser » Type Hints in Code Supporting Multiple Python Versions The typing module continues to evolve, with new features in every Python version. This can make it
Abhijeet Pal: Django 4.1 adds async-compatible interface to QuerySet

Link: http://djangocentral.com/django-adds-async-compatible-interface-to-queryset/

The much-awaited pull request for an async-compatible interface to Queryset just got merged into the main branch of Django.Pull Request - https://github.com/django/django/pull/14843 The Django core te
Real Python: Why Is It Important to Close Files in Python?

Link: https://realpython.com/why-close-file-python/

At some point in your Python coding journey, you learn that you should use a context manager to open files. Python context managers make it easy to close your files once you’re done with them:
with op