Yahoo Finance Api Python

# Python 2 only
# Install package with 'pip install yahoo-finance'

from yahoo_finance import Share
yahoo = Share('YHOO')
print yahoo.get_open()
print yahoo.get_price()
print yahoo.get_trade_datetime()
Temerold