Files
OpenBB/openbb_platform/openbb/package/__extensions__.py
2024-08-08 18:33:56 +00:00

121 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:
- commodity@1.2.1
- crypto@1.3.1
- currency@1.3.1
- derivatives@1.3.1
- economy@1.3.1
- equity@1.3.1
- etf@1.3.1
- fixedincome@1.3.1
- index@1.3.1
- news@1.3.1
- regulators@1.3.1
- benzinga@1.3.1
- econdb@1.2.1
- federal_reserve@1.3.1
- fmp@1.3.1
- fred@1.3.1
- intrinio@1.3.1
- oecd@1.3.1
- polygon@1.3.1
- sec@1.3.1
- tiingo@1.3.1
- tradingeconomics@1.3.1
- yfinance@1.3.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)