Planet Python RSS
214 subscribers
17.1K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Real Python: How to Set Up a Django Project

Link: https://realpython.com/courses/set-up-django-project/

When you start building any new Django web application, there’s a basic setup you need to tackle first. This course outlines the necessary steps to set up a Django project.
During this course, you’ll
Python for Beginners: Queue in Python

Link: https://www.pythonforbeginners.com/queue/queue-in-python


You must have seen queues in real life while waiting for an appointment to doctor or while ordering food in a restaurant. The queue data structure follows last in first out (LIFO) order for accessing
Python Software Foundation: The 2021 Python Language Summit: CPython Performance Improvements at Instagram

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/4Tpn4LZPws4/the-2021-python-language-summit-cpython.html

Dino Viehland gave a presentation at the 2021 Python Language Summit about improvements to CPython's performance at Instagram. Cinder is Instagram's internal performance-oriented production version of
Python Pool: Know Everything About OpenCV moments

Link: https://www.pythonpool.com/opencv-moments/?utm_source=rss&utm_medium=rss&utm_campaign=opencv-moments

Moments signify the distribution of matter about a point or an axis. In OpenCV, moments are the average of the intensities of an image’s pixels.
Segmentation is changing the representation of an imag
PyCoder’s Weekly: Issue #474 (May 25, 2021)

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

#474 – MAY 25, 2021 View in Browser » The Tools and Tech I Use to Run a One-Woman Hardware Company Winterbloom makes open-source, boutique synthesizers. There’s a lot that goes into running a ha
Python Pool: GPA Calculator Implementation Using Python

Link: https://www.pythonpool.com/python-gpa-calculator/?utm_source=rss&utm_medium=rss&utm_campaign=python-gpa-calculator

Introduction
In today’s article, we will discuss GPA calculation using python programming. We all have either the GPA system or the percentage system in our education grading system to measure a stude
Python Pool: [Solved] TypeError: method Object is not Subscriptable

Link: https://www.pythonpool.com/method-object-is-not-subscriptable/?utm_source=rss&utm_medium=rss&utm_campaign=method-object-is-not-subscriptable

Welcome to another module of TypeError in the python programming language. In today’s article, we will be discussing an embarrassing Typeerror that usually gets landed up while we are a beginner to py
Python Pool: Understanding OpenCV solvePnP in Python

Link: https://www.pythonpool.com/opencv-solvepnp/?utm_source=rss&utm_medium=rss&utm_campaign=opencv-solvepnp

PNP problem stands for Perspective N – points problem. It is a commonly known problem in computer vision. In this problem, we have to estimate the pose of a camera when the 2D projections of 3D points
qutebrowser development blog: qutebrowser moving to Libera Chat

Link: https://blog.qutebrowser.org/qutebrowser-moving-to-libera-chat.html

This blog has been lying dormant for almost a year now, but rest assured it's
still alive. I usually don't bother posting minor release announcements here
(they can be found on the announcement mailin
Python for Beginners: Copy dictionary in Python

Link: https://www.pythonforbeginners.com/dictionary/copy-dictionary-in-python


While programming, there may be situations where we need to make an exact copy of a dictionary. In this article, we will look at different approaches to copy a dictionary in python and will implement
Django Weblog: Django IRC Channels migration to Libera.Chat

Link: https://www.djangoproject.com/weblog/2021/may/26/django-irc-channels-migration-liberachat/

At approximately 3 am UTC on May 26, 2021, the operators of the Freenode IRC network assumed control of the #django* channels on that network. This means that representatives of the Django community n
Stack Abuse: Checking Vulnerabilities in Your Python Code with Bandit

Link: https://stackabuse.com/checking-vulnerabilities-in-your-python-code-with-bandit/

Introduction
As developers, we're encouraged from the start of the journey to write clean code. Equally as important, but less talked about is writing and using secure code.
In Python projects, we typ
Python Bytes: #235 Flask 2.0 Articles and Reactions

Link: https://pythonbytes.fm/episodes/show/235/flask-2.0-articles-and-reactions

<p><strong>Watch the live stream:</strong></p>

<a href='https://www.youtube.com/watch?v=JXX6h-wqBhA' style='font-weight: bold;'>Watch on YouTube</a><br>
<br>

<p><strong>About the show</strong></p>
Real Python: Visualizing Data in Python Using plt.scatter()

Link: https://realpython.com/visualizing-python-plt-scatter/

An important part of working with data is being able to visualize it. Python has several third-party modules you can use for data visualization. One of the most popular modules is Matplotlib and its s
Python Software Foundation: The 2021 Python Language Summit: PEP 654 — Exception Groups and except*

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/YfwxVhCg4nM/the-2021-python-language-summit-pep-654.html

PEP 654 was authored by Irit Katriel, Yury Selivanov, and Guido van Rossum. This PEP is currently at the draft stage. At the 2021 Python Language Summit, the authors shared what it is, why we need it,
Python Pool: Demystifying OpenCV keypoint in Python

Link: https://www.pythonpool.com/opencv-keypoint/?utm_source=rss&utm_medium=rss&utm_campaign=opencv-keypoint

OpenCV Library in python, which stands for Open Source Computer Vision, is a trendy library used for achieving artificial intelligence through python. Using the OpenCV library, we can process real-tim
death and gravity: When to use classes? When your functions take the same arguments

Link: https://death.andgravity.com/same-arguments

Are you having trouble figuring out when to use classes or how to organize them?
Have you repeatedly searched for "when to use classes in Python",
read all the articles and watched all the talks,
and
Mike Driscoll: PyInstaller – How to Turn Your Python Code into an Exe on Windows

Link: https://www.blog.pythonlibrary.org/2021/05/27/pyinstaller-how-to-turn-your-python-code-into-an-exe-on-windows/

You have just created an awesome new application. Maybe it’s a game or maybe it’s an image viewer. Whatever your application is, you want to share it with your friend or a family member. However, you
Python for Beginners: 4 Ways to Read a Text File Line by Line in Python

Link: https://www.pythonforbeginners.com/files/4-ways-to-read-a-text-file-line-by-line-in-python


Reading files is a necessary task in any programming language. Whether it’s a database file,  image, or chat log, having the ability to read and write files greatly enhances what we can with Python.
AI Pool: ImportError libcublas.so.9.0

Link: https://ai-pool.com/d/importerror-libcublas-so-9-0

Can't find a solution to this issue ImportError: libcublas.so.9.0: cannot open shared object file: No such file or directory.
Why do I get this after installation?...