Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
William Minchin: Selecting a Code of Conduct for My Software Projects

Link: https://blog.minchin.ca/2023/06/code-of-conduct.html

Towards the end of 2011 (in the depths of Covid…), I started thinking about
adding a code of conduct to my open source software projects. Github
recommends adding one, somewhat similiar to how they re
Kay Hayen: Nuitka Release 1.6

Link: https://nuitka.net/posts/nuitka-release-16.html

This is to inform you about the new stable release of Nuitka. It is the extremely compatible Python compiler,
“download now”.
This release bumps the much awaited 3.11 support to full level. This
means
CodersLegacy: Cython vs CPython – Comparing the Speed Difference

Link: https://coderslegacy.com/cython-vs-cpython-comparing-speed/

In this Cython vs CPython Article, we will be conducting a speed comparison using 10 different benchmarks, covering diverse scenarios and edge cases.
Python is a popular programming language known for
TechBeamers Python: Get Started with DataClasses in Python

Link: https://www.techbeamers.com/dataclasses-in-python/

Python dataclasses, a powerful feature that simplifies the process of creating classes for storing and manipulating data. Dataclasses are a feature introduced in Python 3.7 as part of the standard lib
Mike Driscoll: PyDev of the Week: Prabhu Ramachandran

Link: https://www.blog.pythonlibrary.org/2023/06/12/pydev-of-the-week-prabhu-ramachandran/

This week we welcome Prabhu Ramachandran (@prabhu_r) as our PyDev of the Week! Prabhu is a developer of PySPH and the Mayavi packages. Prabhu works for the Indian Institute of Technology Bombay and sp
Real Python: Python News: What's New From May 2023

Link: https://realpython.com/python-news-may-2023/

May 2023 was an important month for Python, as the upcoming Python 3.12 version is now feature complete. You can dig into a lot of information about Python and its development by reading the coverage
Stack Abuse: How to Remove Commas from a String in Python

Link: https://stackabuse.com/how-to-remove-commas-from-a-string-in-python/

Introduction
Among the many tasks you may encounter when manipulating strings in Python, one common requirement is to remove certain characters from a string – in this case, commas. Commas can be foun
Stack Abuse: Simple NLP in Python with TextBlob: Parts of Speech (PoS) Tagging

Link: https://stackabuse.com/simple-nlp-in-python-with-textblob-parts-of-speech-pos-tagging/

Introduction
In the field of Natural Language Processing (NLP), one of the fundamental tasks is Parts of Speech (PoS) tagging. PoS tagging involves assigning grammatical categories, like nouns, verbs,
Mike Driscoll: The Python Show – Episode 2 – Data Science and Python with Akshay Pachaar

Link: https://www.blog.pythonlibrary.org/2023/06/13/the-python-show-episode-2-data-science-and-python-with-akshay-pachaar/

Today’s episode is about data science and Python with my guest, Akshay Pachaar!

You can follow Akshay on Twitter or befriend him on LinkedIn.
Topics covered include:

How Akshay got into tech, data s
PyCoder’s Weekly: Issue #581 (June 13, 2023)

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

#581 – JUNE 13, 2023 View in Browser » What’s the Zen of Python? In this tutorial, you’ll be exploring the Zen of Python, a collection of nineteen guiding principles for writing idiomatic Python
Python Bytes: #340 Snorkel not included

Link: https://pythonbytes.fm/episodes/show/340/snorkel-not-included

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

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

<p>Sponsored by <a href="https://pythonbytes.fm/
"Mathspp Pydon'ts": Describing Descriptors | Pydon't 🐍

Link: https://mathspp.com/blog/pydonts/describing-descriptors


Descriptors are not black magic and this article will show you that.
In fact, you use descriptors every day and you don't even know it.

(If you are new here and have no idea what a Pydon't is, you m
Real Python: How to Make Engaging Programming Videos

Link: https://realpython.com/how-to-make-programming-videos/

Programming videos have become an increasingly popular medium for sharing knowledge and helping the fellow developers on your team. Especially when you’re working remotely, effective communication is
Talk Python to Me: #419: Debugging Python in Production with PyStack

Link: https://talkpython.fm/episodes/show/419/debugging-python-in-production-with-pystack

Here's the situation. You have a Python app that is locked or even has completely crashed and all you're left with is a core dump on the server. Now what? It's time for PyStack! You can capture a vie
PyBites: The importance of refactoring regularly [podcast]

Link: https://pybit.es/articles/importance-of-refactoring/

In this episode we talk with Chris May, Python developer and coach, about his background and passion for refactoring.
Watch here:


Or listen here:

This turned into a beautiful love letter to refact
PyPy: PyPy v7.3.12 release

Link: https://www.pypy.org/posts/2023/06/pypy-v7312-release.html

PyPy v7.3.12: release of python 2.7, 3.9, and 310.
The PyPy team is proud to release version 7.3.12 of PyPy.
This release includes a new string-to-int algorithm (also appearing in CPython
3.12) that i