Files
OpenBB/openbb_platform/openbb/package/regulators.py
montezdesousa 61ea77c903 [Release] 4.3.0 (#6570)
* 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
2024-07-09 19:10:38 +00:00

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)