Planet Python RSS
213 subscribers
17K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
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?
Django Weblog: 2018 Malcolm Tredinnick Memorial Prize awarded to Kojo Idrissa

Link: https://www.djangoproject.com/weblog/2019/mar/19/2018-malcolm-tredinnick-prize-kojo-idrissa/

The Board of the Django Software Foundation is pleased to announce that the 2018 Malcolm Tredinnick Memorial Prize has been awarded to Kojo Idrissa.
Kojo has been active in the Django community since
Mike Driscoll: How to Distribute a wxPython Application

Link: http://www.blog.pythonlibrary.org/2019/03/19/distributing-a-wxpython-application/

Let’s say you finished up a wonderful GUI application using wxPython. How do you share it with the world? This is always the dilemma when you finish an amazing program. Fortunately, there are several
PyCoder’s Weekly: Issue #360 (March 19, 2019)

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

#360 – MARCH 19, 2019 View in Browser » How to Build a Python GUI Application With wxPython In this step-by-step tutorial, you’ll learn how to create a cross-platform graphical user interface (G
Shyama Sankar Vellore: Python Sets: Cheat Sheet

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

A cheat sheet for sets in Python. What is the 'set' datatype in Python? How is it used?Jump to the cheat sheetKey pointsUnlike lists and tuples, a set is an unordered collection of unique elements.A s
Abhijeet Pal: Starting A Django Project

Link: https://djangocentral.com/starting-a-django-project/

Django is one of the most popular open source full-stack web development Framework written in Python. Django is a framework for perfectionists with deadlines, it takes care of much of the hassle of We
pythonwise: Speed: Default value vs checking for None

Link: http://pythonwise.blogspot.com/2019/03/speed-default-value-vs-checking-for-none.html

Python's dict has a get method. It'll either return an existing value for a given key or return a default value if the key is not in the dict. It's very tempting to write code like val = d.get(key, Ob
leftmouseclickin: Plotting the average directional movement index values

Link: http://leftmouseclickin.com/2019/03/20/plotting-the-average-directional-movement-index-values/


Our Own Score




Hello and welcome back, in this chapter we will continue developing our Forex and Stock application. We will create a method to plot the average directional movement index values. T
Real Python: 13 Project Ideas for Intermediate Python Developers

Link: https://realpython.com/intermediate-python-project-ideas/

Learning the basics of Python is a wonderful experience. But the euphoria of just learning can be replaced by the hunger for hands-on projects. It’s normal to want to build projects, hence the need fo
Trey Hunner: Unique sentinel values, identity checks, and when to use object() instead of None

Link: http://treyhunner.com/2019/03/unique-and-sentinel-values-in-python/

Occasionally in Python (and in programming in general), you’ll need an object which can be uniquely identified.
Sometimes this unique object represents a stop value or a skip value and sometimes it’s
Abhijeet Pal: How To Create A ‘Hello, World!’ Application With Django

Link: https://djangocentral.com/create-a-hello-world-django-application/

Django is a high-level full stack open source web framework written in Python, that encourages rapid development and clean, pragmatic design. Django comes with lots of advance functionalities baked in