Skip to content

Commit e01b9e3

Browse files
committed
CLN: Clean code after rebase
Clean after rebase
1 parent a949ff9 commit e01b9e3

File tree

9 files changed

+983
-294
lines changed

9 files changed

+983
-294
lines changed

docs/source/readers/morningstar.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Morningstar
2+
-----------
3+
4+
.. py:module:: pandas_datareader.mstar.daily
5+
6+
.. autoclass:: MorningstarDailyReader
7+
:members:
8+
:inherited-members:
9+
10+
.. py:module:: pandas_datareader.mstar.financials
11+
12+
.. autoclass:: MorningstarDailyReader
13+
:members:
14+
:inherited-members:

pandas_datareader/__init__.py

Lines changed: 27 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,28 @@
1-
__version__ = version = '0.2.2'
1+
from ._version import get_versions
2+
from .data import (DataReader, Options, get_components_yahoo,
3+
get_dailysummary_iex, get_data_enigma, get_data_famafrench,
4+
get_data_fred, get_data_google, get_data_moex,
5+
get_data_morningstar, get_data_quandl, get_data_stooq,
6+
get_data_yahoo, get_data_yahoo_actions, get_iex_book,
7+
get_iex_symbols, get_last_iex, get_markets_iex,
8+
get_mstar_financials_balance,
9+
get_mstar_financials_cashflows, get_mstar_financials_income,
10+
get_mstar_financials_keyratios, get_nasdaq_symbols,
11+
get_quote_google, get_quote_yahoo, get_recent_iex,
12+
get_records_iex, get_summary_iex, get_tops_iex)
213

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
14+
__version__ = get_versions()['version']
15+
del get_versions
16+
17+
__all__ = ['__version__', 'get_components_yahoo', 'get_data_enigma',
18+
'get_data_famafrench', 'get_data_google', 'get_data_yahoo',
19+
'get_data_yahoo_actions', 'get_quote_google', 'get_quote_yahoo',
20+
'get_iex_book', 'get_iex_symbols', 'get_last_iex',
21+
'get_markets_iex', 'get_recent_iex', 'get_records_iex',
22+
'get_summary_iex', 'get_tops_iex',
23+
'get_nasdaq_symbols', 'get_mstar_financials_keyratios',
24+
'get_nasdaq_symbols', 'get_data_quandl', 'get_data_moex',
25+
'get_data_fred', 'get_dailysummary_iex', 'get_data_morningstar',
26+
'get_data_stooq', 'get_mstar_financials_balance',
27+
'get_mstar_financials_cashflows', 'get_mstar_financials_income',
28+
'DataReader', 'Options']

0 commit comments

Comments
 (0)