It would probably work similar to the other newer scripts. Add this block above the defs
sess = requests.Session()
# Ignore verifying the SSL certificate
sess.verify = False # '/path/to/certfile'
# If verify is set to a path to a directory,
# the directory must have been processed using the c_rehash utility supplied
# with OpenSSL.
if sess.verify is False:
# Disable the warning that the request is insecure, we know that...
import urllib3
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
Then replace the existing calls to requests.get(TAUTULLI_URL.rstrip('/') + '/api/v2', params=payload) to sess.get(TAUTULLI_URL.rstrip('/') + '/api/v2', params=payload)
@jwaltrip4 You got it going? It’s probably better to pick one place to post an issue or ask for help. The best place would be the Tautulli discord’s #scripts. If it doesn’t seem activate at the time just post your question someone will respond eventually.