mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-05-11 18:23:15 +08:00
* remove i18n * poetry lock --------- Co-authored-by: montezdesousa <79287829+montezdesousa@users.noreply.github.com>
81 lines
1.8 KiB
Python
81 lines
1.8 KiB
Python
"""Constants module."""
|
|
|
|
from pathlib import Path
|
|
|
|
# Paths
|
|
HOME_DIRECTORY = Path.home()
|
|
REPOSITORY_DIRECTORY = Path(__file__).parent.parent.parent.parent
|
|
SRC_DIRECTORY = Path(__file__).parent.parent
|
|
SETTINGS_DIRECTORY = HOME_DIRECTORY / ".openbb_platform"
|
|
ASSETS_DIRECTORY = SRC_DIRECTORY / "assets"
|
|
STYLES_DIRECTORY = ASSETS_DIRECTORY / "styles"
|
|
ENV_FILE_SETTINGS = SETTINGS_DIRECTORY / ".cli.env"
|
|
HIST_FILE_PROMPT = SETTINGS_DIRECTORY / ".cli.his"
|
|
|
|
|
|
DEFAULT_ROUTINES_URL = "https://openbb-cms.directus.app/items/Routines"
|
|
TIMEOUT = 30
|
|
CONNECTION_ERROR_MSG = "[red]Connection error.[/red]"
|
|
CONNECTION_TIMEOUT_MSG = "[red]Connection timeout.[/red]"
|
|
SCRIPT_TAGS = [
|
|
"stocks",
|
|
"crypto",
|
|
"etf",
|
|
"economy",
|
|
"forex",
|
|
"fixed income",
|
|
"alternative",
|
|
"funds",
|
|
"bonds",
|
|
"macro",
|
|
"mutual funds",
|
|
"equities",
|
|
"options",
|
|
"dark pool",
|
|
"shorts",
|
|
"insider",
|
|
"behavioral analysis",
|
|
"fundamental analysis",
|
|
"technical analysis",
|
|
"quantitative analysis",
|
|
"forecasting",
|
|
"government",
|
|
"comparison",
|
|
"nft",
|
|
"on chain",
|
|
"off chain",
|
|
"screener",
|
|
"report",
|
|
"overview",
|
|
"rates",
|
|
"econometrics",
|
|
"portfolio",
|
|
"real estate",
|
|
]
|
|
AVAILABLE_FLAIRS = {
|
|
":openbb": "(🦋)",
|
|
":bug": "(🐛)",
|
|
":rocket": "(🚀)",
|
|
":diamond": "(💎)",
|
|
":stars": "(✨)",
|
|
":baseball": "(⚾)",
|
|
":boat": "(⛵)",
|
|
":phone": "(☎)",
|
|
":mercury": "(☿)",
|
|
":hidden": "",
|
|
":sun": "(☼)",
|
|
":moon": "(🌕)",
|
|
":nuke": "(☢)",
|
|
":hazard": "(☣)",
|
|
":tunder": "(☈)",
|
|
":king": "(♔)",
|
|
":queen": "(♕)",
|
|
":knight": "(♘)",
|
|
":recycle": "(♻)",
|
|
":scales": "(⚖)",
|
|
":ball": "(⚽)",
|
|
":golf": "(⛳)",
|
|
":peace": "(☮)",
|
|
":yy": "(☯)",
|
|
}
|