Pandas-datareader: Yahoo - RemoteDataError: Unable to read URL:

Created on 1 Jun 2020  路  4Comments  路  Source: pydata/pandas-datareader

Is anyone facing similar issue?

import pandas as pd
import pandas_datareader as web
import datetime as dt
start = dt.datetime(2018, 1, 1)
end = dt.datetime(2020, 1, 1)
web.DataReader(name='AAPL', data_source='yahoo', start=start,end= end)
RemoteDataError: Unable to read URL: https://finance.yahoo.com/quote/AAPL/history?period1=1514797200&period2=1577955599&interval=1d&frequency=1d&filter=history

Most helpful comment

All 4 comments

Hi, how did you fix this?

I am facing the same error. Let ma know if you figured out something.

Hi,

I have the same problem did you fix it finally?

Some people said in the past, the Yahoo Finance API Service has been discontinued, too, but it has later been reinstated and that fixed the problem

Alternatively, we can also use sources like yfinance

Just let me know please

Was this page helpful?
0 / 5 - 0 ratings