Planet Python RSS
214 subscribers
17K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Mike Driscoll: PyDev of the Week: Patrick Loeber

Link: https://www.blog.pythonlibrary.org/2021/08/02/pydev-of-the-week-patrick-loeber/

This week we welcome Patrick Loeber (@python_engineer) as our PyDev of the Week! Paticks runs a popular Python YouTube channel that covers Python basics, machine learning, and more! You can learn more
Stack Abuse: How to Reverse a List in Python

Link: https://stackabuse.com/how-to-reverse-a-list-in-python

Introduction
Python is a flexible language, and there's typically several ways to perform the same, menial task. Choosing an approach can depend on the time or space complexity, or simply on your pers
Philippe Normand: Introducing the GNOME Web Canary flavor

Link: https://base-art.net/Articles/introducing-the-gnome-web-canary-flavor/

Today I am happy to unveil GNOME Web Canary which aims to provide bleeding edge,
most likely very unstable builds of Epiphany, depending on daily builds of the
WebKitGTK development version. Read on t
Python for Beginners: How to Open a Non-Text File in Python

Link: https://www.pythonforbeginners.com/files/how-to-open-a-non-text-file-in-python

The Python standard library provides several tools for reading and writing text files, but what about non-text files? With Python, it’s possible to open non-text files as well. We can do this in a var
Real Python: Python's ChainMap: Manage Multiple Contexts Effectively

Link: https://realpython.com/python-chainmap/

Sometimes when you’re working with several different dictionaries, you need to group and manage them as a single one. In other situations, you can have multiple dictionaries representing different sco
PythonClub - A Brazilian collaborative blog about Python: Participe da Python Brasil 2021, a maior conferência de Python da América Latina

Link: http://pythonclub.com.br/python-brasil-2021.html

Python Brasil 2021, a maior conferência de Python da América Latina, acontecerá entre os dias 11 e 17 de outubro, reunindo pessoas desenvolvedoras, cientistas de dados e entusiastas da tecnologia.

A
Matthew Wright: Building Jupyter notebook workflows with scrapbook

Link: https://www.wrighters.io/building-jupyter-notebook-workflows-with-scrapbook/

The scrapbook library allows you to save state inside the notebook file itself, making it easier to develop workflows using Jupyter notebooks.The post Building Jupyter notebook workflows with scrapboo
PyBites: 5 Helpful Python Decorator Use Cases

Link: https://pybit.es/articles/5-helpful-python-decorator-use-cases/

Some time ago I asked on Twitter:
I was curious what you use #Python decorators for? 
And I got quite an amazing / insightful response:

I was curious what you use #Python decorators for?It would be n
Python Morsels: Making a read-only attribute

Link: https://www.pythonmorsels.com/topics/making-read-only-attribute/




Transcript
How can we make a read-only attribute in Python?
A property is like an auto-updating attribute
We have a class called Square which accepts a length and an optional color and stores those
Python for Beginners: Absolute value of a number in Python

Link: https://www.pythonforbeginners.com/basics/absolute-value-of-a-number-in-python

While working with numbers in python,we need to compare the magnitude of two numbers irrespective of their sign. For example, Magnitude of -10 is greater than magnitude of 1. But when -10 and 1 is com
Python Insider: Python 3.10.0rc1 is available

Link: http://feedproxy.google.com/~r/PythonInsider/~3/jWAUuem6-u4/python-3100rc1-is-available.html

Python 3.10.0 is almost ready. This release, 3.10.0rc1, is the penultimate release preview. You can get it here:https://www.python.org/downloads/release/python-3100rc1/This release, **3.10.0rc1**, is
PyCoder’s Weekly: Issue #484 (Aug. 3, 2021)

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

#484 – AUGUST 3, 2021 View in Browser » Python and REST APIs: Interacting With Web Services In this tutorial, you’ll learn how to use Python to communicate with REST APIs. You’ll learn about RES
Podcast.__init__: Delivering Deep Learning Powered Speech Recognition As A Service For Developers At AssemblyAI

Link: https://www.pythonpodcast.com/assemblyai-deep-learning-speech-recognition-episode-326/

Building a software-as-a-service (SaaS) business is a fairly well understood pattern at this point. When the core of the service is a set of machine learning products it introduces a whole new set of
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.
Test and Code: 162: Flavors of TDD

Link: https://testandcode.com/162

What flavor of TDD do you practice?
In this episode we talk about:

Classical vs Mockist TDD
Detroit vs London (I actually refer to it in the episode as Chicago instead of Detroit. Oh well.)
Static v
Programiz: Python Program to Check If Two Strings are Anagram

Link: https://www.programiz.com/python-programming/examples/anagram

In this example, you will learn to check if two strings are anagram.