Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Robin Wilson: Travel times, over time

Link: https://blog.rtwilson.com/travel-times-over-time/

A fun analysis I did a while back was using the Google Maps API to look at travel times between certain locations over time. I originally got interested in this because I found that travelling from my
PyCon: PyCon US 2023 Call for Volunteers

Link: https://pycon.blogspot.com/2023/03/pycon-us-2023-call-for-volunteers.html

Looking to make a meaningful contribution to the Python community? Look no further than PyCon US 2023! Whether you're a seasoned Python pro or a newcomer to the community and looking to get involved,
PyBites: Learning to code is a lot like learning a language

Link: https://pybit.es/articles/learning-to-code-is-a-lot-like-learning-a-language/

This content was first sent as part of our friends email list, you can subscribe here to get this type of content early and fresh every week …
Let me tell you the story of how I effectively learned fo
Stack Abuse: How to Compare Tuples in Python

Link: https://stackabuse.com/how-to-compare-tuples-in-python/

Introduction
What do you do when you have two or more tuples and you need to compare them? This may seem like a pretty straightforward thing to do, but when you scratch the surface, you'll find out th
Real Python: Manipulating ZIP Files With Python

Link: https://realpython.com/courses/zipfile-python/

Python’s zipfile is a standard-library module intended to manipulate ZIP files. This file format is a widely adopted industry standard when it comes to archiving and compressing digital data. You can
PyCoder’s Weekly: Issue #567 (March 7, 2023)

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

#567 – MARCH 7, 2023 View in Browser » PEP 709: Inlined Comprehensions Python Enhancement Proposal 709 covers a change to how comprehensions are handled. Currently they are compiled as nested fu
Python Insider: Python 3.12.0 alpha 6 released

Link: https://pythoninsider.blogspot.com/2023/03/python-3120-alpha-6-released.html

I'm pleased to announce the release of Python 3.12 alpha 6.https://www.python.org/downloads/release/python-3120a6/This is an early developer preview of Python 3.12.Major new features of the 3.12 serie
Test and Code: 195: What would you change about pytest?

Link: https://testandcode.com/195

Anthony Sottile and Brian discuss changes that would be cool for pytest, even unrealistic changes. These are changes we'd make to pytest if we didn't ahve to care about backwards compatibilty.
Anthony
Read the Docs: Read the Docs newsletter - March 2023

Link: https://blog.readthedocs.com/newsletter-march-2023/

News and updates

⭐️ We passed our 10,000th issue/pull request on GitHub. And it’s pretty much an equal split between the 5039 issues and 4872 pull requests now registered.
Thanks to the whole communi
Real Python: Python's Mutable vs Immutable Types: What's the Difference?

Link: https://realpython.com/python-mutable-vs-immutable-types/

As a Python developer, you’ll have to deal with mutable and immutable objects sooner or later. Mutable objects are those that allow you to change their value or data in place without affecting the obj
Mike Driscoll: Python’s Built-in Functions Video Series

Link: https://www.blog.pythonlibrary.org/2023/03/08/pythons-built-in-functions-video-series/

I have started producing a new Python video series on Python’s built-in functions. Did you know there are over 70 built-in functions?
Here’s a listing of all the functions straight from the Python doc
Python for Beginners: Pandas Assign New Columns to a DataFrame

Link: https://www.pythonforbeginners.com/basics/pandas-assign-new-columns-to-a-dataframe

Pandas dataframes are the data structures that we use to handle tabular data in python. This article discusses different ways to assign new columns to pandas dataframe using the assign() method.
Table
Python Bytes: #326 Let's Go for a PyGWalk

Link: https://pythonbytes.fm/episodes/show/326/lets-go-for-a-pygwalk

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

<p><strong>About the show</strong></p>

<p>Sponsored by <a href="http://pythonbytes.fm/f
PyCharm: PyCharm 2023.1 EAP 5 Is Out!

Link: https://blog.jetbrains.com/pycharm/2023/03/2023-1-eap-5/

We are fast approaching the release of PyCharm 2023.1. This new EAP version introduces option to save multiple tool window layouts and improvements to the frontend development experience.
To see what
PyCharm: PyCharm 2022.3.3 Is Out!

Link: https://blog.jetbrains.com/pycharm/2023/03/2022-3-3/

This build brings better code coverage and support for tox 4.
You can update to this version from inside the IDE, using the Toolbox App, or via snaps if you’re using Ubuntu. You can also download it d
Django Weblog: PyCharm &amp; DSF Campaign 2023 Results

Link: https://www.djangoproject.com/weblog/2023/mar/09/pycharm-dsf-campaign-2023-results/

We are excited to share the results of the annual Django Developers
Survey which was conducted this year in collaboration with JetBrains.
Almost 5,000 Django users from 248 countries took the survey w
Real Python: The Real Python Podcast – Episode #148: Sharing Your Python App Across Platforms With BeeWare

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

Are you interested in deploying your Python project everywhere? This week on the show, Russell Keith-Magee, founder and maintainer of the BeeWare project, returns. Russell shares recent updates to Bri
Python for Beginners: Pandas Series to DataFrame in Python

Link: https://www.pythonforbeginners.com/basics/pandas-series-to-dataframe-in-python

Pandas series and dataframes are the two data structures that we use extensively to manipulate sequential or tabular data in Python. Sometimes, we need to convert one or multiple series objects to a d