mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-06-03 00:11:17 +08:00
* Bump openbb minor version: 4.3.0 * Remove deprecations: /equity/fundamental/overview, /index/market * Rebuild after deprecations * Bug fixes * Fix futures curve example * Fix equity historical test * Fix oecd + skip tests * Fix publishing script * Update OpenBBTerminal refs to OpenBB, repo renamed * Released code
21 lines
458 B
Python
21 lines
458 B
Python
### THIS FILE IS AUTO-GENERATED. DO NOT EDIT. ###
|
|
|
|
|
|
from openbb_core.app.static.container import Container
|
|
|
|
|
|
class ROUTER_regulators(Container):
|
|
"""/regulators
|
|
/sec
|
|
"""
|
|
|
|
def __repr__(self) -> str:
|
|
return self.__doc__ or ""
|
|
|
|
@property
|
|
def sec(self):
|
|
# pylint: disable=import-outside-toplevel
|
|
from . import regulators_sec
|
|
|
|
return regulators_sec.ROUTER_regulators_sec(command_runner=self._command_runner)
|