mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-06-01 23:48:18 +08:00
* update deps * unpinned package versions from gh linting action * codespell * updated black dependency * linting * linting * linting * pin codespell version * black * black again * install devtools in linting action
2980 lines
80 KiB
Python
2980 lines
80 KiB
Python
"""Keys model"""
|
|
|
|
__docformat__ = "numpy"
|
|
|
|
# pylint: disable=too-many-lines
|
|
|
|
import contextlib
|
|
import io
|
|
import logging
|
|
import sys
|
|
from datetime import date
|
|
from enum import Enum
|
|
from typing import Dict, List, Union
|
|
|
|
import binance
|
|
import oandapyV20.endpoints.pricing
|
|
import openai
|
|
import pandas as pd
|
|
import praw
|
|
import quandl
|
|
import stocksera
|
|
from alpha_vantage.timeseries import TimeSeries
|
|
from coinmarketcapapi import CoinMarketCapAPI
|
|
from nixtlats import TimeGPT
|
|
from oandapyV20 import API as oanda_API
|
|
from prawcore.exceptions import ResponseException
|
|
from tokenterminal import TokenTerminal
|
|
|
|
from openbb_terminal.core.session.current_user import get_current_user, set_credential
|
|
from openbb_terminal.core.session.env_handler import write_to_dotenv
|
|
from openbb_terminal.cryptocurrency.coinbase_helpers import (
|
|
CoinbaseApiException,
|
|
CoinbaseProAuth,
|
|
make_coinbase_request,
|
|
)
|
|
from openbb_terminal.helper_funcs import request
|
|
from openbb_terminal.portfolio.brokers.degiro.degiro_model import DegiroModel
|
|
from openbb_terminal.rich_config import console
|
|
from openbb_terminal.terminal_helper import suppress_stdout
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
# README PLEASE:
|
|
# The API_DICT keys must match the set and check functions format.
|
|
#
|
|
# This format is used by the KeysController and get_keys_info().
|
|
# E.g. tokenterminal -> set_tokenterminal_key & check_tokenterminal_key
|
|
#
|
|
# Don't forget to add it to the SDK.
|
|
# E.g. `keys.av,keys_model.set_av_key`
|
|
# For more info, please refer to the CONTRIBUTING.md file.
|
|
|
|
API_DICT: Dict = {
|
|
"av": "ALPHA_VANTAGE",
|
|
"fmp": "FINANCIAL_MODELING_PREP",
|
|
"quandl": "QUANDL",
|
|
"polygon": "POLYGON",
|
|
"intrinio": "INTRINIO",
|
|
"databento": "DATABENTO",
|
|
"ultima": "ULTIMA",
|
|
"fred": "FRED",
|
|
"news": "NEWSAPI",
|
|
"biztoc": "BIZTOC",
|
|
"tradier": "TRADIER",
|
|
"cmc": "COINMARKETCAP",
|
|
"finnhub": "FINNHUB",
|
|
"reddit": "REDDIT",
|
|
"rh": "ROBINHOOD",
|
|
"degiro": "DEGIRO",
|
|
"oanda": "OANDA",
|
|
"binance": "BINANCE",
|
|
"bitquery": "BITQUERY",
|
|
"coinbase": "COINBASE",
|
|
"walert": "WHALE_ALERT",
|
|
"glassnode": "GLASSNODE",
|
|
"coinglass": "COINGLASS",
|
|
"cpanic": "CRYPTO_PANIC",
|
|
"ethplorer": "ETHPLORER",
|
|
"smartstake": "SMARTSTAKE",
|
|
"github": "GITHUB",
|
|
"messari": "MESSARI",
|
|
"eodhd": "EODHD",
|
|
"santiment": "SANTIMENT",
|
|
"tokenterminal": "TOKEN_TERMINAL",
|
|
"stocksera": "STOCKSERA",
|
|
"dappradar": "DAPPRADAR",
|
|
"companieshouse": "COMPANIES_HOUSE",
|
|
"openai": "OPENAI",
|
|
"nixtla": "NIXTLA",
|
|
}
|
|
|
|
# sorting api key section by name
|
|
API_DICT = dict(sorted(API_DICT.items()))
|
|
|
|
|
|
class KeyStatus(str, Enum):
|
|
"""Class to handle status messages and colors"""
|
|
|
|
DEFINED_TEST_FAILED = "Defined, test failed"
|
|
NOT_DEFINED = "Not defined"
|
|
DEFINED_TEST_PASSED = "Defined, test passed"
|
|
DEFINED_TEST_INCONCLUSIVE = "Defined, test inconclusive"
|
|
DEFINED_NOT_TESTED = "Defined, not tested"
|
|
|
|
def __str__(self):
|
|
return self.value
|
|
|
|
def colorize(self):
|
|
c = ""
|
|
if self.name == self.DEFINED_TEST_FAILED.name:
|
|
c = "red"
|
|
elif self.name == self.NOT_DEFINED.name:
|
|
c = "grey30"
|
|
elif self.name == self.DEFINED_TEST_PASSED.name:
|
|
c = "green"
|
|
elif self.name in [
|
|
self.DEFINED_TEST_INCONCLUSIVE.name,
|
|
self.DEFINED_NOT_TESTED.name,
|
|
]:
|
|
c = "yellow"
|
|
|
|
return f"[{c}]{self.value}[/{c}]"
|
|
|
|
|
|
def set_keys(
|
|
keys_dict: Dict[str, Dict[str, Union[str, bool]]],
|
|
persist: bool = False,
|
|
show_output: bool = False,
|
|
) -> Dict:
|
|
"""Set API keys in bundle.
|
|
|
|
Parameters
|
|
----------
|
|
keys_dict: Dict[str, Dict[str, Union[str, bool]]]
|
|
More info on the required inputs for each API can be found on `keys.get_keys_info()`
|
|
persist: bool
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
Dict
|
|
Status of each key set.
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> d = {
|
|
"fred": {"key": "XXXXX"},
|
|
"binance": {"key": "YYYYY", "secret": "ZZZZZ"},
|
|
}
|
|
>>> openbb.keys.set_keys(keys_dict=d)
|
|
"""
|
|
|
|
status_dict = {}
|
|
|
|
for api, kwargs in keys_dict.items():
|
|
expected_args_dict = get_keys_info()
|
|
|
|
if api in expected_args_dict:
|
|
received_kwargs_list = list(kwargs.keys())
|
|
expected_kwargs_list = expected_args_dict[api]
|
|
|
|
if received_kwargs_list == expected_kwargs_list:
|
|
kwargs["persist"] = persist
|
|
kwargs["show_output"] = show_output
|
|
status_dict[api] = str(
|
|
getattr(sys.modules[__name__], "set_" + str(api) + "_key")(**kwargs)
|
|
)
|
|
else:
|
|
console.print(
|
|
f"[red]'{api}' kwargs: {received_kwargs_list} don't match expected: {expected_kwargs_list}.[/red]"
|
|
)
|
|
else:
|
|
console.print(
|
|
f"[red]API '{api}' was not recognized. Please check get_keys_info().[/red]"
|
|
)
|
|
|
|
return status_dict
|
|
|
|
|
|
def get_keys_info() -> Dict[str, List[str]]:
|
|
"""Get info on available APIs to use in set_keys.
|
|
|
|
Returns
|
|
-------
|
|
Dict[str, List[str]]
|
|
Dictionary of expected API keys and arguments
|
|
"""
|
|
args_dict = {}
|
|
|
|
for api in API_DICT:
|
|
arg_list = list(
|
|
getattr(
|
|
sys.modules[__name__], "set_" + str(api) + "_key"
|
|
).__code__.co_varnames
|
|
)
|
|
arg_list.remove("persist")
|
|
arg_list.remove("show_output")
|
|
args_dict[api] = arg_list
|
|
|
|
return args_dict
|
|
|
|
|
|
def get_keys(show: bool = False) -> pd.DataFrame:
|
|
"""Get currently set API keys.
|
|
|
|
Parameters
|
|
----------
|
|
show: bool, optional
|
|
Flag to choose whether to show actual keys or not.
|
|
By default, False.
|
|
|
|
Returns
|
|
-------
|
|
pd.DataFrame
|
|
Currents keys
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.mykeys()
|
|
Key
|
|
API
|
|
BITQUERY_KEY *******
|
|
CMC_KEY *******
|
|
COINGLASS_KEY *******
|
|
"""
|
|
|
|
current_user = get_current_user()
|
|
current_keys = {}
|
|
|
|
for k, _ in current_user.credentials.get_fields().items():
|
|
field_value = current_user.credentials.get_value(field=k)
|
|
if field_value and field_value != "REPLACE_ME":
|
|
current_keys[k] = field_value
|
|
|
|
if current_keys:
|
|
df = pd.DataFrame.from_dict(current_keys, orient="index")
|
|
df.index.name = "API"
|
|
df = df.rename(columns={0: "Key"})
|
|
if show:
|
|
return df
|
|
df.loc[:, "Key"] = "*******"
|
|
return df
|
|
|
|
return pd.DataFrame()
|
|
|
|
|
|
def handle_credential(name: str, value: str, persist: bool = False):
|
|
"""Handle credential: set it for current user and optionally write to .env file.
|
|
|
|
Parameters
|
|
----------
|
|
name: str
|
|
Name of credential
|
|
value: str
|
|
Value of credential
|
|
persist: bool, optional
|
|
Write to .env file. By default, False.
|
|
"""
|
|
set_credential(name, value)
|
|
if persist:
|
|
write_to_dotenv("OPENBB_" + name, value)
|
|
|
|
|
|
def set_av_key(key: str, persist: bool = False, show_output: bool = False) -> str:
|
|
"""Set Alpha Vantage key
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.av(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_KEY_ALPHAVANTAGE", key, persist)
|
|
return check_av_key(show_output)
|
|
|
|
|
|
def check_av_key(show_output: bool = False) -> str:
|
|
"""Check Alpha Vantage key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if (
|
|
current_user.credentials.API_KEY_ALPHAVANTAGE == "REPLACE_ME"
|
|
): # pragma: allowlist secret
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
df = TimeSeries(
|
|
key=current_user.credentials.API_KEY_ALPHAVANTAGE, output_format="pandas"
|
|
).get_intraday(symbol="AAPL")
|
|
if df[0].empty: # pylint: disable=no-member
|
|
logger.warning("Alpha Vantage key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
else:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_fmp_key(key: str, persist: bool = False, show_output: bool = False) -> str:
|
|
"""Set Financial Modeling Prep key
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.fmp(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_KEY_FINANCIALMODELINGPREP", key, persist)
|
|
return check_fmp_key(show_output)
|
|
|
|
|
|
def check_fmp_key(show_output: bool = False) -> str:
|
|
"""Check Financial Modeling Prep key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
status: str
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if (
|
|
current_user.credentials.API_KEY_FINANCIALMODELINGPREP
|
|
== "REPLACE_ME" # pragma: allowlist secret
|
|
): # pragma: allowlist secret
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
r = request(
|
|
f"https://financialmodelingprep.com/api/v3/profile/AAPL?apikey="
|
|
f"{current_user.credentials.API_KEY_FINANCIALMODELINGPREP}"
|
|
)
|
|
if r.status_code in [403, 401] or "Error Message" in str(r.content):
|
|
logger.warning("Financial Modeling Prep key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
elif r.status_code == 200:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
logger.warning("Financial Modeling Prep key defined, test inconclusive")
|
|
status = KeyStatus.DEFINED_TEST_INCONCLUSIVE
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_quandl_key(key: str, persist: bool = False, show_output: bool = False) -> str:
|
|
"""Set Quandl key
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.quandl(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_KEY_QUANDL", key, persist)
|
|
return check_quandl_key(show_output)
|
|
|
|
|
|
def check_quandl_key(show_output: bool = False) -> str:
|
|
"""Check Quandl key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if (
|
|
current_user.credentials.API_KEY_QUANDL == "REPLACE_ME"
|
|
): # pragma: allowlist secret
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
try:
|
|
quandl.save_key(current_user.credentials.API_KEY_QUANDL)
|
|
quandl.get("EIA/PET_RWTC_D")
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
except Exception as _: # noqa: F841
|
|
logger.warning("Quandl key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_polygon_key(key: str, persist: bool = False, show_output: bool = False) -> str:
|
|
"""Set Polygon key
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.polygon(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_POLYGON_KEY", key, persist)
|
|
return check_polygon_key(show_output)
|
|
|
|
|
|
def check_polygon_key(show_output: bool = False) -> str:
|
|
"""Check Polygon key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_POLYGON_KEY == "REPLACE_ME":
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
check_date = date(date.today().year, date.today().month, 1).isoformat()
|
|
r = request(
|
|
f"https://api.polygon.io/v2/aggs/ticker/AAPL/range/1/day/{check_date}"
|
|
f"/{check_date}?apiKey={current_user.credentials.API_POLYGON_KEY}"
|
|
)
|
|
if r.status_code in [403, 401]:
|
|
logger.warning("Polygon key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
elif r.status_code == 200:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
logger.warning("Polygon key defined, test inconclusive")
|
|
status = KeyStatus.DEFINED_TEST_INCONCLUSIVE
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_fred_key(key: str, persist: bool = False, show_output: bool = False) -> str:
|
|
"""Set FRED key
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.fred(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_FRED_KEY", key, persist)
|
|
return check_fred_key(show_output)
|
|
|
|
|
|
def check_fred_key(show_output: bool = False) -> str:
|
|
"""Check FRED key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_FRED_KEY == "REPLACE_ME":
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
r = request(
|
|
f"https://api.stlouisfed.org/fred/series?series_id=GNPCA&api_key={current_user.credentials.API_FRED_KEY}"
|
|
)
|
|
if r.status_code in [403, 401, 400]:
|
|
logger.warning("FRED key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
elif r.status_code == 200:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
logger.warning("FRED key defined, test inconclusive")
|
|
status = KeyStatus.DEFINED_TEST_INCONCLUSIVE
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_news_key(key: str, persist: bool = False, show_output: bool = False) -> str:
|
|
"""Set News key
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.news(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_NEWS_TOKEN", key, persist)
|
|
return check_news_key(show_output)
|
|
|
|
|
|
def check_news_key(show_output: bool = False) -> str:
|
|
"""Check News key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_NEWS_TOKEN == "REPLACE_ME": # nosec# noqa: S105
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
r = request(
|
|
f"https://newsapi.org/v2/everything?q=keyword&apiKey={current_user.credentials.API_NEWS_TOKEN}"
|
|
)
|
|
if r.status_code in [401, 403]:
|
|
logger.warning("News API key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
elif r.status_code == 200:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
logger.warning("News API key defined, test inconclusive")
|
|
status = KeyStatus.DEFINED_TEST_INCONCLUSIVE
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_biztoc_key(key: str, persist: bool = False, show_output: bool = False) -> str:
|
|
"""Set BizToc key
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.biztoc(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_BIZTOC_TOKEN", key, persist)
|
|
return check_biztoc_key(show_output)
|
|
|
|
|
|
def check_biztoc_key(show_output: bool = False) -> str:
|
|
"""Check BizToc key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_BIZTOC_TOKEN == "REPLACE_ME": # nosec# noqa: S105
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
r = request(
|
|
"https://biztoc.p.rapidapi.com/pages",
|
|
headers={
|
|
"X-RapidAPI-Key": current_user.credentials.API_BIZTOC_TOKEN,
|
|
"X-RapidAPI-Host": "biztoc.p.rapidapi.com",
|
|
},
|
|
)
|
|
if r.status_code in [401, 403, 404]:
|
|
logger.warning("BizToc API key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
elif r.status_code == 200:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
logger.warning("BizToc API key defined, test inconclusive")
|
|
status = KeyStatus.DEFINED_TEST_INCONCLUSIVE
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_tradier_key(key: str, persist: bool = False, show_output: bool = False) -> str:
|
|
"""Set Tradier key
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.tradier(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_TRADIER_TOKEN", key, persist)
|
|
return check_tradier_key(show_output)
|
|
|
|
|
|
def check_tradier_key(show_output: bool = False) -> str:
|
|
"""Check Tradier key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_TRADIER_TOKEN == "REPLACE_ME": # nosec# noqa: S105
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
r = request(
|
|
"https://sandbox.tradier.com/v1/markets/quotes",
|
|
params={"symbols": "AAPL"},
|
|
headers={
|
|
"Authorization": f"Bearer {current_user.credentials.API_TRADIER_TOKEN}",
|
|
"Accept": "application/json",
|
|
},
|
|
)
|
|
if r.status_code in [401, 403]:
|
|
logger.warning("Tradier key not defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
elif r.status_code == 200:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
logger.warning("Tradier key not defined, test inconclusive")
|
|
status = KeyStatus.DEFINED_TEST_INCONCLUSIVE
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_cmc_key(key: str, persist: bool = False, show_output: bool = False) -> str:
|
|
"""Set Coinmarketcap key
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.cmc(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_CMC_KEY", key, persist)
|
|
return check_cmc_key(show_output)
|
|
|
|
|
|
def check_cmc_key(show_output: bool = False) -> str:
|
|
"""Check Coinmarketcap key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
status: str
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_CMC_KEY == "REPLACE_ME":
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
cmc = CoinMarketCapAPI(current_user.credentials.API_CMC_KEY)
|
|
|
|
try:
|
|
cmc.cryptocurrency_map()
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
except Exception:
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_finnhub_key(key: str, persist: bool = False, show_output: bool = False) -> str:
|
|
"""Set Finnhub key
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.finnhub(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_FINNHUB_KEY", key, persist)
|
|
return check_finnhub_key(show_output)
|
|
|
|
|
|
def check_finnhub_key(show_output: bool = False) -> str:
|
|
"""Check Finnhub key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_FINNHUB_KEY == "REPLACE_ME":
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
r = request(
|
|
f"https://finnhub.io/api/v1/quote?symbol=AAPL&token={current_user.credentials.API_FINNHUB_KEY}"
|
|
)
|
|
if r.status_code in [403, 401, 400]:
|
|
logger.warning("Finnhub key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
elif r.status_code == 200:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
logger.warning("Finnhub key defined, test inconclusive")
|
|
status = KeyStatus.DEFINED_TEST_INCONCLUSIVE
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_reddit_key(
|
|
client_id: str,
|
|
client_secret: str,
|
|
password: str,
|
|
username: str,
|
|
useragent: str,
|
|
persist: bool = False,
|
|
show_output: bool = False,
|
|
) -> str:
|
|
"""Set Reddit key
|
|
|
|
Parameters
|
|
----------
|
|
client_id: str
|
|
Client ID
|
|
client_secret: str
|
|
Client secret
|
|
password: str
|
|
User password
|
|
username: str
|
|
User username
|
|
useragent: str
|
|
User useragent
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.reddit(
|
|
client_id="example_id",
|
|
client_secret="example_secret",
|
|
password="example_password",
|
|
username="example_username",
|
|
useragent="example_useragent"
|
|
)
|
|
"""
|
|
|
|
handle_credential("API_REDDIT_CLIENT_ID", client_id, persist)
|
|
handle_credential("API_REDDIT_CLIENT_SECRET", client_secret, persist)
|
|
handle_credential("API_REDDIT_PASSWORD", password, persist)
|
|
handle_credential("API_REDDIT_USERNAME", username, persist)
|
|
handle_credential("API_REDDIT_USER_AGENT", useragent, persist)
|
|
|
|
return check_reddit_key(show_output)
|
|
|
|
|
|
def check_reddit_key(show_output: bool = False) -> str:
|
|
"""Check Reddit key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
reddit_keys = [
|
|
current_user.credentials.API_REDDIT_CLIENT_ID,
|
|
current_user.credentials.API_REDDIT_CLIENT_SECRET,
|
|
current_user.credentials.API_REDDIT_USERNAME,
|
|
current_user.credentials.API_REDDIT_PASSWORD,
|
|
current_user.credentials.API_REDDIT_USER_AGENT,
|
|
]
|
|
if "REPLACE_ME" in reddit_keys:
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
try:
|
|
with suppress_stdout():
|
|
praw_api = praw.Reddit(
|
|
client_id=current_user.credentials.API_REDDIT_CLIENT_ID,
|
|
client_secret=current_user.credentials.API_REDDIT_CLIENT_SECRET,
|
|
username=current_user.credentials.API_REDDIT_USERNAME,
|
|
user_agent=current_user.credentials.API_REDDIT_USER_AGENT,
|
|
password=current_user.credentials.API_REDDIT_PASSWORD,
|
|
check_for_updates=False,
|
|
comment_kind="t1",
|
|
message_kind="t4",
|
|
redditor_kind="t2",
|
|
submission_kind="t3",
|
|
subreddit_kind="t5",
|
|
trophy_kind="t6",
|
|
oauth_url="https://oauth.reddit.com",
|
|
reddit_url="https://www.reddit.com",
|
|
short_url="https://redd.it",
|
|
ratelimit_seconds=5,
|
|
timeout=16,
|
|
)
|
|
|
|
praw_api.user.me()
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
except (Exception, ResponseException):
|
|
logger.warning("Reddit key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_bitquery_key(key: str, persist: bool = False, show_output: bool = False) -> str:
|
|
"""Set Bitquery key
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.bitquery(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_BITQUERY_KEY", key, persist)
|
|
|
|
return check_bitquery_key(show_output)
|
|
|
|
|
|
def check_bitquery_key(show_output: bool = False) -> str:
|
|
"""Check Bitquery key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
bitquery = current_user.credentials.API_BITQUERY_KEY
|
|
if "REPLACE_ME" in bitquery:
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
headers = {"x-api-key": current_user.credentials.API_BITQUERY_KEY}
|
|
query = """
|
|
{
|
|
ethereum {
|
|
dexTrades(options: {limit: 10, desc: "count"}) {
|
|
count
|
|
protocol
|
|
}}}
|
|
"""
|
|
r = request(
|
|
"https://graphql.bitquery.io",
|
|
method="POST",
|
|
json={"query": query},
|
|
headers=headers,
|
|
)
|
|
if r.status_code == 200:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
logger.warning("Bitquery key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_rh_key(
|
|
username: str,
|
|
password: str,
|
|
persist: bool = False,
|
|
show_output: bool = False,
|
|
) -> str:
|
|
"""Set Robinhood key
|
|
|
|
Parameters
|
|
----------
|
|
username: str
|
|
User username
|
|
password: str
|
|
User password
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.rh(
|
|
username="example_username",
|
|
password="example_password"
|
|
)
|
|
"""
|
|
handle_credential("RH_USERNAME", username, persist)
|
|
handle_credential("RH_PASSWORD", password, persist)
|
|
|
|
return check_rh_key(show_output)
|
|
|
|
|
|
def check_rh_key(show_output: bool = False) -> str:
|
|
"""Check Robinhood key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
rh_keys = [
|
|
current_user.credentials.RH_USERNAME,
|
|
current_user.credentials.RH_PASSWORD,
|
|
]
|
|
status = (
|
|
KeyStatus.NOT_DEFINED
|
|
if "REPLACE_ME" in rh_keys
|
|
else KeyStatus.DEFINED_NOT_TESTED
|
|
)
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_degiro_key(
|
|
username: str,
|
|
password: str,
|
|
secret: str = "",
|
|
persist: bool = False,
|
|
show_output: bool = False,
|
|
) -> str:
|
|
"""Set Degiro key
|
|
|
|
Parameters
|
|
----------
|
|
username: str
|
|
User username
|
|
password: str
|
|
User password
|
|
secret: str, optional
|
|
User secret
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.degiro(
|
|
username="example_username",
|
|
password="example_password"
|
|
)
|
|
"""
|
|
|
|
handle_credential("DG_USERNAME", username, persist)
|
|
handle_credential("DG_PASSWORD", password, persist)
|
|
handle_credential("DG_TOTP_SECRET", secret, persist)
|
|
|
|
return check_degiro_key(show_output)
|
|
|
|
|
|
def check_degiro_key(show_output: bool = False) -> str:
|
|
"""Check Degiro key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
dg_keys = [
|
|
current_user.credentials.DG_USERNAME,
|
|
current_user.credentials.DG_PASSWORD,
|
|
current_user.credentials.DG_TOTP_SECRET,
|
|
]
|
|
if "REPLACE_ME" in dg_keys:
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
dg = DegiroModel()
|
|
try:
|
|
f = io.StringIO() # suppress stdout
|
|
with contextlib.redirect_stdout(f):
|
|
check_creds = dg.check_credentials() # pylint: disable=no-member
|
|
|
|
if "2FA is enabled" in f.getvalue() or check_creds:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
raise Exception
|
|
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
|
|
except Exception:
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
|
|
del dg # ensure the object is destroyed explicitly
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_oanda_key(
|
|
account: str,
|
|
access_token: str,
|
|
account_type: str = "",
|
|
persist: bool = False,
|
|
show_output: bool = False,
|
|
) -> str:
|
|
"""Set Oanda key
|
|
|
|
Parameters
|
|
----------
|
|
account: str
|
|
User account
|
|
access_token: str
|
|
User token
|
|
account_type: str, optional
|
|
User account type
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.oanda(
|
|
account="example_account",
|
|
access_token="example_access_token",
|
|
account_type="example_account_type"
|
|
)
|
|
"""
|
|
|
|
handle_credential("OANDA_ACCOUNT", account, persist)
|
|
handle_credential("OANDA_TOKEN", access_token, persist)
|
|
handle_credential("OANDA_ACCOUNT_TYPE", account_type, persist)
|
|
|
|
return check_oanda_key(show_output)
|
|
|
|
|
|
def check_oanda_key(show_output: bool = False) -> str:
|
|
"""Check Oanda key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
oanda_keys = [
|
|
current_user.credentials.OANDA_TOKEN,
|
|
current_user.credentials.OANDA_ACCOUNT,
|
|
]
|
|
if "REPLACE_ME" in oanda_keys:
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
client = oanda_API(access_token=current_user.credentials.OANDA_TOKEN)
|
|
account = current_user.credentials.OANDA_ACCOUNT
|
|
try:
|
|
parameters = {"instruments": "EUR_USD"}
|
|
request_ = oandapyV20.endpoints.pricing.PricingInfo(
|
|
accountID=account, params=parameters
|
|
)
|
|
client.request(request_)
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
|
|
except Exception:
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_binance_key(
|
|
key: str,
|
|
secret: str,
|
|
persist: bool = False,
|
|
show_output: bool = False,
|
|
) -> str:
|
|
"""Set Binance key
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
secret: str
|
|
API secret
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.binance(
|
|
key="example_key",
|
|
secret="example_secret"
|
|
)
|
|
"""
|
|
|
|
handle_credential("API_BINANCE_KEY", key, persist)
|
|
handle_credential("API_BINANCE_SECRET", secret, persist)
|
|
|
|
return check_binance_key(show_output)
|
|
|
|
|
|
def check_binance_key(show_output: bool = False) -> str:
|
|
"""Check Binance key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if "REPLACE_ME" in [
|
|
current_user.credentials.API_BINANCE_KEY,
|
|
current_user.credentials.API_BINANCE_SECRET,
|
|
]:
|
|
status = KeyStatus.NOT_DEFINED
|
|
|
|
else:
|
|
try:
|
|
client = binance.Client(
|
|
current_user.credentials.API_BINANCE_KEY,
|
|
current_user.credentials.API_BINANCE_SECRET,
|
|
)
|
|
client.get_account_api_permissions()
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
except Exception:
|
|
logger.warning("Binance key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_coinbase_key(
|
|
key: str,
|
|
secret: str,
|
|
passphrase: str,
|
|
persist: bool = False,
|
|
show_output: bool = False,
|
|
) -> str:
|
|
"""Set Coinbase key
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
secret: str
|
|
API secret
|
|
passphrase: str
|
|
Account passphrase
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.coinbase(
|
|
key="example_key",
|
|
secret="example_secret",
|
|
passphrase="example_passphrase"
|
|
)
|
|
"""
|
|
|
|
handle_credential("API_COINBASE_KEY", key, persist)
|
|
handle_credential("API_COINBASE_SECRET", secret, persist)
|
|
handle_credential("API_COINBASE_PASS_PHRASE", passphrase, persist)
|
|
|
|
return check_coinbase_key(show_output)
|
|
|
|
|
|
def check_coinbase_key(show_output: bool = False) -> str:
|
|
"""Check Coinbase key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
status: str
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if "REPLACE_ME" in [
|
|
current_user.credentials.API_COINBASE_KEY,
|
|
current_user.credentials.API_COINBASE_SECRET,
|
|
current_user.credentials.API_COINBASE_PASS_PHRASE,
|
|
]:
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
auth = CoinbaseProAuth(
|
|
current_user.credentials.API_COINBASE_KEY,
|
|
current_user.credentials.API_COINBASE_SECRET,
|
|
current_user.credentials.API_COINBASE_PASS_PHRASE,
|
|
)
|
|
try:
|
|
resp = make_coinbase_request("/accounts", auth=auth)
|
|
except CoinbaseApiException:
|
|
resp = None
|
|
if not resp:
|
|
logger.warning("Coinbase key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
else:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_walert_key(key: str, persist: bool = False, show_output: bool = False) -> str:
|
|
"""Set Walert key
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.walert(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_WHALE_ALERT_KEY", key, persist)
|
|
return check_walert_key(show_output)
|
|
|
|
|
|
def check_walert_key(show_output: bool = False) -> str:
|
|
"""Check Walert key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_WHALE_ALERT_KEY == "REPLACE_ME":
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
url = (
|
|
"https://api.whale-alert.io/v1/transactions?api_key="
|
|
+ current_user.credentials.API_WHALE_ALERT_KEY
|
|
)
|
|
try:
|
|
response = request(url)
|
|
if not 200 <= response.status_code < 300:
|
|
logger.warning("Walert key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
else:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
except Exception:
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_glassnode_key(
|
|
key: str, persist: bool = False, show_output: bool = False
|
|
) -> str:
|
|
"""Set Glassnode key.
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.glassnode(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_GLASSNODE_KEY", key, persist)
|
|
return check_glassnode_key(show_output)
|
|
|
|
|
|
def check_glassnode_key(show_output: bool = False) -> str:
|
|
"""Check Glassnode key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_GLASSNODE_KEY == "REPLACE_ME":
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
url = "https://api.glassnode.com/v1/metrics/market/price_usd_close"
|
|
|
|
parameters = {
|
|
"api_key": current_user.credentials.API_GLASSNODE_KEY,
|
|
"a": "BTC",
|
|
"i": "24h",
|
|
"s": str(1_614_556_800),
|
|
"u": str(1_641_227_783_561),
|
|
}
|
|
|
|
r = request(url, params=parameters)
|
|
if r.status_code == 200:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
logger.warning("Glassnode key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_coinglass_key(
|
|
key: str, persist: bool = False, show_output: bool = False
|
|
) -> str:
|
|
"""Set Coinglass key.
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.coinglass(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_COINGLASS_KEY", key, persist)
|
|
return check_coinglass_key(show_output)
|
|
|
|
|
|
def check_coinglass_key(show_output: bool = False) -> str:
|
|
"""Check Coinglass key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_COINGLASS_KEY == "REPLACE_ME":
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
url = "https://open-api.coinglass.com/api/pro/v1/futures/openInterest/chart?&symbol=BTC&interval=0"
|
|
|
|
headers = {"coinglassSecret": current_user.credentials.API_COINGLASS_KEY}
|
|
|
|
response = request(url, headers=headers)
|
|
|
|
if """success":false""" in str(response.content):
|
|
logger.warning("Coinglass key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
elif response.status_code == 200:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
logger.warning("Coinglass key defined, test inconclusive")
|
|
status = KeyStatus.DEFINED_TEST_INCONCLUSIVE
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_cpanic_key(key: str, persist: bool = False, show_output: bool = False) -> str:
|
|
"""Set Cpanic key.
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.cpanic(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_CRYPTO_PANIC_KEY", key, persist)
|
|
return check_cpanic_key(show_output)
|
|
|
|
|
|
def check_cpanic_key(show_output: bool = False) -> str:
|
|
"""Check Cpanic key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_CRYPTO_PANIC_KEY == "REPLACE_ME":
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
crypto_panic_url = (
|
|
"https://cryptopanic.com/api/v1/posts/?auth_token="
|
|
f"{current_user.credentials.API_CRYPTO_PANIC_KEY}"
|
|
)
|
|
response = request(crypto_panic_url)
|
|
|
|
if response.status_code == 200:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
logger.warning("Cpanic key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_ethplorer_key(
|
|
key: str, persist: bool = False, show_output: bool = False
|
|
) -> str:
|
|
"""Set Ethplorer key.
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.ethplorer(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_ETHPLORER_KEY", key, persist)
|
|
return check_ethplorer_key(show_output)
|
|
|
|
|
|
def check_ethplorer_key(show_output: bool = False) -> str:
|
|
"""Check Ethplorer key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_ETHPLORER_KEY == "REPLACE_ME":
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
ethplorer_url = "https://api.ethplorer.io/getTokenInfo/0x1f9840a85d5af5bf1d1762f925bdaddc4201f984?apiKey="
|
|
ethplorer_url += current_user.credentials.API_ETHPLORER_KEY
|
|
|
|
try:
|
|
response = request(ethplorer_url)
|
|
if response.status_code == 200:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
logger.warning("ethplorer key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
except Exception as _: # noqa: F841
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_smartstake_key(
|
|
key: str, access_token: str, persist: bool = False, show_output: bool = False
|
|
):
|
|
"""Set Smartstake key.
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
access_token: str
|
|
API token
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.smartstake(
|
|
key="example_key",
|
|
access_token="example_access_token",
|
|
)
|
|
"""
|
|
|
|
handle_credential("API_SMARTSTAKE_KEY", key, persist)
|
|
handle_credential("API_SMARTSTAKE_TOKEN", access_token, persist)
|
|
return check_smartstake_key(show_output)
|
|
|
|
|
|
def check_smartstake_key(show_output: bool = False) -> str:
|
|
"""Check Smartstake key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if "REPLACE_ME" in [
|
|
current_user.credentials.API_SMARTSTAKE_TOKEN,
|
|
current_user.credentials.API_SMARTSTAKE_KEY,
|
|
]:
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
payload = {
|
|
"type": "history",
|
|
"dayCount": 30,
|
|
"key": current_user.credentials.API_SMARTSTAKE_KEY,
|
|
"token": current_user.credentials.API_SMARTSTAKE_TOKEN,
|
|
}
|
|
|
|
smartstake_url = "https://prod.smartstakeapi.com/listData?app=TERRA"
|
|
response = request(smartstake_url, params=payload) # type: ignore
|
|
|
|
try:
|
|
if (
|
|
"errors" in str(response.content)
|
|
or response.status_code < 200
|
|
or response.status_code >= 300
|
|
):
|
|
logger.warning("Smartstake key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
elif 200 <= response.status_code < 300:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
logger.warning("Smartstake key defined, test inconclusive")
|
|
status = KeyStatus.DEFINED_TEST_INCONCLUSIVE
|
|
except Exception as _: # noqa: F841
|
|
logger.warning("Smartstake key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_github_key(key: str, persist: bool = False, show_output: bool = False) -> str:
|
|
"""Set GitHub key.
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.github(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_GITHUB_KEY", key, persist)
|
|
return check_github_key(show_output)
|
|
|
|
|
|
def check_github_key(show_output: bool = False) -> str:
|
|
"""Check GitHub key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if (
|
|
current_user.credentials.API_GITHUB_KEY == "REPLACE_ME"
|
|
): # pragma: allowlist secret
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
status = KeyStatus.DEFINED_NOT_TESTED
|
|
# github api will not fail for the first requests without key
|
|
# only after certain amount of requests the user will get rate limited
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_messari_key(key: str, persist: bool = False, show_output: bool = False) -> str:
|
|
"""Set Messari key.
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.messari(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_MESSARI_KEY", key, persist)
|
|
return check_messari_key(show_output)
|
|
|
|
|
|
def check_messari_key(show_output: bool = False) -> str:
|
|
"""Check Messari key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if (
|
|
current_user.credentials.API_MESSARI_KEY
|
|
== "REPLACE_ME" # pragma: allowlist secret
|
|
): # pragma: allowlist secret
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
url = "https://data.messari.io/api/v2/assets/bitcoin/profile"
|
|
headers = {"x-messari-api-key": current_user.credentials.API_MESSARI_KEY}
|
|
params = {"fields": "profile/general/overview/official_links"}
|
|
r = request(url, headers=headers, params=params)
|
|
|
|
if r.status_code == 200:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
logger.warning("Messari key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_eodhd_key(key: str, persist: bool = False, show_output: bool = False) -> str:
|
|
"""Set Eodhd key.
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.eodhd(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_EODHD_KEY", key, persist)
|
|
return check_eodhd_key(show_output)
|
|
|
|
|
|
def check_eodhd_key(show_output: bool = False) -> str:
|
|
"""Check Eodhd key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_EODHD_KEY == "REPLACE_ME": # nosec
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
request_url = (
|
|
"https://eodhistoricaldata.com/api/exchanges-list/?api_token="
|
|
f"{current_user.credentials.API_EODHD_KEY}&fmt=json"
|
|
)
|
|
r = request(request_url)
|
|
if r.status_code == 200:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
logger.warning("Eodhd key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_santiment_key(
|
|
key: str, persist: bool = False, show_output: bool = False
|
|
) -> str:
|
|
"""Set Santiment key.
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.santiment(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_SANTIMENT_KEY", key, persist)
|
|
return check_santiment_key(show_output)
|
|
|
|
|
|
def check_santiment_key(show_output: bool = False) -> str:
|
|
"""Check Santiment key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_SANTIMENT_KEY == "REPLACE_ME":
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
headers = {
|
|
"Content-Type": "application/graphql",
|
|
"Authorization": f"Apikey {current_user.credentials.API_SANTIMENT_KEY}",
|
|
}
|
|
|
|
# pylint: disable=line-too-long
|
|
data = '\n{{ getMetric(metric: "dev_activity"){{ timeseriesData( slug: "ethereum" from: ""2020-02-10T07:00:00Z"" to: "2020-03-10T07:00:00Z" interval: "1w"){{ datetime value }} }} }}' # noqa: E501
|
|
|
|
response = request(
|
|
"https://api.santiment.net/graphql",
|
|
method="POST",
|
|
headers=headers,
|
|
data=data,
|
|
)
|
|
try:
|
|
if response.status_code == 200:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
logger.warning("santiment key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
except Exception as _: # noqa: F841
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_tokenterminal_key(
|
|
key: str, persist: bool = False, show_output: bool = False
|
|
) -> str:
|
|
"""Set Token Terminal key.
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.tokenterminal(key="example_key")
|
|
"""
|
|
handle_credential("API_TOKEN_TERMINAL_KEY", key, persist)
|
|
return check_tokenterminal_key(show_output)
|
|
|
|
|
|
def check_tokenterminal_key(show_output: bool = False) -> str:
|
|
"""Check Token Terminal key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_TOKEN_TERMINAL_KEY == "REPLACE_ME": # noqa: S105
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
token_terminal = TokenTerminal(
|
|
key=current_user.credentials.API_TOKEN_TERMINAL_KEY
|
|
)
|
|
|
|
if "message" in token_terminal.get_all_projects():
|
|
logger.warning("Token Terminal key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
else:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_stocksera_key(key: str, persist: bool = False, show_output: bool = False):
|
|
"""Set Stocksera key.
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.stocksera(key="example_key")
|
|
"""
|
|
handle_credential("API_STOCKSERA_KEY", key, persist)
|
|
return check_stocksera_key(show_output)
|
|
|
|
|
|
def check_stocksera_key(show_output: bool = False):
|
|
"""Check Stocksera key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_STOCKSERA_KEY == "REPLACE_ME":
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
client = stocksera.Client(api_key=current_user.credentials.API_STOCKSERA_KEY)
|
|
|
|
try:
|
|
client.borrowed_shares(ticker="AAPL")
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
except Exception as _: # noqa: F841
|
|
logger.warning("Stocksera key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
return str(status)
|
|
|
|
|
|
def set_intrinio_key(key: str, persist: bool = False, show_output: bool = False) -> str:
|
|
"""Set Intrinio key
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.intrinio(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_INTRINIO_KEY", key, persist)
|
|
return check_intrinio_key(show_output)
|
|
|
|
|
|
def check_intrinio_key(show_output: bool = False) -> str:
|
|
"""Check Intrinio key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_INTRINIO_KEY == "REPLACE_ME":
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
r = request(
|
|
f"https://api-v2.intrinio.com/securities/AAPL/prices?api_key={current_user.credentials.API_INTRINIO_KEY}"
|
|
)
|
|
if r.status_code in [403, 401, 429]:
|
|
logger.warning("Intrinio key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
elif r.status_code == 200:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
logger.warning("Intrinio key defined, test inconclusive")
|
|
status = KeyStatus.DEFINED_TEST_INCONCLUSIVE
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_databento_key(
|
|
key: str, persist: bool = False, show_output: bool = False
|
|
) -> str:
|
|
"""Set DataBento key
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.databento(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_DATABENTO_KEY", key, persist)
|
|
return check_databento_key(show_output)
|
|
|
|
|
|
def check_databento_key(show_output: bool = False) -> str:
|
|
"""Check DataBento key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_DATABENTO_KEY == "REPLACE_ME":
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
r = request(
|
|
"https://hist.databento.com/v0/metadata.list_datasets",
|
|
auth=(f"{current_user.credentials.API_DATABENTO_KEY}", ""),
|
|
)
|
|
if r.status_code in [403, 401, 429]:
|
|
logger.warning("DataBento key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
elif r.status_code == 200:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
logger.warning("DataBento key defined, test inconclusive")
|
|
status = KeyStatus.DEFINED_TEST_INCONCLUSIVE
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_ultima_key(key: str, persist: bool = False, show_output: bool = False) -> str:
|
|
"""Set Ultima Insights key
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.ultima(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_ULTIMA_KEY", key, persist)
|
|
return check_ultima_key(show_output)
|
|
|
|
|
|
def check_ultima_key(show_output: bool = False) -> str:
|
|
"""Check Ultima Insights key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_ULTIMA_KEY == "REPLACE_ME":
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
r = request(
|
|
"https://api.ultimainsights.ai/v1/checkAPIKey",
|
|
headers={
|
|
"Authorization": f"Bearer {current_user.credentials.API_ULTIMA_KEY}"
|
|
},
|
|
)
|
|
if r.status_code in [403, 401, 429]:
|
|
logger.warning("Ultima Insights key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
elif r.status_code == 200:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
logger.warning("Ultima Insights key defined, test inconclusive")
|
|
status = KeyStatus.DEFINED_TEST_INCONCLUSIVE
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_dappradar_key(
|
|
key: str, persist: bool = False, show_output: bool = False
|
|
) -> str:
|
|
"""Set DappRadar key
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.dappradar(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_DAPPRADAR_KEY", key, persist)
|
|
return check_dappradar_key(show_output)
|
|
|
|
|
|
def check_dappradar_key(show_output: bool = False) -> str:
|
|
"""Check DappRadar key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_DAPPRADAR_KEY == "REPLACE_ME":
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
r = request(
|
|
"https://api.dappradar.com/4tsxo4vuhotaojtl/tokens/chains",
|
|
headers={"X-BLOBR-KEY": current_user.credentials.API_DAPPRADAR_KEY},
|
|
)
|
|
if r.status_code in [403, 401, 429]:
|
|
logger.warning("DappRadar key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
elif r.status_code == 200:
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
logger.warning("DappRadar key defined, test inconclusive")
|
|
status = KeyStatus.DEFINED_TEST_INCONCLUSIVE
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_companieshouse_key(
|
|
key: str,
|
|
persist: bool = False,
|
|
show_output: bool = False,
|
|
) -> str:
|
|
"""Set Companies House key
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API ID
|
|
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.companieshouse(
|
|
api_id="example_id",
|
|
)
|
|
"""
|
|
|
|
handle_credential("API_COMPANIESHOUSE_KEY", key, persist)
|
|
return check_companieshouse_key(show_output)
|
|
|
|
|
|
def check_companieshouse_key(show_output: bool = False) -> str:
|
|
"""Check Companies House key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_COMPANIESHOUSE_KEY == "REPLACE_ME":
|
|
logger.info("Companies House key not defined")
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
r = request(
|
|
"https://api.company-information.service.gov.uk/company/00000118",
|
|
auth=(f"{current_user.credentials.API_COMPANIESHOUSE_KEY}", ""),
|
|
)
|
|
if r.status_code in [403, 401, 429]:
|
|
logger.warning("Companies House key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
elif r.status_code == 200:
|
|
logger.info("Companies House key defined, test passed")
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
else:
|
|
logger.warning("Companies House key defined, test inconclusive")
|
|
status = KeyStatus.DEFINED_TEST_INCONCLUSIVE
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
# Set OpenAI key
|
|
def set_openai_key(key: str, persist: bool = False, show_output: bool = False) -> str:
|
|
"""Set OpenAI key
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.openai(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_OPENAI_KEY", key, persist)
|
|
return check_openai_key(show_output)
|
|
|
|
|
|
def check_openai_key(show_output: bool = False) -> str:
|
|
"""Check OpenAI key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if current_user.credentials.API_OPENAI_KEY == "REPLACE_ME":
|
|
logger.info("OpenAI key not defined")
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
# Set the endpoint URL and data to be sent
|
|
data = {
|
|
"prompt": "Hello, Open AI!",
|
|
}
|
|
|
|
# Make the API call and print the response
|
|
try:
|
|
openai.api_key = current_user.credentials.API_OPENAI_KEY
|
|
# Make the API call and print the response
|
|
openai.Completion.create(engine="davinci", prompt=data["prompt"])
|
|
status = KeyStatus.DEFINED_TEST_PASSED
|
|
logger.info("OpenAI key defined, test passed")
|
|
|
|
except openai.error.AuthenticationError:
|
|
# Handle authentication errors
|
|
logger.warning("OpenAI key defined, test failed")
|
|
status = KeyStatus.DEFINED_TEST_FAILED
|
|
|
|
except openai.error.APIError as e:
|
|
console.print(e)
|
|
# Handle other API errors
|
|
logger.warning("OpenAI key defined, test inclusive")
|
|
status = KeyStatus.DEFINED_TEST_INCONCLUSIVE
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|
|
|
|
|
|
def set_nixtla_key(key: str, persist: bool = False, show_output: bool = False) -> str:
|
|
"""Set Nixtla API key
|
|
|
|
Parameters
|
|
----------
|
|
key: str
|
|
API key
|
|
persist: bool, optional
|
|
If False, api key change will be contained to where it was changed. For example, a Jupyter notebook session.
|
|
If True, api key change will be global, i.e. it will affect terminal environment variables.
|
|
By default, False.
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Status of key set
|
|
|
|
Examples
|
|
--------
|
|
>>> from openbb_terminal.sdk import openbb
|
|
>>> openbb.keys.nixtla(key="example_key")
|
|
"""
|
|
|
|
handle_credential("API_KEY_NIXTLA", key, persist)
|
|
return check_nixtla_key(show_output)
|
|
|
|
|
|
def check_nixtla_key(show_output: bool = False) -> str:
|
|
"""Check Nixtla key
|
|
|
|
Parameters
|
|
----------
|
|
show_output: bool, optional
|
|
Display status string or not. By default, False.
|
|
|
|
Returns
|
|
-------
|
|
status: str
|
|
"""
|
|
|
|
if show_output:
|
|
console.print("Checking status...")
|
|
|
|
current_user = get_current_user()
|
|
|
|
if (
|
|
current_user.credentials.API_KEY_NIXTLA
|
|
== "REPLACE_ME" # pragma: allowlist secret
|
|
): # pragma: allowlist secret
|
|
status = KeyStatus.NOT_DEFINED
|
|
else:
|
|
timegpt = TimeGPT(
|
|
token=get_current_user().credentials.API_KEY_NIXTLA,
|
|
)
|
|
status = (
|
|
KeyStatus.DEFINED_TEST_PASSED
|
|
if timegpt.validate_token()
|
|
else KeyStatus.DEFINED_TEST_FAILED
|
|
)
|
|
|
|
if show_output:
|
|
console.print(status.colorize())
|
|
|
|
return str(status)
|