Planet Python RSS
213 subscribers
17K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Weekly Python StackOverflow Report: (ccxlv) stackoverflow python report

Link: http://python-weekly.blogspot.com/2020/10/ccxlv-stackoverflow-python-report.html

These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2020-10-10 19:48:15 GMTI have a high-performant function written in Jul
Awesome Python Applications: Galaxy

Link: https://github.com/galaxyproject/galaxy


Galaxy: Web-based platform for reproducible and transparent computational research, with a focus on bioinformatics.
Links:

Repo
Home
Docs
"CodersLegacy": Scrapy vs BeautifulSoup | Python Web Crawlers

Link: https://coderslegacy.com/scrapy-vs-beautifulsoup/

This article is Scrapy vs BeautifulSoup comparison.
If you ever come across a scenario where you need to download data off the internet, you’ll need to use a Python Web Crawler. There are two good web
ABlog for Sphinx: ABlog v0.10.11 released

Link: https://ablog.readthedocs.org/release/ablog-v0.10-released/#ablog-v0-10-11-released


Pull Requests merged in:
improving glob matching and documenting it from choldgraf.
Ram Rachum: GridRoyale - A life simulation for exploring social dynamics

Link: https://blog.ram.rachum.com/post/631666550733225984



GridRoyale - A life simulation for exploring social dynamics



Another day, another project :)






This is a project that I wanted to do for year
Andrea Grandi: Python 3.9 introduces removeprefix and removesuffix

Link: https://www.andreagrandi.it/2020/10/11/python39-introduces-removeprefix-removesuffix/

A quick tutorial to removeprefix and removesuffix methods which have been introduced with Python 3.9.0
IslandT: Write a python function that produces an array with the numbers 0 to N-1 in it

Link: https://kibiwebgeek.com/write-a-python-function-that-produces-an-array-with-the-numbers-0-to-n-1-in-it/

In this article, we will create a python function that will produce an array with the numbers 0 to N-1 in it.
For example, the following code will result in an array containing the numbers 0 to 4:
arr
ListenData: Learn Python for Data Science

Link: https://www.listendata.com/2020/10/learn-python-for-data-science.html

This tutorial would help you to learn Data Science with Python by examples. It is designed for beginners who want to get started with Data Science in Python. Python is an open source language and it i
IslandT: Merge two dictionaries using the Dict Union operator

Link: https://kibiwebgeek.com/merge-two-dictionaries-using-the-dict-union-operator/

In this article we will create a Python function which will merge two dictionaries using the Dict Union operator.
The Dict Union operator will only merge the key and value pair with a unique key’s na
IslandT: Beginning steps to create a Stockfish chess application

Link: https://kibiwebgeek.com/beginning-steps-to-create-a-stockfish-chess-application/

I am a chess player and I like to play chess, in order to improve my chess skill recently I have decided to create a chess application which I can play with so I can further improve my chess skill and
Chris Moffitt: Case Study: Processing Historical Weather Pattern Data

Link: https://pbpython.com/weather-data.html


Introduction
The main purpose of this blog is to show people how to use Python to solve real world problems.
Over the years, I have been fortunate enough to hear from readers about how they have used
PyCharm: Datalore by JetBrains: Online Jupyter Notebooks Editor With PyCharm’s Code Insight

Link: http://feedproxy.google.com/~r/Pycharm/~3/74E-U6w3cSU/

If you work with Jupyter Notebooks and want to run code, produce heavy visualizations, and render markdown online – give Datalore a try. It comes with cloud storage, real-time collaboration, notebook
Wing Tips: Debug Docker Compose Containerized Python Apps with Wing Pro

Link: https://wingware.com/blog/docker-compose

This Wing Tip describes how to configure Docker Compose
so that Python code running on selected container services can be debugged with Wing Pro.
This makes it easy to develop and debug containerized
Real Python: Using ggplot in Python: Visualizing Data With plotnine

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

In this tutorial, you’ll learn how to use ggplot in Python to create data visualizations using a grammar of graphics. A grammar of graphics is a high-level tool that allows you to create data plots in
Stack Abuse: Add Legend to Figure in Matplotlib

Link: https://stackabuse.com/add-a-legend-to-figure-in-matplotlib/

Introduction
Matplotlib is one of the most widely used data visualization libraries in Python. Typically, when visualizing more than one variable, you'll want to add a legend to the plot, explaining w
IslandT: Return a list of multiply numbers with Python

Link: https://kibiwebgeek.com/return-a-list-of-multiply-numbers-with-python/

In this simple exercise from CodeWars, you will build a function program that takes a value, integer and returns a list of its multiples up to another value, limit. If the limit is a multiple of integ