From ff0875ac1ba949bd7d72fe781b1b10a2f9e664cc Mon Sep 17 00:00:00 2001 From: deathbybandaid Date: Fri, 6 Jan 2023 12:08:25 -0500 Subject: [PATCH] test --- tdarr_inform.py | 47 +++++++++++++++++++++++++++++++++-------------- 1 file changed, 33 insertions(+), 14 deletions(-) diff --git a/tdarr_inform.py b/tdarr_inform.py index 259c060..4169ed1 100644 --- a/tdarr_inform.py +++ b/tdarr_inform.py @@ -1,9 +1,9 @@ #!/usr/bin/python3 import os -# from sys import argv - +from sys import argv +""" # title = show title # season = season # # fileNameBase is file name without path @@ -13,6 +13,23 @@ import os # payload = {"data": {"scanConfig": { "dbID": dbName, "arrayOrPath": ["/media/TVShows/" + title + "/Season " + season + "/" + fileNameBase[:-3] + '.mkv'], "mode": "scanFolderWatcher"}}} # headers = {"content-type": "application/json"} # response = requests.post(tdarr_url, json=payload, headers=headers) +""" + +""" + { + "data": { + "scanConfig": { + "dbID": "KX7zfikAc", + "arrayOrPath": [ + "/data/shows/file1.mp4", + "/data/shows/file2.mp4", + "/data/shows/file3.mp4", + ], + "mode": "scanFolderWatcher" + } + } +} +""" # fp = open('/opt/testlog.log', 'a', 0) @@ -22,22 +39,24 @@ import os def main(): SCRIPT_PATH = os.path.realpath(__file__) SCRIPT_DIR = os.path.dirname(SCRIPT_PATH) - ENV_FILE = f"{SCRIPT_DIR}\\ARR_ENV.txt" + # ENV_FILE = f"{SCRIPT_DIR}\\ARR_ENV.txt" - envs = {} + print("argv %s" % argv) + + # envs = {} # Checking all potentiall environment variables - with open(ENV_FILE, 'r') as f: - for line in f: - env = line.rstrip() - if env in os.environ: - envs[env] = os.environ[env] + # with open(ENV_FILE, 'r') as f: + # for line in f: + # env = line.rstrip() + # if env in os.environ: + # envs[env] = os.environ[env] - # No environment variables were found - # Either the script was run manually as a test (ie Not ran by *arr) - # or, something went wrong : ) - if len(envs) == 0: - raise Exception('No *arr Environment variables were found.') + # # No environment variables were found + # # Either the script was run manually as a test (ie Not ran by *arr) + # # or, something went wrong : ) + # if len(envs) == 0: + # raise Exception('No *arr Environment variables were found.') # envs is now a dictionary containing any *arr variables found # Call your own script here, or do what you want with the environment variables found