Advertisement
Guest User

Flexget IRC Annouce Grab Config

a guest
Aug 23rd, 2017
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.41 KB | None | 0 0
  1. #------ private information
  2. variables: secrets.yml
  3.  
  4. irc:
  5.   irc_tl:
  6.     tracker_file: 'TorrentLeech.tracker'
  7.     nickname: '{? irc.nick1 ?}'
  8.     nickserv_password: '{? irc.nickserv_password ?}'
  9.     port: 7011
  10.     rsskey: '{? irc.rsskey ?}'
  11.     channels: ["#tlannounces"]
  12.     task_re:
  13.       movieA:
  14.         - regexp: '(Movies :: Bluray)'
  15.           field: irc_category
  16.       movieB:
  17.         - regexp: '(Movies :: Bluray)'
  18.           field: irc_category
  19.  
  20.       movieC:
  21.         - regexp: '(Movies :: BDRip)'
  22.           field: irc_category
  23.       movieD:
  24.         - regexp: '(Movies :: BDRip)'
  25.           field: irc_category
  26.  
  27.       movieE:
  28.         - regexp: '(Movies :: WEBRip)'
  29.           field: irc_category
  30.       movieF:
  31.         - regexp: '(Movies :: WEBRip)'
  32.           field: irc_category
  33.  
  34.       movieG:
  35.         - regexp: '(Movies :: HDRip)'
  36.           field: irc_category
  37.  
  38. templates:
  39.   movies:
  40.     max_reruns: 0
  41.     rtorrent:
  42.       uri: '{? whatbox.uri ?}'
  43.       username: '{? whatbox.usr ?}'
  44.       password: '{? whatbox.pwd ?}'
  45.       path: ~/files/MOVIES/
  46.       custom1: MOVIES
  47.     imdb_lookup: yes
  48.     imdb:
  49.       min_score: 6.0
  50.       min_votes: 100
  51.       min_year: 2017
  52.  
  53. tasks:
  54.   movieA:
  55.     seen: local
  56.     manual: yes
  57.     template:
  58.      - movies
  59.     quality: bluray 1080p h264 !dts
  60.     content_size:
  61.       max: 10000
  62.       min: 200
  63.     list_match:
  64.       from:
  65.         - movie_list: movieAseen
  66.       action: reject
  67.       remove_on_match: no
  68.     list_add:
  69.       - movie_list: movieAseen
  70.  
  71.   movieB:
  72.     seen: local
  73.     manual: yes
  74.     template:
  75.      - movies
  76.     quality: bluray 720p h264 !dts
  77.     content_size:
  78.       max: 10000
  79.       min: 200
  80.     list_match:
  81.       from:
  82.         - movie_list: movieBseen
  83.       action: reject
  84.       remove_on_match: no
  85.     list_add:
  86.       - movie_list: movieBseen
  87.  
  88.   movieC:
  89.     seen: local
  90.     manual: yes
  91.     template:
  92.      - movies
  93.     quality: bluray 720p h264 !dts
  94.     content_size:
  95.       max: 10000
  96.       min: 200
  97.     list_match:
  98.       from:
  99.         - movie_list: movieCseen
  100.       action: reject
  101.       remove_on_match: no
  102.     list_add:
  103.       - movie_list: movieCseen
  104.  
  105.   movieD:
  106.     seen: local
  107.     manual: yes
  108.     template:
  109.      - movies
  110.     quality: bluray <720p h264 !dts
  111.     content_size:
  112.       max: 10000
  113.       min: 200
  114.     list_match:
  115.       from:
  116.         - movie_list: movieDseen
  117.       action: reject
  118.       remove_on_match: no
  119.     list_add:
  120.       - movie_list: movieDseen
  121.  
  122.   movieE:
  123.     seen: local
  124.     manual: yes
  125.     template:
  126.      - movies
  127.     quality: webdl 1080p h264
  128.     content_size:
  129.       max: 6000
  130.       min: 200
  131.     list_match:
  132.       from:
  133.         - movie_list: movieEseen
  134.       action: reject
  135.       remove_on_match: no
  136.     list_add:
  137.       - movie_list: movieEseen
  138.  
  139.   movieF:
  140.     seen: local
  141.     manual: yes
  142.     template:
  143.      - movies
  144.     quality: webdl 720p h264
  145.     content_size:
  146.       max: 6000
  147.       min: 200
  148.     list_match:
  149.       from:
  150.         - movie_list: movieFseen
  151.       action: reject
  152.       remove_on_match: no
  153.     list_add:
  154.       - movie_list: movieFseen
  155.  
  156.   movieG:
  157.     seen: local
  158.     manual: yes
  159.     template:
  160.      - movies
  161.     quality: hdrip h264
  162.     content_size:
  163.       max: 6000
  164.       min: 200
  165.     list_match:
  166.       from:
  167.         - movie_list: movieGseen
  168.       action: reject
  169.       remove_on_match: no
  170.     list_add:
  171.       - movie_list: movieGseen
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement