pandas-datareader icon indicating copy to clipboard operation
pandas-datareader copied to clipboard

Extract data from a wide range of Internet sources into a pandas DataFrame.

Results 141 pandas-datareader issues
Sort by recently updated
recently updated
newest added

web.DataReader('Portfolios_Formed_on_OP', 'famafrench') its not working I tried every data, but only the data that contain OP(operating profitability) is not working. error message is below ================ UnicodeDecodeError: 'utf-8' codec can't decode...

Hi, Since late 2021, I am not able to get historical prices on commodities from stooq.com using datareader. I use StooqDailyReader from pandas_datareader.stooq. When I try to get prices on...

Yesteday I found this error. I suppose yahoo finace has changed html structure. ``` [/usr/local/lib/python3.7/dist-packages/pandas_datareader/base.py](https://localhost:8080/#) in _get_response(self, url, params, headers) 179 msg += "\nResponse Text:\n{0}".format(last_response_text) 180 --> 181 raise RemoteDataError(msg)...

I went through the example on the documentation and seems that is not working ``` from pandas_datareader import data import pandas_datareader.data as web import pandas as pd import datetime as...

There are cases in yahoo data where there are duplicated rows, this simple fix will remove the second duplicated row if it exists. A stack overflow thread that contains people...

- [x] closes #738 and #610 - [x] tests added / passed - [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff` - [x] passes `black --check pandas_datareader`...

when trying to get a dataframe: `df = pandas_datareader.yahoo.daily.YahooDailyReader('SPY').read()` error `RemoteDataError: Unable to read URL: https://finance.yahoo.com/quote/SPY/history?period1=1470542400&period2=1628308799&interval=1d&frequency=1d&filter=history` expected result: a dataframe with prices

Reports the following warning : import pandas as pd import pandas_datareader import numpy as np import statsmodels.api from statsmodels import robust /usr/local/lib/python3.7/dist-packages/statsmodels/tools/_testing.py:19: FutureWarning: pandas.util.testing is deprecated. Use the functions in...

So, I have tried to request options and calls using ``` import pandas_datareader.data as web FB = web.YahooOptions('FB') print(FB.expiry_dates) ``` which yields ``` pandas_datareader._utils.RemoteDataError: Unable to read URL: https://query1.finance.yahoo.com/v7/finance/options/FB Response...