File size: 770 Bytes
203c118 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | ### THIS FILE IS AUTO-GENERATED. DO NOT EDIT. ###
from openbb_core.app.static.container import Container
class ROUTER_derivatives(Container):
"""/derivatives
/futures
/options
"""
def __repr__(self) -> str:
return self.__doc__ or ""
@property
def futures(self):
# pylint: disable=import-outside-toplevel
from . import derivatives_futures
return derivatives_futures.ROUTER_derivatives_futures(
command_runner=self._command_runner
)
@property
def options(self):
# pylint: disable=import-outside-toplevel
from . import derivatives_options
return derivatives_options.ROUTER_derivatives_options(
command_runner=self._command_runner
)
|