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

Every build fails: TestEcondb.test_get_tourism TestEurostat.test_get_sts_cobp_a TestFred.test_fred_multi Either tests or modules should be corrected for successful test passing

def get_surf(ticker): q = Options(ticker, 'yahoo').get_all_data() Does anyone know why I get the error message, "_pandas_datareader.exceptions.ImmediateDeprecationError: Yahoo Options has been immediately deprecated due to large breaks in the API without...

Hi, the stooq frequency feature does not work. When attempting to call, I receive this error: __init__() got an unexpected keyword argument 'freq'

I can't import this data frame using: tc = web.DataReader('MEI_BOP6', 'oecd'). It give me a dataframe with multi indexes and content NaN.

import pandas as pd import numpy as np from pandas import Series, DataFrame import webbrowser from numpy.random import randn from IPython.display import YouTubeVideo from pandas_datareader import data, wb from pandas_datareader...

Hello, I have tried the example to get data from alpha vantage (https://pandas-datareader.readthedocs.io/en/latest/remote_data.html#historical-time-series-data) and I got a ValueError: Traceback (most recent call last): File "adllib.py", line 40, in api_key=os.getenv('ALPHAVANTAGE_API_KEY')) File...

> df = web.DataReader('QNA', 'oecd', end=datetime.datetime(2016, 6, 1)) gives me a ValueError: Shape of passed values is (416640, 350), indices imply (808976, 350)

``` import pandas_datareader as pdr pdr.DataReader('SPY', 'yahoo', start='2006-01-01', end='2020-04-17') --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) in 1 import pandas_datareader as pdr 2 ----> 3 pdr.DataReader('SPY', 'yahoo', start='2006-01-01', end='2020-04-17') ~/virtualenvs/tf2/lib/python3.7/site-packages/pandas/util/_decorators.py...

I've been testing a connection to the [Statistical Data Warehouse](https://sdw.ecb.europa.eu/) in my fork of the `pandas-datareader`. It works much in the same way as the `oecd` and `eurostat` readers, as...