This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# conf.py | |
SESSION_PATH = "./sessions" # will create the sessions file in the current folder | |
EMAIL = "CHANGE-ME" | |
PASSWORD = "CHANGE-ME" | |
HISTORY_PATH = "./history" # will create the records of episodes in the history folder | |
ENDPOINT_URL = "https://api.example.com/endpoint" | |
EXPORT_FILENAME = "./playedEpisodes.csv" # export file for the episodes played | |
MD_TEMPLATE = 'CHANGE-ME' # path to the obsidian template MD | |
OUTPUT_FOLDER = 'CHANGE-ME' # path for the Obsidian output folder |