Planet Python RSS
217 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
PyCharm: PyCharm 2022.1.2 is here

Link: https://blog.jetbrains.com/pycharm/2022/06/2022-1-2/

You can update to this version from inside the IDE, using the Toolbox App, or using snaps if you are an Ubuntu user. You can also download it from our website.
For the second minor release of PyCharm
Anwesha Das: Dgplug summer training, 2022

Link: http://anweshadas.in/untitle/

dgplug summer training 2022 will start at 13:00 UTC, 25th July. This is our 15th edition. Following our tradition, we have updated and modified our training based on the feedback from the old partici
Mike Driscoll: Python Video Series: The builtins module

Link: https://www.blog.pythonlibrary.org/2022/06/02/python-video-series-the-builtins-module/

In this video tutorial, you will learn about Python's builtins module

 
 
The post Python Video Series: The builtins module appeared first on Mouse Vs Python.
PyBites: How to stay motivated and beat procrastination

Link: https://pybit.es/articles/pp72-motivation-and-procrastination/

Listen now:

Whether you like it or not we are emotional species so you have to manage your motivation, it’s not a given!
In this week’s podcast we feature two segments from our productivity course: m
PyCharm: PyCharm 2022.2 EAP 2 Is Out!

Link: https://blog.jetbrains.com/pycharm/2022/06/2022-2-eap-2/

This second EAP build for PyCharm 2022.2 delivers some interesting features to try out. We added support for several Python PEP’s – both for those that will be working with Python 3.11 and some long-a
Real Python: The Real Python Podcast – Episode #112: Managing Large Python Data Science Projects With Dask

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

What do you do when your data science project doesn't fit within your computer's memory? One solution is to distribute it across multiple worker machines. This week on the show, Guido Imperiale from C
Python for Beginners: Find the Index of Max Value in a List in Python

Link: https://www.pythonforbeginners.com/basics/find-the-index-of-max-value-in-a-list-in-python

Lists in python are one of the most used data structures. In this article, we will discuss different ways to find the index of max value in a list in python. 
Table of ContentsFind the Index of Max Va
Python Software Foundation: Python Developers Survey 2021: Python is everywhere

Link: http://pyfound.blogspot.com/2022/06/python-developers-survey-2021-python-is.html

We are excited to announce the results of the fifth official annual Python Developers Survey. This work is done each year as a collaborative effort between the Python Software Foundation and JetBrains
Python Bytes: #286 Unreasonable f-strings

Link: https://pythonbytes.fm/episodes/show/286/unreasonable-f-strings

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

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

<p><strong>About the show</strong></p>
Talk Python to Me: #368: End-to-End Web Testing with Playwright

Link: https://talkpython.fm/episodes/show/368/end-to-end-web-testing-with-playwright

How do you test whether your web sites are working well? Unit tests are great. But for web apps, the number of pieces that have to click together "just so" are many. You have databases, server code (s
PyBites: Case study: How to parse nested JSON

Link: https://pybit.es/articles/case-study-how-to-parse-nested-json/

I was asked to help parse a JSON file that is delivered by the iTunes Store Customer Reviews API JSON endpoint. It is not so important how this API works or if there are better APIs for this. Instead,
"Morphex's Blogologue": A little sunday refactoring

Link: http://blogologue.com/blog_entry?id=1654419628X76

Making a little progress in the ravencoin-taxman accounting script today, refactored date parsing into its own function in this commit:https://github.com/morphex/ravencoin-taxman/commit/a6b8089cd...Th
Ned Batchelder: Adding a dunder to an object

Link: https://nedbatchelder.com/blog/202206/adding_a_dunder_to_an_object.html

We had a tricky debugging need at work: we wanted to track how an attribute
on an object was changing. Here’s the unusual solution we used.The __setattr__ special method (dunder) is called when an at
"Morphex's Blogologue": Comparing apples and oranges

Link: http://blogologue.com/blog_entry?id=1654451211X55

So finally for this sunday hacking, I added some tests for the ravencoin-taxman project, and before that, I added RVN-USD calculation for transactions; giving (an acceptable) USD valuation of any give
Glyph Lefkowitz: Dates And Times And Types

Link: https://glyph.twistedmatrix.com/2022/06/dates-and-times-and-types.html

Python’s standard
datetime
module is very powerful. However, it has a couple of annoying flaws.
Firstly, datetimes are considered a kind of
date1, which causes problems.
Although datetime is a litera
Mike Driscoll: PyDev of the Week: Denny Perez

Link: https://www.blog.pythonlibrary.org/2022/06/06/pydev-of-the-week-denny-perez/

This week we welcome Denny Perez (@dennyperez18) as our PyDev of the Week! Denny works at nventive and is very active in the Python community, including helping to organize PyCon itself. You can see w
Python for Beginners: Convert a List of Strings to Ints in Python

Link: https://www.pythonforbeginners.com/basics/convert-a-list-of-strings-to-ints-in-python

In python, we use lists to store different elements. In this article, we will discuss different ways to convert a list of strings to ints. We will also discuss how we can convert a list of lists of st
Luke Plant: Raising exceptions or returning error objects in Python

Link: https://lukeplant.me.uk/blog/posts/raising-exceptions-or-returning-error-objects-in-python/

The other day I got a question about some old code I had written which, instead
of raising an exception for an error condition as the reader expected, returned
an error object:

With your EmailVerifyT
Real Python: A First Look at PyScript: Python in the Web Browser

Link: https://realpython.com/pyscript-python-in-browser/

PyScript is a brand-new framework that caused a lot of excitement when Peter Wang, the CEO and co-founder of Anaconda, Inc., revealed it during his keynote speech at PyCon US 2022. Although this proje