Skip to content

Commit a949ff9

Browse files
dtemkinbashtage
authored andcommitted
Added access to Daily OHLCV Quotes and Financial Statements provided by Morningstar.
1 parent b59a44b commit a949ff9

File tree

5 files changed

+680
-254
lines changed

5 files changed

+680
-254
lines changed

pandas_datareader/__init__.py

Lines changed: 6 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,7 @@
1-
from ._version import get_versions
1+
__version__ = version = '0.2.2'
22

3-
from .data import (get_components_yahoo, get_data_famafrench, get_data_google,
4-
get_data_yahoo, get_data_enigma, get_data_yahoo_actions,
5-
get_quote_google, get_quote_yahoo, get_tops_iex,
6-
get_last_iex, get_markets_iex, get_summary_iex,
7-
get_records_iex, get_recent_iex, get_iex_symbols,
8-
get_iex_book, DataReader, Options)
9-
10-
__version__ = get_versions()['version']
11-
del get_versions
12-
13-
__all__ = ['__version__', 'get_components_yahoo', 'get_data_enigma',
14-
'get_data_famafrench', 'get_data_google', 'get_data_yahoo',
15-
'get_data_yahoo_actions', 'get_quote_google', 'get_quote_yahoo',
16-
'get_iex_book', 'get_iex_symbols', 'get_last_iex',
17-
'get_markets_iex', 'get_recent_iex', 'get_records_iex',
18-
'get_summary_iex', 'get_tops_iex',
19-
'DataReader', 'Options']
3+
from pandas_datareader.data import (get_components_yahoo, get_data_famafrench, get_data_google, get_data_yahoo,
4+
get_data_enigma, get_data_yahoo_actions, get_data_morningstar, get_quote_google,
5+
get_quote_yahoo, DataReader, Options, get_mstar_financials_balance,
6+
get_mstar_financials_cashflows, get_mstar_financials_income,
7+
get_mstar_financials_keyratios) # noqa

0 commit comments

Comments
 (0)