import pandas_datareader.data as web
import datetime
start = datetime.datetime(2010, 1, 1)
end = datetime.datetime(2015, 5, 9)
web.DataReader('AAPL', 'google', start, end)
getting an year data irrespective of start and end dates

@rsvp Is the google historical data is just merely a change of link from www.google.com to finance.google.com ?
or it has a more complicated issues to deal with before merge into pandas-datareader? If it is stopped will cause a big issues for non US user as we do not have any alternatives which is need to cost a lot of money like Bloomberg/reuters
@bkcollection I have covered both Google Finance URL Change and Alternative Data Sources at https://github.com/rsvp/fecon235/issues/7 in detail. The situation is still in flux.
thank you for the thorough description of the problem with Google and
Yahoo. I've had good luck with Quandl, but it is not infallible. Some
symbols are not available. Have not tried Tingo and Alpha Advantage, so I
have no experience.
Looks like time to ditch Google and Yahoo. Frequent interface changes are
challenging to keep up with.
On Sat, Sep 23, 2017 at 10:21 AM, Adriano notifications@github.com wrote:
@bkcollection https://github.com/bkcollection I have covered both Google
Finance URL Change and Alternative Data Sources at rsvp/fecon235#7
https://github.com/rsvp/fecon235/issues/7 in detail. The situation is
still in flux.—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
https://github.com/pydata/pandas-datareader/issues/395#issuecomment-331654316,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AEmxHHHorKEjLeSxAFue6kw2LgIXp00bks5slT4wgaJpZM4PZuI_
.
It is easy to fix just change the googles daily.py file to look llike this one.
The reason it doesnt fetch the data is that google changed its finance url from http://www.google.com/finance/historical to http://finance.google.com/finance/historical during the redirect the dates are not passed in the HTTP request.
I just ran into this issue with version 0.5.0 and confirmed that the fix suggested above by @innocentkithinji does restore expected functionality.
Fixed in #404
Most helpful comment
It is easy to fix just change the googles daily.py file to look llike this one.
The reason it doesnt fetch the data is that google changed its finance url from http://www.google.com/finance/historical to http://finance.google.com/finance/historical during the redirect the dates are not passed in the HTTP request.