##yahoofinance
Client to retrieve ticker symbol or full company name using Yahoo Finance API
$ pip install requests
from yahoofinance import YahooFinance
yf = YahooFinance()
print yf.get_ticker('Google')
## returns GOOG
print yf.get_name('Google')
## returns Google Inc.
Licensed under the MIT license. http://opensource.org/licenses/MIT