Advertisement
advokatb

Untitled

Aug 31st, 2019
586
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.88 KB | None | 0 0
  1. variables: private/secretfile.yml
  2.  
  3. web_server:
  4.   bind: 127.0.0.1
  5.   run_v2: true
  6.   port: 5050
  7.   web_ui: yes
  8.  
  9. schedules:
  10.   - tasks: '*'
  11.     interval:
  12.       minutes: 30
  13.  
  14. templates:
  15.   tvshows:
  16.     thetvdb_lookup: yes
  17.     set:
  18.       path: e:\video\Сериалы\{{series_name_rus}}\Season {{series_season}}
  19.       label: Сериалы
  20.     transmission:
  21.       host: '{? transmission.host ?}'
  22.       port: 9091
  23.       username: '{? transmission.username ?}'
  24.       password: '{? transmission.password ?}'
  25.       ratio: 1.00
  26.     series_premiere: yes
  27.  
  28.   clean:
  29.     clean_transmission:
  30.       host: '{? transmission.host ?}'
  31.       port: 9091
  32.       username: '{? transmission.username ?}'
  33.       password: '{? transmission.password ?}'
  34.       finished_for: 24 hours
  35.       tracker: pirateparty|tracktor|retracker.local
  36.   notifycation:
  37.     notify:
  38.       entries:
  39.         message: |+
  40.           *{{series_name_rus}}*
  41.           *{{episode_name_rus}}*
  42.           ({{tvdb_banner}})
  43.           _Сезон {{series_season}} | Серия {{series_episode}}_
  44.         via:
  45.           - telegram:
  46.              bot_token: '{? telegram.bot_token ?}'
  47.              parse_mode: markdown
  48.              recipients:
  49.                - username: '{? telegram.username ?}'
  50.   season:
  51.     set:
  52.       path: "e:/video/collector"
  53.     thetvdb_lookup: yes
  54.   films:
  55.     set:
  56.       path: "g:/video/Фильмы (Новинки)/{{ movie_name }} ({{ movie_year }})"
  57.     thetvdb_lookup: yes
  58.     imdb_lookup: yes
  59.  
  60.   transmission:
  61.     transmission:
  62.       host: '{? transmission.host ?}'
  63.       port: 9091
  64.       username: '{? transmission.username ?}'
  65.       password: '{? transmission.password ?}'
  66.       ratio: 1.00
  67.  
  68. tasks:
  69.   lostfilm:
  70.     template:
  71.      - tvshows
  72.       # - notifycation
  73.     headers:
  74.       cookie: '{? lostfilm.cookie_new ?}'
  75.     lostfilm: yes
  76.     quality:
  77.      - 480p
  78.     include: private/series_lostfilm.yml
  79.  
  80.   lostfilmHD:
  81.     template:
  82.      - tvshows
  83.     headers:
  84.       cookie: '{? lostfilm.cookie_new ?}'
  85.     lostfilm: yes
  86.     quality:
  87.      - 720p
  88.     include: private/HD_lostfilm.yml
  89.  
  90.   LITRCC:
  91.     rss:
  92.       url: '{? litrcc.rss ?}'
  93.       all_entries: no
  94.     accept_all: yes
  95.     template:
  96.      - transmission
  97.       - season
  98.       - clean
  99.       #- manual
  100.     disable:
  101.      - seen
  102.       - seen_info_hash
  103.  
  104.   nnm-club:
  105.     rss:
  106.       url: '{? nnmclub.rss ?}'
  107.       other_fields: [description]
  108.       ascii: yes
  109.     accept_all: yes
  110.     manipulate:
  111.       - title:
  112.           replace:
  113.             regexp: '[^\x00-\x80]+'
  114.             format: ''
  115.       - kinopoisk_id:
  116.           from: description
  117.           replace:
  118.             regexp: '(.|\n)*kinopoisk.ru/rating/([0-9]+)(.|\n)*'
  119.             format: '\2'
  120.     kinopoisk:
  121.       min_score: 7.0
  122.       min_votes: 1000
  123.     template:
  124.      - transmission
  125.       - films
  126.       - clean
  127.  
  128.   services:
  129.     template:
  130.      - clean
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement