Planet Python RSS
217 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Will Kahn-Greene: Dennis v1.0.0 released! Retrospective! Handing it off!

Link: https://bluesock.org/~willkg/blog/dev/dennis_1_0_0.html


What is it?
Dennis is a Python command line utility
(and library) for working with localization. It includes:

a linter for finding problems in strings in .po files like invalid Python
variable synta
Quansight Labs Blog: Checking for accessibility: thoughts and a checklist!

Link: https://labs.quansight.org/blog/2022/06/checking-for-accessibility/


JupyterLab Accessibility Journey Part 4
Remember how my last post in this series
called out accessibility as much more complex than a checklist? True to my
sense of humor, this blog post is now a c
Andre Roberge: Nicer arithmetic with Python

Link: https://aroberge.blogspot.com/2022/06/nicer-arithmetic-with-python.html

Beginning programmers are often surprised by floating point arithmetic inaccuracies. If they use Python, many will often write posts saying that Python is "broken" when the see results as follows:>>>
The Python Coding Blog: Sunrise: A Python Turtle Animation Using Named Tuples

Link: https://thepythoncodingbook.com/2022/06/12/python-turtle-animation-using-named-tuples-sunrise/

You may think the Python turtle module isn’t useful for anything. “It’s just for kids”, is what many think of it. However, this module allows you to explore and experiment with many areas of Python. I
Django Weblog: Last Chance for a DjangoCon Europe 2023

Link: https://www.djangoproject.com/weblog/2022/jun/12/last-chance-for-a-djangocon-europe-2023/

TL:DR - There will not be a DjangoCon Europe 2023 if the DSF board does not receive viable proposals for one by August 10 End of Day AoE. There is not sufficient time after that for an organizing grou
Mike Driscoll: PyDev of the Week: Allen Downey

Link: https://www.blog.pythonlibrary.org/2022/06/13/pydev-of-the-week-allen-downey/

This week we welcome Allen Downey (@AllenDowney) as the PyDev of the Week! Allen is the author of Think Python, Modeling and Simulation in Python, Think Java: How to Think Like a Computer Scientist, a
Python for Beginners: Index of Minimum Element in a List in Python

Link: https://www.pythonforbeginners.com/basics/index-of-minimum-element-in-a-list-in-python

We use lists in a python program to store different types of objects when we need random access. In this article, we will discuss different ways to find the index of the minimum element in a list in p
Real Python: The subprocess Module: Wrapping Programs With Python

Link: https://realpython.com/python-subprocess/

If you’ve ever wanted to simplify your command-line scripting or use Python alongside command-line applications—or any applications for that matter—then the Python subprocess module can help. From run
PyCon: PyCon US 2022 Transparency Report

Link: https://pycon.blogspot.com/2022/06/pycon-us-2022-transparency-report.html

With a return to in-person events, PyCon US has taken care to maintain excellency in the safety of our events both through our Code of Conduct and our Health and Safety Guidelines. A key piece of the
Chris Moffitt: Using Document Properties to Track Your Excel Reports

Link: https://pbpython.com/excel-properties.html


Introduction
When doing analysis with Jupyter Notebooks, you will frequently find yourself
generating ad-hoc Excel reports to distribute to your end-users. After time, you might
end up with dozens (o
PyCharm

Link:

I’ve been a long-time Pandas user, relying on it heavily since the start of my data science career. However, up until the last couple of years, I struggled with certain issues, such as not being able
Andre Roberge: Friendly IDLE

Link: https://aroberge.blogspot.com/2022/06/friendly-idle.html

friendly_idle is now available.  This is just a quick announcement. Eventually I plan to write a longer blog post explaining how I use import hooks to patch IDLE and to provide seamless support for fr
Real Python: Combining Data in pandas With concat() and merge()

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

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
Mike Driscoll: Data Science Packages in Python (Video)

Link: https://www.blog.pythonlibrary.org/2022/06/14/data-science-packages-in-python-video/

In this tutorial, I will talk about some of the many different data science packages you can use in Python.
Packages mentioned: pandas, matplotlib, numpy, scipy, mahotas, OpenCV, Keras, PyTorch, Tenso
ListenData: Region Proposal Network (RPN) : A Complete Guide

Link: https://www.listendata.com/2022/06/region-proposal-network.html

This tutorial includes detailed step by step guide of how Region Proposal Network (RPN) works. It is mainly used in RCNN family for object detection. Those who are familiar with RCNN, they might alrea
PyCoder’s Weekly: Issue #529 (June 14, 2022)

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

#529 – JUNE 14, 2022 View in Browser » A First Look at PyScript: Python in the Web Browser In this tutorial, you’ll learn about PyScript, a new framework that allows for running Python in the we
Python Bytes: #288 Performance benchmarks for Python 3.11 are amazing

Link: https://pythonbytes.fm/episodes/show/288/performance-benchmarks-for-python-3.11-are-amazing

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

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

<p><strong>About the show</strong></p>
Kushal Das: Story of a space

Link: https://kushaldas.in/posts/story-of-a-space.html


In my case the story continued for around 2 hours. Yesterday I was trying to
implement something from a given SPEC, and tried to match my output (from Rust)
with the output from the Python code writt
Python for Beginners: Doubly Linked List in Python

Link: https://www.pythonforbeginners.com/basics/doubly-linked-list-in-python

Linked lists are used in various applications in python programming. In this article, we will implement a doubly linked list in python. To understand doubly linked lists, you will need to have the kno
PyBites: How to make a nice graph using Django and Chart.js

Link: https://pybit.es/articles/how-to-make-a-nice-graph-using-django-and-chart-js/

In this article I will show you how to make a beautiful yet simple graph using Django + Chart.js. 
The code for this project is here.
Getting the data
We are going to plot the number of Bite exercises