Planet Python RSS
217 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Python Insider: Python 3.12.2 and 3.11.8 are now available.

Link: https://pythoninsider.blogspot.com/2024/02/python-3122-and-3118-are-now-available.html

Python 3.12.2 and 3.11.8 are now available. In addition to all the usual bugfixes, these releases contain a small security fix: hidden .pth files are no longer automatically read and executed as part
Real Python: How to Write Beautiful Python Code With PEP 8

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

PEP 8, sometimes spelled PEP8 or PEP-8, is a document that provides guidelines and best practices on how to write Python code. It was written in 2001 by Guido van Rossum, Barry Warsaw, and Alyssa Cogh
Python Software Foundation: Introducing PSF Grants Program Office Hours

Link: https://pyfound.blogspot.com/2024/02/introducing-psf-grants-office-hours.html

In October 2023, we acknowledged the situation surrounding DjangoCon Africa and noted our intent to make ongoing improvements to the Grants Program. We also recognize that we are in a new world of hyb
Mike Driscoll: Episode 27 – Python Formatters with ?ukasz Langa

Link: https://www.blog.pythonlibrary.org/2024/02/07/episode-27-python-formatters-with-lukasz-langa/

Episode 27 of The Python Show Podcast welcomes ?ukasz Langa as our guest.

?ukasz is a CPython Developer in Residence, which means he works full-time on the core CPython language. He is also the creat
PyBites: How to Send Email Notifications Using Sendgrid and GitHub Actions

Link: https://pybit.es/articles/how-to-send-email-notifications-using-sendgrid-and-github-actions/

Introduction
As a Python developer I want to stay up2date with trends and useful tips & tricks.
Of course there are great newsletters like Pycoders, but those are already hitting my inbox.
Let’s look
TechBeamers Python: 20 Practical Python Data Analysis Tips and Tricks

Link: https://www.techbeamers.com/python-data-analysis-tips-and-tricks/

Hey, welcome! Today, we’re talking about practical Python data analysis tips and tricks. With Pandas and NumPy, we’ll tidy up data, spot trends, and do some smart analysis. It’s all about making your
TechBeamers Python: Python’s Map() and List Comprehension: Tips and Best Practices

Link: https://www.techbeamers.com/python-map-list-comprehension-best-practices/

Welcome to this tutorial where we will explore Python map() and List Comprehension best practices and share some cool coding tips. These techniques, when mastered, can make your code cleaner, more con
Python Software Foundation: Software Bill-of-Materials documents are now available for CPython

Link: https://pyfound.blogspot.com/2024/02/software-bill-of-materials-now-available-for-cpython.html

Our Security Developer-in-Residence, Seth Larson, has been working to improve the management of vulnerabilities for Python users. Seth has championed progress on this goal in a variety of areas:Author
PyCharm: PyCharm 2024.1 EAP 4: Sticky Lines, and More

Link: https://blog.jetbrains.com/pycharm/2024/02/2024-1-eap-4/

The Early Access Program for PyCharm 2024.1 continues with our latest build where you can preview new features, including convenient sticky lines in the editor, and more.
You can download the new vers
Python People: Nikita Karamov - Django project maintainer, from Russia to Germany

Link: https://pythonpeople.fm/episodes/nikita-karamov

Nikita Karamov is a Python developer and maintainer on various open source Python projects.Some topics covered:Notes on university education in programming and engineering vs theoryJazzband for mainta
Talk Python to Me: #448: Full-Time Open Source Devs Panel

Link: https://talkpython.fm/episodes/show/448/full-time-open-source-devs-panel

So you've created a Python-based open source project and it's started to take off. You're getting contributors, lots of buzz in the podcast space, and more. But you have that day job working on Java.
Real Python: The Real Python Podcast – Episode #191: Focusing on Data Science & Less on Engineering and Dependencies

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

How do you manage the dependencies of a large-scale data science project? How do you migrate that project from a laptop to cloud infrastructure or utilize GPUs and multiple instances in parallel? This
TechBeamers Python: 20 Practical Pandas Tips and Tricks for Python

Link: https://www.techbeamers.com/python-pandas-tips-and-tricks/

Welcome to this Python tutorial including Pandas tips and tricks! In this guide, we’ll share 20 practical techniques to make your data tasks easier and improve your Python data analysis. Whether you’r
TechBeamers Python: Understanding Python Generators vs. List Comprehensions

Link: https://www.techbeamers.com/python-generators-vs-list-comprehensions/

This tutorial discusses and compares Python Generators vs List Comprehensions. If you’ve been coding in Python for a while, you’ve likely encountered these two powerful features. They both play crucia
TechBeamers Python: Exploring Python Sets vs. Lists: When to Use Each

Link: https://www.techbeamers.com/python-sets-vs-lists/

Welcome to this tutorial on Python Sets vs Lists. As a programmer, understanding the differences between sets and lists is essential for writing efficient and clean code. In this tutorial, we’ll dive
PyBites: Leveraging typing.Protocol: Faster Error Detection And Beyond Inheritance

Link: https://pybit.es/articles/typing-protocol-abc-alternative/

Introduction
Two weeks ago I wrote an article about ABCs and interface enforcement. Shortly after I learned that you can do this as well with protocols.
Python 3.8 introduced quite a groundbreaking f
TechBeamers Python: 20 Challenging Developer Pseudo Code Questions and Answers

Link: https://www.techbeamers.com/pseudo-code-questions-answers/

Welcome to an advanced tutorial designed for developers, focusing on challenging algorithmic pseudo-code questions. It doesn’t matter if you are a C#, .NET, Python, C, or Java developer. In this guide
Matt Layman: Stripe Checkout - Building SaaS with Python and Django #182

Link: https://www.mattlayman.com/blog/2024/stripe-checkout-building-saas-with-python-and-django-182/

In this episode, we did work to get the Stripe checkout session going. We set up Stripe Product and Price objects to get the subscription plan ready and got the Stripe checkout session working mostly
Ned Batchelder: One way to package Python code right now

Link: https://nedbatchelder.com/blog/202402/one_way_to_package_python_code_right_now.html

A year or so ago, I couldn’t find a step-by-step guide to packaging a Python
project that didn’t get bogged down in confusing options and choices, so I wrote
my own: pkgsample. After I wrote it, I fo