Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Matt Layman: Parse Inbound Email - Building SaaS with Python and Django #175

Link: https://www.mattlayman.com/blog/2023/parse-inbound-email-building-saas-with-python-and-django-175/

In this episode, we switched to the inbound side and parsed an email to transform it into a journal entry. This caused us to look into the dateutil library and look at Python’s standard email module t
Erik Marsja: Variance Inflation Factor in Python: Ace Multicollinearity Easily

Link: https://www.marsja.se/variance-inflation-factor-in-python-multicollinearity-for-regression/

The post Variance Inflation Factor in Python: Ace Multicollinearity Easily appeared first on Erik Marsja.
In this post, we will learn an essential aspect of regression analysis – calculating the varia
Pythonicity: Composition vs. inheritance

Link: https://coady.github.io/posts/composition-vs-inheritance.html

Contrarian view on composition over inheritance.
The conventional wisdom is to prefer composition over inheritance. More specifically to use delegation over single inheritance.
Like the recommendation
Armin Ronacher: FSL: A License For the Bazaar, Not the Cathedral

Link: http://lucumr.pocoo.org/2023/11/19/cathedral-and-bazaaar-licensing

Sentry relicensed under a new license, called the Functional Source
License (FSL). It's not an Open Source license
by the OSI definition, but it comes with an irrevocable grant: after
two years it tu
Python Morsels: Python Morsels Lifetime Access Sale

Link: https://www.pythonmorsels.com/python-morsels-lifetime-access-sale/

Sale: Until Nov. 27, you can get lifetime access to Python Morsels


Table of contents

How far Python Morsels has come
The sale: lifetime access




How far Python Morsels has come
My initial idea wa
Django Weblog: Django 5.0 release candidate 1 released

Link: https://www.djangoproject.com/weblog/2023/nov/20/django-50-rc1/

Django 5.0 release candidate 1 is the final opportunity for you to try out a deluge of exciting new features before Django 5.0 is released.
The release candidate stage marks the string freeze and the
Real Python: How to Render Markdown in a Django Application

Link: https://realpython.com/django-markdown/

One of Django’s most popular features is the admin interface. For developers, it provides an out-of-the-box tool kit to work with your project’s data models. And it gives non-technical administrators
Trey Hunner: Python Black Friday & Cyber Monday sales (2023)

Link: https://treyhunner.com/2023/11/python-black-friday-and-cyber-monday-sales-2023/

It’s time for my annual compilation post of Python learning deals.
I’ve been compiling Python-related Black Friday & Cyber Monday sales since 2018 and 2023’s Python-related sales are coming up.
Lifeti
TechBeamers Python: How to Find the Length of a List in Python

Link: https://www.techbeamers.com/length-of-a-list-in-python/

In this short tutorial, we’ll find out different ways to find the length of a list in Python. Go through each of these methods and practice with the code provided. Out of these, Python len() is the mo
Mike Driscoll: Black Friday Python Deals 2023

Link: https://www.blog.pythonlibrary.org/2023/11/20/black-friday-python-deals-2023/

Black Friday and Cyber Monday are just around the corner, so let’s start the holidays early with some amazing Python-related deals!
You can take 33% off ANY of my self-published books on Gumroad by us
Erik Marsja: Pandas Convert All Columns to String: A Comprehensive Guide

Link: https://www.marsja.se/pandas-convert-all-columns-to-string-a-comprehensive-guide/

The post Pandas Convert All Columns to String: A Comprehensive Guide appeared first on Erik Marsja.
In this tutorial, you will learn to use Pandas to convert all columns to string. As a data enthusias
TechBeamers Python: How to Check Python Version Using Code

Link: https://www.techbeamers.com/how-to-check-python-version/

Do you know how to check the Python version you are using? This tutorial provides you with 10 different ways to check the Python version. Now, you may ask why use code and 10 different methods. It is
Python⇒Speed: Two kinds of threads pools, and why you need both

Link: https://pythonspeed.com/articles/two-thread-pools/

When you’re doing large scale data processing with Python, threads are a good way to achieve parallelism.
This is especially true if you’re doing numeric processing, where the global interpreter lock
Real Python: Python Basics Exercises: Modules and Packages

Link: https://realpython.com/courses/python-modules-packages-exercises/

In Python Basics: Modules and Packages, you learned how to build an application by putting related code into separate files called modules. You also used the import statement to use modules in another
The Three of Wands: The Categories of Bugs in Python Apps

Link: https://threeofwands.com/the-types-of-errors-in-python-apps/

Say you&aposre writing a Python program, of any kind but maybe a network service. You&aposre likely to err (you&aposre human, after all) and produce errors (bugs, defects) during this process. We can&
PyCoder’s Weekly: Issue #604 (Nov. 21, 2023)

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

#604 – NOVEMBER 21, 2023 View in Browser » Learning Python During an AI Revolution Has the current growth of artificial intelligence (AI) systems made you wonder what the future holds for Python
CodersLegacy: How to Deploy your Python Code with Inno Setup

Link: https://coderslegacy.com/deploy-your-python-code-with-inno-setup/

Deploying your Python application is a crucial step in making it accessible to users. One popular tool for creating installers on Windows is Inno Setup. In this blog post, we’ll guide you through the
Python Bytes: #361 Proper way to comment your code!

Link: https://pythonbytes.fm/episodes/show/361/proper-way-to-comment-your-code

<strong>Topics covered in this episode:</strong><br>

<ul>
<li><a href="https://snarky.ca/the-many-shapes-and-sizes-of-keyboards/">The many shapes and sizes of keyboards</a></li>
<li><a href="https:/