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

When I use `DataReader()` to fetch data from `"famafrench"`: ``` import pandas as pd # 2.0.3 import pandas_datareader as pdr # 0.10.0 start_date = "1960-01-01" end_date = "2021-12-31" factors_ff_monthly_raw =...

Hi, today noticed that get_quote_yahoo is not working any more... Comes back with error: pandas_datareader._utils.RemoteDataError: Unable to read URL: https://query1.finance.yahoo.com/v7/finance/quote?symbols=9888.HK&lang=en-US&corsDomain=finance.yahoo.com&.tsrc=finance Response Text: b'{"finance":{"result":null,"error":{"code":"Unauthorized","description":"Invalid Cookie"}}}' Does anybody know what may be...

In https://github.com/pydata/pandas-datareader/pull/978 project moved away from setup.py but there are still several references to setup.py in documentation: > $ grep -r setup.py . ... ./docs/source/index.rst: python setup.py install ./README.md:python setup.py...

I have been using this method daily for the last few weeks, so I know it worked on Friday. Below is the min code to cause the error. I am...

It seems that lately the code - sector_df = web.get_sector_performance_av(api_key=ALPHA_API_KEY) is returning an error 'Meta Data' and I am not sure what that means. I also checked that my Alphavantage...

Current line : return pd.concat(dfs, self._concat_axis) According to new pandas update it says we need to specify any Series or data-frame objects with the keyword 'objs' as a parameter Update...

Using your package...I've tried to run my example.py ``` import pandas_datareader.data as web import datetime df = web.DataReader('PRICES_CPI', 'oecd') print(df[['Argentina']]) ``` I get... ``` requests.exceptions.SSLError: HTTPSConnectionPool(host='stats.oecd.org', port=443): Max retries exceeded...

I got an error about fetching the list of SP500 component stock, shown below: `import pandas_datareader as pdr # define start and end dates start_date = '2022-01-01' end_date = '2022-12-31'...

As of 9:30 or so EST on 12/25, the DataReader method could not retrieve data from stooq. It returned a blank dataframe. Is there any other option for getting the...