Planet Python RSS
212 subscribers
17K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Python Insider: Python 3.10.0a4 is now available for testing

Link: http://feedproxy.google.com/~r/PythonInsider/~3/N_JPVuqR_Hc/python-3100a4-is-now-available-for.html

 Happy new year to all of you. I hope you all have a great start of the year! And how to best celebrate that we have left 2020 behind that with a new Python alpha release? :) Go get it here:https://ww
Erik Marsja: How to Make a Violin plot in Python using Matplotlib and Seaborn

Link: https://www.marsja.se/how-to-make-a-violin-plot-in-python-using-matplotlib-and-seaborn/

The post How to Make a Violin plot in Python using Matplotlib and Seaborn appeared first on Erik Marsja.
In this Python data visualization tutorial, we are going to learn how to create a violin plot u
Matthew Wright: Boolean Indexing in Pandas

Link: https://www.wrighters.io/2021/01/04/boolean-indexing-in-pandas/

This is the third post in the series on indexing and selecting data in pandas. If you haven't read the others yet, see the first post that covers the basics of selecting based on index or relative num
Podcast.__init__: How Python's Evolution Impacts Your Fluency With Luciano Ramalho

Link: https://www.pythonpodcast.com/luciano-ramalho-python-evolution-episode-296/

On its surface Python is a simple language which is what has contributed to its rise in popularity. As you move to intermediate and advanced usage you will find a number of interesting and elegant des
Python Pool: Numpy isin Function Explained With Examples in Python

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

Hello geeks and welcome in this article, we will cover the NumPy isin(). Along with that, for an overall better understanding, we will also look at its syntax and parameter. Then we will see the appli
Mike Driscoll: New Effective Book Authoring Course from Matt Harrison

Link: https://www.blog.pythonlibrary.org/2021/01/05/new-effective-book-authoring-course-from-matt-harrison/

Matt Harrison asked me to take part in his latest course, Effective Book Authoring. This course will help you learn how to write a technical book. Matt interviewed me about how I approach book writing
Full Stack Python: Using Django & AssemblyAI for More Accurate Twilio Call Transcriptions

Link: https://www.fullstackpython.com/blog/django-accurate-twilio-voice-transcriptions.html

Recording phone calls
with one or more participants is easy with
Twilio's Programmable Voice API,
but the speech-to-text accuracy can be poor, especially for transcription
of words from niche domain
Stack Abuse: How to Merge DataFrames in Pandas - merge(), join(), append(), concat() and update()

Link: https://stackabuse.com/how-to-merge-dataframes-in-pandas/

Introduction
Pandas provides a huge range of methods and functions to manipulate data, including merging DataFrames. Merging DataFrames allows you to both create a new DataFrame without modifying the
Real Python: Building With Django REST Framework

Link: https://realpython.com/courses/django-rest-framework/

REST is a loosely defined protocol for listing, creating, changing, and deleting data on your server over HTTP. The Django REST framework (DRF) is a toolkit built on top of the Django web framework th
PyCoder’s Weekly: Issue #454 (Jan. 5, 2021)

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

#454 – JANUARY 5, 2021 View in Browser » Ditching Excel for Python: Lessons Learned From a Legacy Industry Learn how Python is revolutionizing an industry that’s notoriously resistant to change
Python Morsels: What are Dunder Methods?

Link: https://www.pythonmorsels.com/topics/what-are-dunder-methods/




Related article:

Python built-ins worth learning
Nina Zakharenko - Elegant Solutions For Everyday Python Problems - PyCon 2018

Transcript:
Let's talk about how third-party library authors use dun
Mike Driscoll: Pillow: Image Processing with Python Book Sample

Link: https://www.blog.pythonlibrary.org/2021/01/05/pillow-image-processing-with-python-book-sample/

The Kickstarter for my latest book, Pillow: Image Processing with Python, was fully funded yesterday. I know it can be hard to decide if you want to buy a book without seeing it, so I am posting the f
Brett Cannon: Unravelling the import statement

Link: https://snarky.ca/unravelling-the-import-statement/

As part of my series on Python's syntactic sugar, I am going to cover import statements. This will include delving into the quirky interface of __import__()(although in actual code you should use impo
ListenData: Run SAS in Python without Installation

Link: https://www.listendata.com/2021/01/run-sas-in-python-without-installation.html

IntroductionIn the past few years python has gained a huge popularity as a programming language in data science world. Many banks and pharma organisations have started using Python and some of them ar
Python Pool: Numpy Random Uniform Function Explained in Python

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

Hello geeks and welcome in this article, we will cover the NumPy random uniform(). Along with that, for an overall better understanding, we will also look at its syntax and parameter. Then we will see
Python Pool: Numpy Angle Explained With Examples

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

Hello geeks and welcome in this article, we will cover the NumPy angle(). Along with that, for an overall better understanding, we will also look at its syntax and parameter. Then we will see the appl
Python Pool: Is it Possible to Negate a Boolean in Python? [Answered]

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

Before letting you know about the exact answer of Is it Possible to Negate a Boolean in Python? You must know what is the meaning of negating (negate) in layman’s language. So, as you may already know
Learn PyQt: Toggle & AnimatedToggle — Toggle switch Widget QCheckBox replacement

Link: https://www.learnpyqt.com/widgets/pyqt-toggle-widget/

The standard QCheckBox widget provides a simple way to add toggleable options to your UI, mimicking a checkable box
on a paper form. By clicking on the widget the user can toggle the widget on and off