We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am not sure, but it appears that obtaining options data from yahoo is broken as it results into following error at the end.
from pandas.io.data import Options aapl = Options('aapl', 'yahoo') data = aapl.get_all_data()
AAPL options data for near-term expiry dates
pd.show_versions()
pandas: 0.18.1+204.gd7c028d pandas_datareader: 0.2.1
pandas/io/data.py in _get_expiry_dates_and_links(self) 1191 1192 if len(expiry_dates) == 0: 1193 raise RemoteDataError('Data not available') 1194 1195 expiry_links = dict(zip(expiry_dates, links))
RemoteDataError: Data not available
The text was updated successfully, but these errors were encountered:
@rajanshah the io.data module is deprecated in pandas and moved to pandas-datareader. Can you report the issue over there? (https://github.com/pydata/pandas-datareader/issues) Thanks!
io.data
pandas-datareader
Sorry, something went wrong.
Although it seems the issue is already reported there: pydata/pandas-datareader#212
No branches or pull requests
I am not sure, but it appears that obtaining options data from yahoo is broken as it results into following error at the end.
Code Sample, a copy-pastable example if possible
from pandas.io.data import Options
aapl = Options('aapl', 'yahoo')
data = aapl.get_all_data()
Expected Output
AAPL options data for near-term expiry dates
output of
pd.show_versions()
pandas: 0.18.1+204.gd7c028d
pandas_datareader: 0.2.1
output of self._get_expiry_dates()
pandas/io/data.py in _get_expiry_dates_and_links(self)
1191
1192 if len(expiry_dates) == 0:
1193 raise RemoteDataError('Data not available')
1194
1195 expiry_links = dict(zip(expiry_dates, links))
RemoteDataError: Data not available
The text was updated successfully, but these errors were encountered: