Planet Python RSS
214 subscribers
17.1K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Brett Cannon: Unravelling comprehensions

Link: https://snarky.ca/unravelling-comprehensions/

After failing to unravel generator expressions, in this post as part as my Python syntactic sugar post series I want to tackle comprehensions. Thanks to a change made in Python 3.0, recreating compreh
Mike Driscoll: Creating an MP3 Tagger GUI with wxPython

Link: https://www.blog.pythonlibrary.org/2021/09/22/creating-an-mp3-tagger-gui-with-wxpython/

I don’t know about you, but I enjoy listening to music. As an avid music fan, I also like to rip my CDs to MP3 so I can listen to my music on the go a bit easier. There is still a lot of music that is
Stack Abuse: Guide to Python's keyboard Module

Link: https://stackabuse.com/guide-to-pythons-keyboard-module/

Introduction
Python is one of the most suitable languages for automating tasks. Whether it's repeatable (ethical) web scraping after some time period, starting some programs on a computer start up, or
Python⇒Speed: Scanning your Conda environment for security vulnerabilities

Link: https://pythonspeed.com/articles/conda-security-scans/

You don’t want to deploy an application that has security vulnerabilities.
That means your own code, but also third-party dependencies: it doesn’t matter how secure your code is if it’s exposing a TLS
Real Python: The Django Template Language: Tags and Filters

Link: https://realpython.com/django-templates-tags-filters/

Django is a powerful framework for creating web applications in Python. Its features include database models, routing URLs, authentication, user management, administrative tools, and a template langua
Python for Beginners: Difference between yield and return in Python

Link: https://www.pythonforbeginners.com/basics/difference-between-yield-and-return-in-python

You might have used yield and return statements while programming in python. In this article, we will discuss the theoretical concepts of return and yield keywords. We will also look at the difference
Stack Abuse: Machine Learning | Overfitting Is Your Friend - Not Your Foe

Link: https://stackabuse.com/machine-learning-overfitting-is-your-friend-not-your-foe/

Note: These are the musings of a man - flawed and prone to misjudgement. The point of writing this is to promote a discussion on the topic, not to be right or contrarian. If any glaring mistakes are p
Python Bytes: #251 A 95% complete episode (wait for it)

Link: https://pythonbytes.fm/episodes/show/251/a-95-complete-episode-wait-for-it

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

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

<p><strong>About the show</strong></p>
Python Software Foundation: Katia Lira Awarded the PSF Community Service Award for Q2 2020

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/qwHz7RZ7wBQ/katia-lira-awarded-psf-community.html

 Katia Lira, Software Engineer from Mexico city, has been awarded the Python Software Foundation 2020 Q2 Community Service Award.RESOLVED, that the Python Software Foundation award the Q2 2020 Communi
Wing Tips: Debug Python Code Run by Docker Compose with Wing Pro

Link: https://wingware.com/blog/docker-compose

This Wing Tip describes how to configure Docker Compose
so that Python code running on selected container services can be debugged with Wing Pro. This makes it easy to develop and debug
containerized
Mike Driscoll: Python 101 – How to Create a Python Package

Link: https://www.blog.pythonlibrary.org/2021/09/23/python-101-how-to-create-a-python-package/

When you create a Python file, you are creating a Python module. Any Python file that you create can be imported by another Python script. Thus, by definition, it is also a Python module. If you have
Python for Beginners: How to create an iterator in Python

Link: https://www.pythonforbeginners.com/basics/how-to-create-an-iterator-in-python

Iterators are used to access the elements of an iterable object in a sequential manner. We can create an iterator for any container object such as a python dictionary, list, tuple, or a set. In this a
Michał Bultrowicz: Setting up and syncing config on two laptops

Link: https://bultrowicz.com/setup_and_sync_laptops/

I’ve created a script that should 1 set up a fresh Manjaro
with all the software and configuration that I want in a workstation.
It can also update the setup on being rerun.
Now I have two laptops tha
Kushal Das: Rust, reproducibility and shadow-rs

Link: https://kushaldas.in/posts/rust-reproducibility-and-shadow-rs.html


Generally all of our Rust code are reproducible. If you build it in a fixed
path, and also use SOURCE_DATE_EPOCH environment variable, the final library
or executables will be producible. This is rea
Codementor: Debug Flask App in Docker with PyCharm

Link: https://www.codementor.io/laleetavaiya/debug-flask-app-in-docker-with-pycharm-1m1qcguubj

In PyCharm we can also debug flask application inside docker as well.
So we don’t need to run project locally with different configuration.
Which makes development process speedy.
Real Python: The Real Python Podcast – Episode #79: Measuring Your Python Learning Progress

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

Where are you along the path of learning Python? Do you feel like you're making progress? What are ways you can put the learning path into a more precise focus? This week on the show, we talk with pre
Mike Driscoll: Python 101 – Assignment Expressions

Link: https://www.blog.pythonlibrary.org/2021/09/24/python-101-assignment-expressions-2/

Assignment expressions were added to Python in version 3.8. The general idea is that an assignment expression allows you to assign to variables within an expression.
The syntax for doing this is:
NAME
Zero to Mastery: Python Monthly 💻🐍 September 2021

Link: https://zerotomastery.io/blog/python-monthly-september-2021/?utm_source=python-rss-feed

22nd issue of Python Monthly! Read by 20,000+ Python developers every month. This monthly Python newsletter is focused on keeping you up to date with the industry and keeping your skills sharp, withou
PyCharm: PyCharm 2021.3 EAP Is Open!

Link: http://feedproxy.google.com/~r/Pycharm/~3/btCCaj9X3R0/

Introducing the Early Access Program for PyCharm 2021.3, where you can try the new PyCharm features before they are officially released!
This program is designed to give you a chance to try all the im