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

Code : ``` import pandas as pd import pandas_datareader.data as web FB = web.YahooOptions('FB') for exp in FB.expiry_dates: print(exp.isoformat()) ``` I installed pandas-datareader. Error : > pandas_datareader._utils.RemoteDataError: Unable to read...

Hi guys, I'm trying to get data from Google Finance source but it yields this error: > NotImplementedError: data_source='google' is not implemented There is also no section in the official...

Hi! I run into an error when using pandas-datareader. I think it's probably related to the unix time stamp. my code: from pandas_datareader import data as web import datetime import...

When I request data for a nonexistent symbol, here's the error I get: ```python >>> import pandas_datareader.data as web >>> web.DataReader("FAKETICKER", 'yahoo') --------------------------------------------------------------------------- KeyError Traceback (most recent call last) File...

I am using the latest version of pandas-datareader (0.10.0). I recently updated to Python 3.10, and rebuilt my project's virtual environment form scratch (from its requirements.txt file). When I run...

When I run the code it keeps getting me this error ``` import pandas_datareader as web import datetime as dt start = dt.datetime(2019,1,1) end = dt.datetime.now() data = web.DataReader('TSLA', 'yahoo',...

My code: from pandas_datareader import data as web result = web.DataReader('GOOG', 'yahoo', start='2023-09-10', end='2023-10-10') ERROR: Traceback (most recent call last): File "/Users/robkang/Documents/StrategyResearch/test.py", line 3, in result = web.DataReader('GOOG', 'yahoo', start='2023-09-10',...

File "/Users/yeison/miniforge3/envs/tf-metal-0.6.0/lib/python3.10/site-packages/pandas_datareader/yahoo/daily.py", line 153, in _read_one_data data = j["context"]["dispatcher"]["stores"]["HistoricalPriceStore"] TypeError: string indices must be integers

Running this in jupyter notebook: start = datetime.date.today() - datetime.timedelta(days=5 * 365) end = datetime.date.today() df = web.DataReader(["sp500", "NASDAQCOM", "CBBTCUSD"], "fred", start, end) Gives me this error: [*********************100%%**********************] 3 of...