forked from OpenBB-finance/OpenBB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsystem_model.py
58 lines (46 loc) · 1.82 KB
/
system_model.py
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import platform
from typing import Literal
from pydantic.dataclasses import dataclass
from openbb_terminal.core.models import BaseModel
# pylint: disable=too-many-instance-attributes
@dataclass(config=dict(validate_assignment=True, frozen=True))
class SystemModel(BaseModel):
"""
Data model for system variables and configurations.
Disclaimer:
If you need to have a system related variable that is a credential like
`LOGGING_AWS_ACCESS_KEY_ID` and `LOGGING_AWS_SECRET_ACCESS_KEY`, you need
refer to the following function
`openbb_terminal.core.log.generation.settings_logger.log_system`,
in order to filter it from the logs.
"""
# System section
OS: str = str(platform.system())
PYTHON_VERSION: str = str(platform.python_version())
PLATFORM: str = str(platform.platform())
# OpenBB section
VERSION = "3.0.0"
# Logging section
LOGGING_APP_ID: str = "REPLACE_ME"
LOGGING_APP_NAME: str = "gst"
LOGGING_AWS_ACCESS_KEY_ID: str = "REPLACE_ME"
LOGGING_AWS_SECRET_ACCESS_KEY: str = "REPLACE_ME"
LOGGING_COMMIT_HASH: str = "REPLACE_ME"
LOGGING_FREQUENCY: Literal["D", "H", "M", "S"] = "H"
LOGGING_HANDLERS: Literal["stdout", "stderr", "noop", "file"] = "file"
LOGGING_ROLLING_CLOCK: bool = False
LOGGING_VERBOSITY: int = 20
LOGGING_SUB_APP: str = "terminal"
LOGGING_SUPPRESS: bool = False
LOG_COLLECT: bool = True
# Personalization section
DISABLE_STREAMLIT_WARNING: bool = False
DISABLE_FORECASTING_WARNING: bool = False
DISABLE_OPTIMIZATION_WARNING: bool = False
# Others
TEST_MODE: bool = False
DEBUG_MODE: bool = False
ENABLE_AUTHENTICATION: bool = True
HEADLESS: bool = False
def __repr__(self) -> str: # pylint: disable=useless-super-delegation
return super().__repr__()