pandas-datareader
pandas-datareader copied to clipboard
Extract data from a wide range of Internet sources into a pandas DataFrame.
When calling **MEI_CLI** it looks like there's some parsing issue with the data set. Given the code below: ```python import pandas_datareader.data as dr dataset = dr.DataReader('MEI_CLI', 'oecd') print(dataset.columns) ``` or...
https://github.com/pydata/pandas-datareader/blob/90f155ac6dcfa53a81441d8886d306c3790049bb/pandas_datareader/yahoo/daily.py#L128 _get_params() of YahooDailyReader doesn't consider local timezone of the request (nor the timezone of the requested data), it just does a hard shift by 4 hours.
Yahoo Options has been immediately deprecated due to large breaks in the API without the introduction of a stable replacement. Pull Requests to re-enable these data connectors are welcome.
I have written a simple code to get data of a stock. import numpy as np import pandas as pd import pandas_datareader as pdr pdr.get_data_yahoo('RELIANCE.NS').tail() But this is throwing up...
This is a feature request. Currently ```python3 from pandas_datareader.famafrench import FamaFrenchReader description = FamaFrenchReader("F-F_Research_Data_Factors").read()["DESCR"] ``` Returns data as a string with various information, rather than something more easily accessible in...
Getting this error consistently when running: import pandas_datareader.data as pdr pdr.DataReader("AAPL", 'stooq') **OSError: StooqDailyReader request returned no data; check URL for invalid inputs: https://stooq.com/q/d/l/** I thought this was resolved. datareader...
Why there is no "Volume", only "Value"? I woud like to get "Volume" as "yahoo", "google", "quandl".
Some tickers produce this error while most work fine. This one: --------------------------------------------------------------------------- KeyError Traceback (most recent call last) C:\ProgramData\Anaconda3\lib\site-packages\pandas\core\indexes\base.py in get_loc(self, key, method, tolerance) 3077 try: -> 3078 return self._engine.get_loc(key)...
I'm trying to use pandas_datareader for data from Quandl where I have registered and have the API key. I try to obtain data in this way: `df = web.DataReader(symbol, data_source,...
The currently used URL for the FRED data is giving a 404. * https://github.com/pydata/pandas-datareader/blob/master/pandas_datareader/fred.py#L7-L15 Related to #435, where the old new link works... * https://fred.stlouisfed.org/graph/fredgraph.csv?id=GDP