Skip to content

Instantly share code, notes, and snippets.

@jonnyace
jonnyace / Stock Price Puller
Last active December 28, 2015 08:59
Pulls a stock price from a ticker
import urllib
import re
def get_quote(symbol):
base_url = 'http://finance.google.com/finance?q='
content = urllib.urlopen(base_url + symbol).read()
m = re.search('id="ref_694653_l".*?>(.*?)<', content)
if m:
quote = m.group(1)
else: