22 lines
844 B
Python
22 lines
844 B
Python
### --------- PROGRAMM CONFIGUARTION
|
|
programm_cooldown_time = 10 # Programm cooldown timer in minutes
|
|
api_cooldowm_time = 1 # API cooldown timer in minutes
|
|
logging_level = "warnings" # allowed values are "warnings", "infos", "debug"
|
|
|
|
|
|
### --------- API CONFIGURATION
|
|
# NOTION
|
|
notion_token = "secret_b7PiPL2FqC9QEikqkAEWOht7LmzPMIJMWTzUPWwbw4H"
|
|
notion_headers = {
|
|
"Authorization": "Bearer " + notion_token,
|
|
"Content-Type": "application/json",
|
|
"Notion-Version": "2022-02-22"
|
|
}
|
|
notion_db_id_trades = "95f7a2b697a249d4892d60d855d31bda"
|
|
notion_db_id_investments = "2ba10a5f51bd8160ab9ee982bbef8cc3"
|
|
notion_db_id_performance = "1c010a5f51bd806f90d8e76a1286cfd4"
|
|
|
|
# TRMNL
|
|
trmnl_page_id = "a791a6f1-dcac-4ea2-89fb-6c7be76d74b7"
|
|
trmnl_base_url = "https://usetrmnl.com/api/custom_plugins/"
|
|
trmnl_headers = {"Content-Type": "application/json"} |