Planet Python RSS
214 subscribers
17.1K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
"Morphex's Blogologue": An Open Source license for scripts, small code bits and programs

Link: http://blogologue.com/blog_entry?id=1621189037X11

I have some miscellaneous code here:https://github.com/morphex/miscWhich hasn't been given a license yet, and I was wondering what license to give it. Just to make things clear, and make it easier to
AI Pool: Visualization with Seaborn

Link: https://ai-pool.com/a/s/visualization-with-seaborn

This article will enable you to use the seaborn python package to visualize your structured data with seaborn barchart, scatter plot, histogram, line, and distplot
Python Software Foundation: The 2021 Python Language Summit: Progress on Running Multiple Python Interpreters in Parallel in the Same Process

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/JSbNFZCoINo/the-2021-python-language-summit_16.html

Victor Stinner and Dong-hee Na gave a presentation at the 2021 Python Language Summit about running multiple Python interpreters in parallel in the same process.Use Cases Victory Stinner started by ex
Python Pool: Matplotlib 2D Histogram Plotting in Python

Link: https://www.pythonpool.com/matplotlib-2d-histogram/?utm_source=rss&utm_medium=rss&utm_campaign=matplotlib-2d-histogram

A histogram is commonly used to plot frequency distributions from a given dataset. Whenever we have numerical data, we use histograms to give an approximate distribution of that data. It shows how oft
Mike Driscoll: PyDev of the Week: Tim Arnold

Link: https://www.blog.pythonlibrary.org/2021/05/17/pydev-of-the-week-tim-arnold/

This week we welcome Tim Arnold (@jtimarnold) as our PyDev of the Week! Tim co-authored Black Hat Python, 2nd Edition: Python Programming for Hackers and Pentesters. If you’re interested in hacking or
Python Pool: [Solved] Valueerror: Too Many Values to Unpack (Expected 2)

Link: https://www.pythonpool.com/valueerror-too-many-values-to-unpack-expected-2-solved/?utm_source=rss&utm_medium=rss&utm_campaign=valueerror-too-many-values-to-unpack-expected-2-solved

Errors are illegal operations or mistakes. As a result, a program behaves unexpectedly. In python, there are three types of errors – Syntax errors, logic errors, and exceptions. Valuerror is one such
Python Pool: 6 Ways to Read a CSV file with Numpy in Python

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

Welcome to another module of numpy. In our previous module, we had got insights on numpy in python. But the task becomes difficult while dealing with files or CSV files in python as there are a humong
EuroPython: EuroPython 2021: Talk Voting is Open

Link: https://blog.europython.eu/europython-2021-talk-voting-is-open/

Talk voting is your chance to tell us what you’d like to see at EuroPython 2021. We will leave talk voting open until:Sunday, May 23, 23:59:59 CESTIn order to vote, please log in to the website and na
Paolo Amoroso: Python with Replit: A Journey in the Cloud

Link: http://blog.paoloamoroso.com/2021/05/python-with-replit-journey-in-cloud.html

Can I use only Replit for all my Python development? It’s what I set out to find.Follow along my journey to coding in Python on Chrome OS only with the tools and resources of Replit. I want to learn t
Real Python: Embedded Python: Build a Game on the BBC micro:bit

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

Writing code that runs in the terminal or in your web browser is good fun. Writing code that affects the real world, however, can be satisfying on a whole other level. Writing this sort of code is cal
PyCharm: Thank You for Supporting the PyCharm and DSF Campaign

Link: http://feedproxy.google.com/~r/Pycharm/~3/MLyjHkCO_nA/

This April we joined forces with the Django Software Foundation to get as much support as possible from our audience for Django.
In one month we managed to reach out to thousands of Pythonistas who he
PythonClub - A Brazilian collaborative blog about Python: Orientação a objetos de outra forma: Property

Link: http://pythonclub.com.br/oo-de-outra-forma-6.html

Seguindo com a série, chegou a hora de discutir sobre encapsulamento, ou seja, ocultar detalhes de implementação de uma classe do resto do código. Em algumas linguagens de programação isso é feito uti
Ned Batchelder: What’s in which Python 3.7–3.9?

Link: https://nedbatchelder.com/blog/202105/whats_in_which_python_3739.html

This is the fourth in a series of summarizations of what’s in each
release of Python. The first three were:
What’s in which Python 2.x?
What’s in which Python 3.0–3.3?
What’s in which Python 3.4–
Podcast.__init__: Leveling Up Natural Language Processing with Transfer Learning

Link: https://www.pythonpodcast.com/paul-azunre-transfer-learning-for-natural-language-processing-episode-315/

Natural language processing is a powerful tool for extracting insights from large volumes of text. With the growth of the internet and social platforms, and the increasing number of people and communi
Python Pool: Find Roots of the Polynomials Using Numpy in Python

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

We often solve polynomial equations in mathematics to find the roots of the equations. Have you ever wondered how to solve those mathematical equations using programming? Well, without using python, i
Paolo Amoroso: A NASA TV Still Frame Viewer in Python

Link: http://blog.paoloamoroso.com/2021/04/a-nasa-tv-still-frame-viewer-in-python.html

I wrote Spacestills, a Python program for viewing NASA TV still frames.The main window of Spacestills running on Replit.As a hobbyist wishing to improve my Python programming skills, for some time I’v
Python Pool: 2 Causes of TypeError: ‘Tuple’ Object is not Callable in Python

Link: https://www.pythonpool.com/typeerror-tuple-object-is-not-callable-solved/?utm_source=rss&utm_medium=rss&utm_campaign=typeerror-tuple-object-is-not-callable-solved

Introduction
In this article, we are exploring something new. From the title itself, you must be curious to know about the terms such as TypeError, tuple in python. So putting an end to your curiosity
Python Pool: Learn How to Combine Sets in Python

Link: https://www.pythonpool.com/learn-how-to-combine-sets-in-python/?utm_source=rss&utm_medium=rss&utm_campaign=learn-how-to-combine-sets-in-python

In python, a set is an unordered collection of items. The items in a set are unordered and thus cannot be accessed with indexes. Sets come in handy while performing mathematical operations in python.
Stack Abuse: Python's Iteration Tools: filter(), islice(), map() and zip()

Link: https://stackabuse.com/pythons-iteration-tools-filter-islice-map-and-zip/

Introduction
Python has touched the hearts of many software developers around the world, thanks to its utility and simplicity.
Python provides its users with a number of useful functions and data stru