Hi,
In case anyone else uses Flexget + Deluge for autodownload, I've got a working configuration below
- Downloads UFC titles of 720p quality, but excludes things like weigh ins, contender series, early prelims, countdowns (per the regexp reject)
- Downloads One Championship, but excludes prelims (per the regexp reject)
- The UID and Pass values (on line 10) need to be updated. This IS NOT your username and password, but your cookie. To get these values, open Chrome, login to mma-torrents website, open up the developer console, and in the console type
Code:
document.cookie
and copy the values you see in the console into the configuration file. - You may wish to also update path and movedone on lines 12 and 13
Here's my configuration:
Code:
templates:
template_defaults:
verify_ssl_certificates: no
deluge:
main_file_only: yes
template_mma:
headers:
Cookie: "uid=XXXXXX; pass=XXXXXX"
set:
path: /path/to/download/goes/here
movedone: "/path/to/move/complete/goes/here"
tasks:
mma_ufc:
priority: 1
template:
- template_defaults
- template_mma
rss: https://mma-torrents.com/rssdl.php?cat=96
regexp:
reject:
- (?i)weigh.in
- (?i)early.prelims
- (?i)embedded
- (?i)post.fight
- (?i)contender.series
- (?i)the.ultimate.fighter
- (?i)countdown
- (?i)agony
- (?i)hall.of.fame
- (?i)ufc.now
accept:
- (?i)ufc
quality: 720p
mma_one:
priority: 1
template:
- template_defaults
- template_mma
rss: https://mma-torrents.com/rssdl.php?cat=70
regexp:
reject:
- (?i)prelim
accept:
- (?i)one.championship
quality: 720p