From 3ed0035dd7c70cf944584a860ff67495a51b67ce Mon Sep 17 00:00:00 2001 From: Rain Date: Fri, 5 Apr 2024 15:11:59 -0400 Subject: [PATCH] F is for f-strings --- main.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/main.py b/main.py index c35f347..049cc11 100755 --- a/main.py +++ b/main.py @@ -6,11 +6,21 @@ import sys import time from datetime import datetime import configparser +from pathlib import Path import requests channel_list = [] downloading = {} +# Config Settings +streamlink_location = "streamlink" +download_location = str(f"{Path.home()}/Downloads/Streams/") +skip_ads = False + + +def load_config(): + pass + def write_log(channel): """Writes the latest stdout of a process to log.txt""" @@ -97,6 +107,7 @@ def main(): if __name__ == "__main__": """ This is executed when run from the command line """ try: + load_config() check_system() main() finally: