mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-06-20 23:26:07 +08:00
* update dev_install * fix effr test * Update dev_install.py * fix fundamental balance test * fix equity price historical test * fix price target model * black * rebuild static files * update publish.md * fixed dev_install * update publishing doc * updated `openbb-core` to 1.1.1 * updated extensions * updated providers * updated `openbb` package * updated static extension map * updated publishing doc * fixed toml for `openbb-finra` * @jmaslek yfinance IS DEFAULT * updated static --------- Co-authored-by: Pratyush Shukla <ps4534@nyu.edu> Co-authored-by: hjoaquim <h.joaquim@campus.fct.unl.pt>
119 lines
2.7 KiB
Python
119 lines
2.7 KiB
Python
### THIS FILE IS AUTO-GENERATED. DO NOT EDIT. ###
|
|
|
|
|
|
from openbb_core.app.static.container import Container
|
|
|
|
|
|
class Extensions(Container):
|
|
# fmt: off
|
|
"""
|
|
Routers:
|
|
/crypto
|
|
/currency
|
|
/derivatives
|
|
/economy
|
|
/equity
|
|
/etf
|
|
/fixedincome
|
|
/index
|
|
/news
|
|
/regulators
|
|
|
|
Extensions:
|
|
- crypto@1.1.1
|
|
- currency@1.1.1
|
|
- derivatives@1.1.1
|
|
- economy@1.1.1
|
|
- equity@1.1.1
|
|
- etf@1.1.1
|
|
- fixedincome@1.1.1
|
|
- index@1.1.1
|
|
- news@1.1.1
|
|
- regulators@1.1.1
|
|
|
|
- benzinga@1.1.1
|
|
- federal_reserve@1.1.1
|
|
- fmp@1.1.1
|
|
- fred@1.1.1
|
|
- intrinio@1.1.1
|
|
- oecd@1.1.1
|
|
- polygon@1.1.1
|
|
- sec@1.1.1
|
|
- tiingo@1.1.1
|
|
- tradingeconomics@1.1.1
|
|
- yfinance@1.1.1 """
|
|
# fmt: on
|
|
|
|
def __repr__(self) -> str:
|
|
return self.__doc__ or ""
|
|
|
|
@property
|
|
def crypto(self):
|
|
# pylint: disable=import-outside-toplevel
|
|
from . import crypto
|
|
|
|
return crypto.ROUTER_crypto(command_runner=self._command_runner)
|
|
|
|
@property
|
|
def currency(self):
|
|
# pylint: disable=import-outside-toplevel
|
|
from . import currency
|
|
|
|
return currency.ROUTER_currency(command_runner=self._command_runner)
|
|
|
|
@property
|
|
def derivatives(self):
|
|
# pylint: disable=import-outside-toplevel
|
|
from . import derivatives
|
|
|
|
return derivatives.ROUTER_derivatives(command_runner=self._command_runner)
|
|
|
|
@property
|
|
def economy(self):
|
|
# pylint: disable=import-outside-toplevel
|
|
from . import economy
|
|
|
|
return economy.ROUTER_economy(command_runner=self._command_runner)
|
|
|
|
@property
|
|
def equity(self):
|
|
# pylint: disable=import-outside-toplevel
|
|
from . import equity
|
|
|
|
return equity.ROUTER_equity(command_runner=self._command_runner)
|
|
|
|
@property
|
|
def etf(self):
|
|
# pylint: disable=import-outside-toplevel
|
|
from . import etf
|
|
|
|
return etf.ROUTER_etf(command_runner=self._command_runner)
|
|
|
|
@property
|
|
def fixedincome(self):
|
|
# pylint: disable=import-outside-toplevel
|
|
from . import fixedincome
|
|
|
|
return fixedincome.ROUTER_fixedincome(command_runner=self._command_runner)
|
|
|
|
@property
|
|
def index(self):
|
|
# pylint: disable=import-outside-toplevel
|
|
from . import index
|
|
|
|
return index.ROUTER_index(command_runner=self._command_runner)
|
|
|
|
@property
|
|
def news(self):
|
|
# pylint: disable=import-outside-toplevel
|
|
from . import news
|
|
|
|
return news.ROUTER_news(command_runner=self._command_runner)
|
|
|
|
@property
|
|
def regulators(self):
|
|
# pylint: disable=import-outside-toplevel
|
|
from . import regulators
|
|
|
|
return regulators.ROUTER_regulators(command_runner=self._command_runner)
|