I hereby claim:
- I am Wreave on github.
- I am wreave (https://keybase.io/wreave) on keybase.
- I have a public key whose fingerprint is FD5B DCDF B97B 7514 CA26 ECD0 BBB2 40EC 7B46 10F4
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| from __future__ import print_function | |
| import requests | |
| URL = "https://example.com/sonarr" | |
| api = "APIKEY" | |
| seriesIDs = [] | |
| episodeIDs = [] | |
| history = [] | |
| releasegroups = {} |
| import requests | |
| from pushover import Client | |
| # Settings | |
| # URL example: "https://sonarr.domain.com" or "192.168.1.1:8989" | |
| sonarr_url = "" | |
| sonarr_api = "" | |
| radarr_url = "" | |
| radarr_api = "" |
Privacy Policy
Tautulli built the Tautulli Remote app as an Open Source app. This SERVICE is provided by Tautulli at no cost and is intended for use as is.
This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.
If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.
The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Tautulli Remote unless otherwise defined in this Privacy Policy.
| import json | |
| language_codes = ['ca', 'cs', 'da', 'de', 'el', 'es', 'fr', 'hu', 'it', 'nb', 'nl', 'pl', 'pt-BR', 'pt-PT', 'ru', 'sk', 'sl', 'sq', 'sv', 'zh'] | |
| old_translation_location = 'old_translations/' | |
| new_translation_location = 'new_translations/' | |
| # Open old and new english translations | |
| with open(f'{old_translation_location}en.json', encoding="utf8") as f: | |
| old = json.load(f) |