Planet Python RSS
213 subscribers
17K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
codingdirectional: Create a new Python Project with Visual Studio 2019 RC IDE

Link: http://codingdirectional.info/2019/03/16/create-a-new-python-project-with-visual-studio-2019-rc-ide/

Hello people, after a while of rest I have started a new python project today which I believe will take almost a month to complete. I will update the progress of this project at least a few times per
Nick Coghlan: What does "x = a + b" mean?

Link: https://www.curiousefficiency.org/posts/2019/03/what-does-x-equals-a-plus-b-mean.html


Making sense of "x = a + b"

Shorthand notations and shared context
The original shared context: Algebra
The corresponding Python context: Numbers
Another mathematical context: Matrix algebra
The cor
Weekly Python StackOverflow Report: (clxix) stackoverflow python report

Link: http://python-weekly.blogspot.com/2019/03/clxix-stackoverflow-python-report.html

These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2019-03-16 20:11:00 GMTPython if-else code style for reduced code for r
leftmouseclickin: Further modifying the Bollinger Bands features

Link: http://leftmouseclickin.com/2019/03/17/further-modifying-the-bollinger-bands-features/


Our Own Score




In this chapter, we will further modify the previous plot_stock_technical method which uses to plot the Bollinger Bands graph. We will create a few combo boxes that offer various ex
gamingdirectional: Put the power bar on the game scene

Link: http://gamingdirectional.com/blog/2019/03/17/put-the-power-bar-on-the-game-scene/

Finally we have came to the last chapter of this pygame project, in this chapter we will put three things on the game scene, a text which indicates what is the power level of the player, a game level
leftmouseclickin: Plotting the Chaikin AD line graph

Link: http://leftmouseclickin.com/2019/03/18/plotting-the-chaikin-ad-line-graph/


Our Own Score




In this chapter, we will create a method to plot the Chaikin AD line graph with the help from the alpha vantage module. The Accumulation Distribution Line (ADL) is used by Chaikin O
Mike Driscoll: PyDev of the Week: Bruno Roche

Link: http://www.blog.pythonlibrary.org/2019/03/18/pydev-of-the-week-bruno-roche/

This week we welcome Bruno Roche (@rochacbruno) as our PyDev of the Week! Bruno works for Red Hat and participates in the Python, Flask and Rust communities. You can see some of his projects over on G
codingdirectional: Create a sports score application with python

Link: http://codingdirectional.info/2019/03/18/create-a-sports-score-application-with-python/

Hello and welcome back. In this chapter, we will create a small sports score application with the help of the sports.py module. We will create a simple application to retrieve the score of the NBA res
Django Weblog: Django 2.2 release candidate 1 released

Link: https://www.djangoproject.com/weblog/2019/mar/18/django-22-rc1/

Django 2.2 release candidate 1 is the final opportunity for you to try out the salmagundi of new
features before Django 2.2 is released.
The release candidate stage marks the string freeze and the cal
Zato Blog: HTTP Method and Accept headers

Link: https://zato.io/blog/posts/http-accept-method-headers.html

Zato 3.1 includes new means to manage access to REST services based on input Method and Accept headers in HTTP requests - here is how they can be employed in practice.
A bit of background
Prior to Zat
Montreal Python User Group: Montréal-Python 74: Call for speakers - Virtual Echo

Link: https://montrealpython.org/en/2019/03/cfp-mp74/

Spring is upon us and it's time for pythonistas to gather and discuss the latest news and their latest projects.
For this occasion we are looking for speakers who would like to share their latest disc
Mike Driscoll: PyDev of the Week: Bruno Rocha

Link: http://www.blog.pythonlibrary.org/2019/03/18/pydev-of-the-week-bruno-rocha/

This week we welcome Bruno Rocha (@rochacbruno) as our PyDev of the Week! Bruno works for Red Hat and participates in the Python, Flask and Rust communities. You can see some of his projects over on G
Podcast.__init__: Wes McKinney's Career In Python For Data Analysis

Link: https://www.pythonpodcast.com/wes-mckinney-python-for-data-analysis-episode-203/

Python has become one of the dominant languages for data science and data analysis. Wes McKinney has been working for a decade to make tools that are easy and powerful, starting with the creation of P
Real Python: How to Build a Python GUI Application With wxPython

Link: https://realpython.com/python-gui-with-wxpython/

There are many graphical user interface (GUI) toolkits that you can use with the Python programming language. The big three are Tkinter, wxPython, and PyQt. Each of these toolkits will work with Windo
leftmouseclickin: Plotting Absolute Price Oscillator (APO) Line with Python

Link: http://leftmouseclickin.com/2019/03/18/plotting-absolute-price-oscillator-apo-line-with-python/


Our Own Score




If you make a search on Google about APO Line, this is what you will see: Absolute Price Oscillator (APO) moving averages of a security’s price and is expressed as an absolute valu
Python Insider: Python 3.5.7 is now available

Link: http://feedproxy.google.com/~r/PythonInsider/~3/n0mOibtx6_A/python-3.html

Python 3.5.7 is now available.  You can download Python 3.5.7 here.
Python Insider: Python 3.4.10 is now available

Link: http://feedproxy.google.com/~r/PythonInsider/~3/N5tvkDIQ47g/python-3410-is-now-available.html

Python 3.4.10 is now available.  You can download it here.

Python 3.4.10 is the final release in the Python 3.4 series.  As of this release, the 3.4 branch has been retired, no further changes to 3.4
codingdirectional: Get only the latest live match from NBA with python

Link: http://codingdirectional.info/2019/03/19/get-only-the-latest-live-match-from-nba-with-python/

Hello and welcome back, in this chapter we will continue to develop the previous sports score application by showing all the latest live matches from the NBA on the text widget area. The sports.py mod
leftmouseclickin: Plotting the average directional movement index rating line with python

Link: http://leftmouseclickin.com/2019/03/19/plotting-the-average-directional-movement-index-rating-line-with-python/


Our Own Score




In this chapter, we will create the plot adxr method in the ongoing Forex and Stock application project to plot the average directional movement index rating line. The Average Direc
Shyama Sankar Vellore: Python Tuples: Cheat Sheet

Link: http://feedproxy.google.com/~r/blogspot/learnpython/~3/f9Ix7gKUT_c/python-tuples-cheat-sheet.html

A cheat sheet for tuples in Python. What are tuples? How are they used in Python?