-
-
Notifications
You must be signed in to change notification settings - Fork 59
/
settings-sample.py
62 lines (57 loc) · 3.14 KB
/
settings-sample.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
"""
Searcharr
Sonarr, Radarr & Readarr Telegram Bot
By Todd Roberts
https://github.com/toddrob99/searcharr
"""
# Searcharr Bot
searcharr_password = "" # Used to authenticate as a regular user to add series/movies
searcharr_admin_password = "" # Used to authenticate as admin to manage users
searcharr_language = "en-us" # yml file in the lang folder
searcharr_start_command_aliases = ["start"] # Override /start command
searcharr_help_command_aliases = ["help"] # Override /help command
searcharr_users_command_aliases = ["users"] # Override /users command
# Telegram
tgram_token = ""
# Sonarr
sonarr_enabled = True
sonarr_url = "" # http://192.168.0.100:8989
sonarr_api_key = ""
sonarr_quality_profile_id = ["HD - 720p/1080p"] # can be name or id value - include multiple to allow the user to choose
sonarr_add_monitored = True
sonarr_search_on_add = True
sonarr_tag_with_username = True
sonarr_forced_tags = [] # e.g. ["searcharr", "friends-and-family"] - leave empty for none
sonarr_allow_user_to_select_tags = True
sonarr_user_selectable_tags = [] # e.g. ["custom-tag-1", "custom-tag-2"] - leave empty to let user choose from all tags in Sonarr
sonarr_series_command_aliases = ["series"] # e.g. ["series", "tv", "t"]
sonarr_series_paths = [] # e.g. ["/tv", "/anime"] - can be full path or id value - leave empty to enable all
sonarr_season_monitor_prompt = False # False - always monitor all seasons; True - prompt user to select from All, First, or Latest season(s)
# Radarr
radarr_enabled = True
radarr_url = "" # http://192.168.0.100:7878
radarr_api_key = ""
radarr_quality_profile_id = ["HD - 720p/1080p"] # can be name or id value - include multiple to allow the user to choose
radarr_add_monitored = True
radarr_search_on_add = True
radarr_tag_with_username = True
radarr_forced_tags = [] # e.g. ["searcharr", "friends-and-family"] - leave empty for none
radarr_allow_user_to_select_tags = True
radarr_user_selectable_tags = [] # e.g. ["custom-tag-1", "custom-tag-2"] - leave empty to let user choose from all tags in Radarr
radarr_min_availability = "released" # options: "announced", "inCinemas", "released"
radarr_movie_command_aliases = ["movie"] # e.g. ["movie", "mv", "m"]
radarr_movie_paths = [] # e.g. ["/movies", "/other-movies"] - can be full path or id value - leave empty to enable all
# Readarr
readarr_enabled = True
readarr_url = "" # http://192.168.0.100:8787
readarr_api_key = ""
readarr_quality_profile_id = ["eBook", "Spoken"] # can be name or id value - include multiple to allow the user to choose
readarr_metadata_profile_id = ["Standard"] # can be name or id value - include multiple to allow the user to choose
readarr_add_monitored = True
readarr_search_on_add = True
readarr_tag_with_username = True
readarr_forced_tags = [] # e.g. ["searcharr", "friends-and-family"] - leave empty for none
readarr_allow_user_to_select_tags = True
readarr_user_selectable_tags = [] # e.g. ["custom-tag-1", "custom-tag-2"] - leave empty to let user choose from all tags in Readarr
readarr_book_command_aliases = ["book"] # e.g. ["book", "bk", "b"]
readarr_book_paths = [] # e.g. ["/books", "/other-books"] - can be full path or id value - leave empty to enable all