Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Everyday Superpowers: What is Your Burnout Telling You?

Link: https://everydaysuperpowers.dev/articles/what-your-burnout-telling-you/

I am glad that mental health is being discussed more often in the programming world. In particular, I would like to thank Kenneth Reitz for his transparency over the last few years and contributing hi
Everyday Superpowers: TIL Debug any python file in VS Code

Link: https://everydaysuperpowers.dev/articles/til-debug-any-python-file-in-vs-code/

One of my frustrations with VisualStudio Code was creating a `launch.json` file whenever I wanted to debug a one-off Python file. Today, I learned that you could add a debugger configuration to your u
PyBites: Reflections on the Zen of Python

Link: https://pybit.es/articles/reflections-on-the-zen-of-python/

An initial version of this article appeared as a Pybites email first. If you like it join our friends list to get our valuable Python, developer and mindset content first …
How following the Zen of Py
PyCharm: The PyCharm 2022.3.1 Release Candidate is out!

Link: https://blog.jetbrains.com/pycharm/2022/12/2022-3-1-rc/

This build contains important bug fixes for PyCharm 2022.3. Look through the list of improvements and update to the latest version for a better experience.

Download PyCharm 2022.3.1 RC
Packaging: PyC
Ned Batchelder: Secure maintainer workflow, continued

Link: https://nedbatchelder.com/blog/202212/secure_maintainer_workflow_continued.html

Picking up from Secure maintainer workflow, especially
the comments there (thanks!), here are some more things I’m doing to keep my
maintainer workflow safe.1Password ssh: I’m using 1Password as my SS
Python Software Foundation: More Python Everywhere, All at Once: Looking Forward to 2023

Link: https://pyfound.blogspot.com/2022/12/more-python-everywhere-all-at-once.html

The PSF works hard throughout the year to put on PyCon US, support smaller Python events around the world through our Grants program and of course to provide the critical infrastructure and expertise
Peter Bengtsson: Pip-Outdated.py - a script to compare requirements.in with the output of pip list --outdated

Link: http://www.peterbe.com/plog/pip-outdated.py

Simply by posting this, there's a big chance you'll say "Hey! Didn't you know there's already a well-known script that does this? Better." Or you'll say "Hey! That'll save me hundreds of seconds per y
Real Python: The Real Python Podcast – Episode #138: 2022 Real Python Tutorial & Video Course Wrap Up

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

It's been another year of changes at Real Python! The Real Python team has written, edited, curated, illustrated, and produced a mountain of Python material this year. We added some new members to the
Python for Beginners: Use the Pandas fillna Method to Fill NaN Values

Link: https://www.pythonforbeginners.com/basics/use-the-pandas-fillna-method-to-fill-nan-values

Handling NaN values while analyzing data is an important task. The pandas module in python provides us with the fillna() method to fill NaN values. In this article, we will discuss how to use the pand
CodersLegacy: Setup Virtual Environment for Pyinstaller with Venv

Link: https://coderslegacy.com/pyinstaller-virtual-environment-with-venv/

In this Python tutorial, we will discuss how to optimize your Pyinstaller EXE’s using Virtual Environments. We will be using the “venv” library to create the Virtual environment for Pyinstaller, which
Wyatt Baldwin: PDM vs Poetry

Link: https://wyattbaldwin.com/2022/12/23/pdm-vs-poetry/

A few years back, I started using poetry to manage dependencies for all my projects. I ran into some minor issues early on but haven’t had any problems recently and prefer it to any of the other depen
Programiz: Python Program to Compute the Power of a Number

Link: https://www.programiz.com/python-programming/examples/power

In this example, you will learn to compute the power of a number.
Programiz: Python Program to Count the Number of Digits Present In a Number

Link: https://www.programiz.com/python-programming/examples/number-of-digits

In this example, you will learn to count the number of digits present in a number.
Programiz: Python Program to Check If Two Strings are Anagram

Link: https://www.programiz.com/python-programming/examples/anagram

In this example, you will learn to check if two strings are anagram.