Planet Python RSS
217 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
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
TechBeamers Python: Python Sort a List in Descending Order With Examples

Link: https://www.techbeamers.com/python-sort-lists-in-descending-order/

Welcome to this Python tutorial where we will explore various methods to sort a list in descending order. Sorting is a fundamental operation in programming, and Python offers multiple approaches to ac
TechBeamers Python: Python Sort a Dictionary by Key With Examples

Link: https://www.techbeamers.com/python-sort-a-dictionary-by-key/

Welcome to this Python tutorial where we will explore different methods to sort a dictionary by its keys. Sorting dictionaries is a common task in programming, and Python provides multiple ways to ach
TechBeamers Python: Python Sort Array Values With Examples

Link: https://www.techbeamers.com/python-sort-array-values/

Welcome to this Python tutorial where we will explore various methods to sort array values. Sorting arrays is a fundamental operation in programming, and Python provides multiple approaches to achieve
TechBeamers Python: Python Sort Using Lambda With Examples

Link: https://www.techbeamers.com/python-sort-using-lambdas/

Sorting is a common operation in programming, and Python provides powerful tools to make it efficient and flexible. In this tutorial, we will focus on sorting using lambda functions in Python. Ther al
TechBeamers Python: Python Sort List of Strings With Examples

Link: https://www.techbeamers.com/python-sort-list-of-strings/

Welcome to this Python tutorial where we will explore various methods to sort a list of strings. Sorting strings is a common task in programming, and Python provides multiple efficient approaches to a
TechBeamers Python: Python Sort List of Numbers or Integers

Link: https://www.techbeamers.com/python-sort-a-list-of-numbers/

Welcome to this Python tutorial where we will explore various methods to sort a list of numbers or integers. Sorting numerical data is a common task in programming, and Python provides multiple effici
TechBeamers Python: Python Sort Dictionary by Value With Examples

Link: https://www.techbeamers.com/python-sort-dictionary-by-value/

Sorting a dictionary by its values is a common task in Python programming. In this tutorial, we will explore multiple methods to achieve this, providing you with a solid understanding of how to effici
TechBeamers Python: Python Sort Lists Alphabetically With Examples

Link: https://www.techbeamers.com/python-sort-lists-alphabetically/

Sorting lists alphabetically is a common programming task that Python makes simple and efficient. In this tutorial, we will explore various methods to sort lists alphabetically, covering both strings
TechBeamers Python: How to Generate Extent Report in Selenium with Python, Java, and C#

Link: https://www.techbeamers.com/generate-extent-report-in-selenium-python-java/

Hello friends, this tutorial provides you with a practical overview of how to generate Extent reports in Selenium with Python, Java, and C#. In this guide, we’ll first explore what is Extent report an
Django Weblog: Django accessibility in 2023 and beyond

Link: https://www.djangoproject.com/weblog/2024/feb/10/django-accessibility-in-2023-and-beyond/

Happy birthday, Django accessibility team! 🌈

The team has been up and running for three years, and is now looking for new members. With a lot happening in this space, we thought we were overdue for a
TechBeamers Python: Difference Between First-Class and Higher-Order Functions

Link: https://www.techbeamers.com/difference-between-first-class-and-higher-order-functions/

In most programming languages like Python, Java, or JavaScript, two important terms often come to use are First-Class Functions and Higher-Order Functions. These concepts are fundamental to understand
PyCharm: Three pytest Features You Will Love

Link: https://blog.jetbrains.com/pycharm/2024/02/pytest-features/

One of the most popular frameworks for Python is pytest, and it comes with several cool features. I’m going to show you three of them in this blog post:

Fixtures
Markers
Parametrize


As you’d expect
ListenData: 4 Ways to Correct Grammar with Python

Link: https://www.listendata.com/2024/01/4-ways-to-correct-grammar-with-python.html

This tutorial explains various methods for checking and correcting grammar using Python. Automatic grammar correction helps students, professionals and content creators to make sure their writing foll
Real Python: Primer on Python Decorators

Link: https://realpython.com/primer-on-python-decorators/

In this tutorial on Python decorators, you’ll learn what they are and how to create and use them. Decorators provide a simple syntax for calling higher-order functions.
By definition, a decorator is a