Getting Stock Prices on Raspberry Pi (using Python)
by scottkildall in Circuits > Raspberry Pi
92070 Views, 325 Favorites, 0 Comments
Getting Stock Prices on Raspberry Pi (using Python)
I'm working on some new projects involving getting stock price data from the web, which will be tracked and displayed via my Raspberry Pi. I wanted to share the setup on how to do this using Python.
This short Instructable will show you how install a stock querying library to get (mostly) realtime stock prices using Yahoo Finance API. There's no GitHub involved!
You can also use this stock price-gathering engine on any Linux server.
Setup Your Raspberry Pi
If you haven't done so already, you'll want to do a basic configuration of your Raspberry Pi. You'll need internet access for this software installation.
If you are just getting started, my Ultimate Raspberry Pi Configuration Guide will get up and running.
I prefer using ssh and am using Terminal on a Mac, but as long as you have internet connection, you'll be fine.
We will be using the command line for this tutorial on a Raspberry Pi.
Run Updates and Upgrades
Whenever you add new libraries to your Raspberry Pi, you want to update and upgrade your software packages. We'll start with this step.
Type in
sudo apt-get update
then
sudo apt-get upgrade
choose Y to continue when asked
You'll see the usual scroll of Linux and will have to wait several minutes. Get up and do some stretching after each of these commands.
Install Pip
pip is a package manager and installer for Python. We want to have this installed to get the appropriate Yahoo python stock libraries loaded onto the Pi.
Type in:
sudo apt-get install python-pip
choose Y to continue when asked
This will take a few minutes.
Install Ystockquote
ystockquote is a Python module that will let you easily gather stock quotes from Yahoo. It does this reasonably quickly, a lot more so than BeautifulSoup, which would be another way to get stock data.
Type in:
sudo pip install ystockquote
Write the Python Script
We will create a new directory and a Python script to get the stock data. Type in:
mkdir stockquote cd stockquote nano stockquote.py
This will bring up the nano editor.
Type in this following 4-line Python script
import ystockquote
tickerSymbol = 'ADSK'
allInfo = ystockquote.get_all(tickerSymbol)
print tickerSymbol + " Price = " + allInfo["price"]
cntrl-X, Y will save the .py file.
Run It, Done!
Now run it.
python stockquote.py
You'll see the latest stock quote from Autodesk.
Buy! Buy! Buy!
I hope this was helpful!
Scott Kildall
For more on the my projects, you can find me here:
@kildall or www.kildall.com/blog