Planet Python RSS
214 subscribers
17K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Python Pool: Numpy outer() Method Explained In-Depth With 5 Examples

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

Introduction to Numpy outer
Numpy outer() is the function in the numpy module in the python language. It is used to compute the outer level of products like vectors, arrays, etc. If we try to combine
Andre Roberge: Friendly version 0.3 has been released

Link: https://aroberge.blogspot.com/2021/03/friendly-version-03-has-been-released.html

Friendly version 0.3 has been released. This version also marks the official name change from the former friendly-traceback.Before I started working on Friendly, I assumed that to do custom exception
John Cook: Illustrating Gershgorn disks with NumPy

Link: https://www.johndcook.com/blog/2021/03/14/illustrating-gershgorn-disks-with-numpy/

Gershgorn’s theorem gives bounds on the locations of eigenvalues for an arbitrary square complex matrix.
The eigenvalues are contained in disks, known as Gershgorn disks, centered on the diagonal elem
Mike Driscoll: PyDev of the Week: Žan Anderle

Link: https://www.blog.pythonlibrary.org/2021/03/15/pydev-of-the-week-zan-anderle/

This week we welcome Žan Anderle (@z_anderle) as our PyDev of the Week! Žan is a freelance software developer. You can check out his blog or check out his Github profile you’d like to know what he is
Learn PyQt: PySide6 Book now available: Create GUI Applications with Python & Qt6 — The hands-on guide to making apps with Python

Link: https://www.learnpyqt.com/blog/pyside6-book-create-gui-applications-python-qt6/

Hello! This morning I released the first Qt6 edition of my PySide book Create GUI Applications, with Python & Qt6.
This update follows the 4th Edition of the PySide2 book updating all the code example
Stack Abuse: How to Convert DOCX To Html With Python Mammoth

Link: https://stackabuse.com/how-to-convert-docx-to-html-with-python-mammoth/

Introduction
At some point in your software development path, you'll have to convert files from one format to another.
DOCX (used by Microsoft Word) is a pretty common file format for a lot of people
Real Python: Python Community Interview With Ewa Jodlowska

Link: https://realpython.com/interview-ewa-jodlowska/

Today I’m joined by Ewa Jodlowska, executive director of the Python Software Foundation (PSF), the organization devoted to advancing open source technology related to the Python programming language.
Made With Mu: Announcing Mu version 1.1.0-beta.2

Link: https://madewith.mu/mu/users/2021/03/15/beta2.html


After months of work, by many contributors, we’re delighted to announce
the release of Mu 1.1.0 beta 2. This is the version we recommend you use, and
you should update to this version via our officia
Codementor: Quick tip: How I use pip-tools to wrangle dependencies

Link: https://www.codementor.io/adammertz/quick-tip-how-i-use-pip-tools-to-wrangle-dependencies-1fzreskhok

pip-tools is a Python development tool for helping you ensure you have deterministic and predictable builds. The best way I can think of what that means is by example. Let's say you clone a project...
Matthew Wright: Profiling Python code with py-spy

Link: https://www.wrighters.io/profiling-python-code-with-py-spy/

If you have a Python program that is currently running you may want to understand what the real-world performance profile of the code is. This program could be in a production environment or just on y
Podcast.__init__: Practical Advice On Using Python To Power A Business

Link: https://www.pythonpodcast.com/practical-business-python-episode-306/

Python is a language that is used in almost every imaginable context and by people from an amazing range of backgrounds. A lot of the people who use it wouldn't even call themselves programmers, becau
Glyph Lefkowitz: Interfaces and Protocols

Link: https://glyph.twistedmatrix.com/2021/03/interfaces-and-protocols.html

Some of you read my previous post on typing.Protocols and
probably wondered: “what about zope.interface?” I’ve advocated strongly for it
in the past —
but now that we have Mypy and Protocols, is it si
STX Next: What Makes a Great Python Developer?

Link: https://www.stxnext.com/blog/what-makes-a-great-python-developer




It’s universal, powerful, simple and expressive: Python. It’s also the second most popular language in the world, defeated only by JavaScript.
Everyday Superpowers: Finishing "fizzbuzz" and announcing the Python Growth Challenge

Link: https://everydaysuperpowers.dev/articles/finishing-fizzbuzz-and-announcing-the-python-growth-challenge/

Closing the loop from my previous article about creative ways to solve the "fizzbuzz" kata and announcing a challenge for a small group of readers.Read more...
Python⇒Speed: Speeding up Docker builds in CI with BuildKit

Link: https://pythonspeed.com/articles/speeding-up-docker-ci/

No one enjoys waiting, and waiting for your software to build and tests to run isn’t fun either—in fact, it’s quite expensive.
And if you’re building your Docker image in a CI system like GitHub Actio
Real Python: Python Booleans: Leveraging the Values of Truth

Link: https://realpython.com/courses/booleans-leveraging-truth/

Understanding how Python Boolean values behave is important to programming well in Python. The Python Boolean type is one of Python’s built-in data types. It’s used to represent the truth value of an
ListenData: Translating Web Page while Scraping

Link: https://www.listendata.com/2020/10/translating-web-page-while-scraping.html

Suppose you need to scrape data from a website after translating the web page in R and Python. In google chrome, there is an option (or functionality) to translate any foreign language. If you are an
PyCoder’s Weekly: Issue #464 (March 16, 2021)

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

#464 – MARCH 16, 2021 View in Browser » Pattern Matching Tutorial for Pythonic Code Structural pattern matching is coming in Python 3.10. This article explores how to use it to write Pythonic co
Python for Beginners: How to remove punctuation from a Python String

Link: https://www.pythonforbeginners.com/python-strings/how-to-remove-punctuation-from-a-python-string


Often during data analysis tasks, we come across text data which needs to be processed so that useful information can be derived from the data. During text processing, we may have to extract or remov