Planet Python RSS
217 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
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
Ned Batchelder: Updated multi-parameter interactive Jupyter notebook

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

A few years ago I wrote
Multi-parameter Jupyter notebook interaction about a
Jupyter notebook. It worked at the time, but when I dusted it off recently, it
didn’t. I’ve renovated it and cleaned it u
PyCharm: The Release Candidate for PyCharm 2023.3.4 Is Out!

Link: https://blog.jetbrains.com/pycharm/2024/02/2023-3-4-rc/

PyCharm 2023.3.4 Release Candidate is now available!
You can get the latest build from our website, through the free Toolbox App, or via snaps for Ubuntu.

AI Assistant: Generate Python type annotatio
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.
Real Python: Create Conway's Game of Life With Python

Link: https://realpython.com/courses/conway-game-of-life-python/

Wouldn’t it be cool to build a Python game that only requires initial user input and then seems to take on a mind of its own, creating mesmerizing patterns along the way? You can do exactly that with
Python⇒Speed: Not just NVIDIA: GPU programming that runs everywhere

Link: https://pythonspeed.com/articles/gpu-without-cuda/

If you’re doing computations on a GPU, NVIDIA is the default, alongside its CUDA libraries.
Some libraries like PyTorch support do support AMD GPUs and Macs.
But from the re-implementations of NumPy,
PyCoder’s Weekly: Issue #616 (Feb. 13, 2024)

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

#616 – FEBRUARY 13, 2024 View in Browser » Using Python for Data Analysis In this tutorial, you’ll learn the importance of having a structured data analysis workflow, and you’ll get the opportun
Talk Python to Me: #449: Building UIs in Python with FastUI

Link: https://talkpython.fm/episodes/show/449/building-uis-in-python-with-fastui

Building web UIs in Python has always been in interesting proposition. On one end, we have a the full web design story with artisanal HTML and CSS. On another end there are several Python platforms th
Python GUIs: Q&A: How Do I Display Images in PyQt6? — Using QLabel to easily add images to your applications

Link: https://www.pythonguis.com/faq/adding-images-to-pyqt6-applications/

Adding images to your application is a common requirement, whether you're building an image/photo viewer, or just want to add some decoration to your GUI. Unfortunately, because of how this is done in
Peter Bengtsson: How to avoid a count query in Django if you can

Link: http://www.peterbe.com/plog/how-to-avoid-a-count-query-in-django-if-you-can

Suppose you have a complex Django QuerySet query that is somewhat costly (in other words slow). And suppose you want to return:

The first N results
A count of the total possible results

So your im