Since yahoo discontinued their API support pandas datareader now fails
import pandas_datareader.data as web
import datetime
start = datetime.datetime(2016, 1, 1)
end = datetime.datetime(2017, 5, 17)
web.DataReader('GOOGL', 'yahoo', start, end)
HTTPError: HTTP Error 401: Unauthorized
is there any unofficial library allowing us to temporarily work around the problem? Anything on Quandl maybe?