Skip to content
This repository was archived by the owner on Jun 14, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 31 additions & 1 deletion data/example-config.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,20 +269,42 @@
"sonarr_url": "http://localhost:8989",
"sonarr_api_key": "",

# Required by --sonarr-add. Series are added unmonitored and Sonarr search is not triggered.
"sonarr_quality_profile_id": 0,
"sonarr_root_folder_path": "",
"sonarr_series_type": "standard",
"sonarr_season_folder": True,
"sonarr_monitor": "none",

# details for a second sonarr instance
# additional sonarr instances can be added by adding more sonarr_url_x and sonarr_api_key_x entries
"sonarr_url_1": "http://my-second-instance:8989",
"sonarr_api_key_1": "",
# optional per-instance overrides for --sonarr-add
# "sonarr_quality_profile_id_1": 0,
# "sonarr_root_folder_path_1": "",
# "sonarr_series_type_1": "standard",
# "sonarr_season_folder_1": True,
# "sonarr_monitor_1": "none",

# set true to use radarr for movie searching
"use_radarr": False,
"radarr_url": "http://localhost:7878",
"radarr_api_key": "",

# Required by --radarr-add. Movies are added unmonitored and Radarr search is not triggered.
"radarr_quality_profile_id": 0,
"radarr_root_folder_path": "",
"radarr_minimum_availability": "released",

# details for a second radarr instance
# additional radarr instances can be added by adding more radarr_url_x and radarr_api_key_x entries
"radarr_url_1": "http://my-second-instance:7878",
"radarr_api_key_1": "",
# optional per-instance overrides for --radarr-add
# "radarr_quality_profile_id_1": 0,
# "radarr_root_folder_path_1": "",
# "radarr_minimum_availability_1": "released",

# Add a directory for Emby linking. This is the folder where the emby files will be linked to.
# If not set, Emby linking will not be performed. Symlinking only, linux not tested
Expand Down Expand Up @@ -350,7 +372,7 @@

"TRACKERS": {
# Which trackers do you want to upload to?
# Available tracker: A4K, ACM, AITHER, ANT, AR, ASC, AZ, BHD, BHDTV, BJS, BLU, BT, CBR, CZ, DC, DP, DT, EMUW, FF, FL, FNP, FRIKI, GPW, HDB, HDS, HDT, HHD, HUNO, IHD, IS, ITT, LCD, LDU, LST, LT, LUME, MTV, NBL, OE, OTW, PHD, PT, PTER, PTP, PTS, PTT, R4E, RAS, RF, RTF, SAM, SHRI, SN, SP, SPD, STC, THR, TIK, TL, TLZ, TOS, TTG, TTR, TVC, ULCX, UTP, YOINK, YUS
# Available tracker: A4K, ACM, AITHER, ANT, AR, ASC, AZ, BHD, BHDTV, BJS, BLU, BT, CBR, CZ, DC, DP, DT, EMUW, FF, FL, FNP, FRIKI, GPW, HDB, HDS, HDT, HHD, HUNO, IHD, IS, ITT, LCD, LDU, LST, LT, LUME, MTV, NBL, OE, OTW, PHD, PT, PTER, PTP, PTS, PTT, R4E, RAS, RF, RMC, RTF, SAM, SHRI, SN, SP, SPD, STC, THR, TIK, TL, TLZ, TOS, TTG, TTR, TVC, ULCX, UTP, YOINK, YUS
# Only add the trackers you want to upload to on a regular basis
"default_trackers": "",

Expand Down Expand Up @@ -786,6 +808,14 @@
"api_key": "",
"anon": False,
},
"RMC": {
# Instead of using the tracker acronym for folder name when sym/hard linking, you can use a custom name
"link_dir_name": "",
"api_key": "",
"anon": False,
# Send uploads to RMC modq for staff approval
"modq": False,
},
"RTF": {
# Instead of using the tracker acronym for folder name when sym/hard linking, you can use a custom name
"link_dir_name": "",
Expand Down
12 changes: 12 additions & 0 deletions docs/example-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,23 @@ Implementation notes:
- `sonarr_url` (str): Sonarr base URL.
- `sonarr_api_key` (str): Sonarr API key.
- `sonarr_url_1` / `sonarr_api_key_1` (str): Optional second Sonarr instance.
- `sonarr_quality_profile_id` (int): Quality profile ID used by `--sonarr-add`.
- `sonarr_root_folder_path` (str): Root folder path used by `--sonarr-add`.
- `sonarr_series_type` (str): Series type used by `--sonarr-add` (`standard`, `daily`, or `anime`).
- `sonarr_season_folder` (bool): Whether `--sonarr-add` enables season folders.
- `sonarr_monitor` (str): Sonarr monitor option for `--sonarr-add`; default `none`.

- `use_radarr` (bool): Enable Radarr searching.
- `radarr_url` (str): Radarr base URL.
- `radarr_api_key` (str): Radarr API key.
- `radarr_url_1` / `radarr_api_key_1` (str): Optional second Radarr instance.
- `radarr_quality_profile_id` (int): Quality profile ID used by `--radarr-add`.
- `radarr_root_folder_path` (str): Root folder path used by `--radarr-add`.
- `radarr_minimum_availability` (str): Minimum availability used by `--radarr-add`; default `released`.

Implementation notes:
- `--sonarr-add` supports suffixed per-instance overrides such as `sonarr_quality_profile_id_1`, `sonarr_root_folder_path_1`, `sonarr_series_type_1`, `sonarr_season_folder_1`, and `sonarr_monitor_1`.
- `--radarr-add` supports suffixed per-instance overrides such as `radarr_quality_profile_id_1`, `radarr_root_folder_path_1`, and `radarr_minimum_availability_1`.

### Torrent creation
- `mkbrr` (bool): Use mkbrr for torrent creation.
Expand Down
Loading