Quantcast
Channel: configuration - Forum - FlexGet
Viewing all articles
Browse latest Browse all 716

TheTVDB_Favorites is depreciated, use TheTVDB_List

$
0
0

@scharbag wrote:

I am getting the above message on 2.1.14 even though the only place that I call thetvdb is in my series config (unless I am missing something) and I call thetvdb_list. Below is my config (bit of a bloated mess as it has been around a while):

Sparky@FlexGet:~/.flexget % cat config.yml
secrets: secrets.yml

templates:
  global:
    email:
      from: '{{ secrets.xmpp.from }}'
      to: '{{ secrets.xmpp.to }}'
      smtp_host: '{{ secrets.xmpp.host }}'
      smtp_username: '{{ secrets.xmpp.usr }}'
      smtp_password: '{{ secrets.xmpp.pwd }}'
      smtp_port: 587
      smtp_tls: yes      

  trpc:
    transmission:
      enabled: yes
      host: '{{ secrets.trans.host }}'
      port: 9091
      username: '{{ secrets.trans.usr }}'
      password: '{{ secrets.trans.pwd }}'
    clean_transmission:
      host: '{{ secrets.trans.host }}'
      port: 9091
      username: '{{ secrets.trans.usr }}'
      password: '{{ secrets.trans.pwd }}'
      finished_for: 1 hours
      transmission_seed_limits: yes

  TV:
    configure_series:
      from:
        thetvdb_list:
          username: '{{ secrets.tvdb.usr }}'
          account_id: '{{ secrets.tvdb.id }}'
          strip_dates: yes
      settings:
        timeframe: 8 hours
        quality: 720p+
        propers: 5 days
    series:
      settings:
        720p:
          quality: 720p+
      720p: 
        - NCIS:
            exact: yes
    exists_series: '/media/HTPC/TV/{{series_name}}'
        
  RT:
    exists_series: '/media/HTPC/TV/{{series_name}}'
    series:
      - Real Time with Bill Maher
    quality: 720p+

  Formula_One:
    regexp:
      accept:
        - Formula(.*)2016(.*)720p(.*)Sky(.*)
#        - Formula(.*)Practice(.*)720p
#        - Formula(.*)FP(.*)
#        - Formula(.*)Race(.*)2013
#        - Formula(.*)Qualifying(.*)720p
        - Le(.*)Mans(.*)2016(.*)
      reject:
        - DANISH
        - 360p
        - sd
        - '2014'
        - '2013'
        - '2012'
        - '2011'
        - '2010'
        - Inside
        - Game
        - Gear
        - Highlight
        - Build
        - 50Hz
        - Speed
        - Pack

tasks:

  Move-TV:
    priority: 30
    seen: local
    template: TV
    configure_series:
      settings:
        parse_only: yes
        propers: 5 days
    require_field: series_id
    disable: 
      - backlog
    filesystem:
      path: /media/HTPC/Downloading/TV
      regexp: '.*\.(avi|mkv|mp4)$'
      recursive: yes
    regexp:
      reject:
        - sample
    accept_all: yes
    move:
      to: "/media/HTPC/Downloading/TV_Sort/"
      filename: '{{series_name}} - {{series_id}}'
      clean_source: 50

  Unpack:
    priority: 10
    seen: local
    inputs:
      - filesystem:
          path: /media/HTPC/Downloading/TV/
          mask: '*.rar'
          recursive: yes
    regexp:
      accept_excluding:
        - part([0-9]{2,4}|[2-9]).rar$
      accept:
        - part01.rar$
        - part001.rar$
    only_new: yes
    exec:
      on_output:
        for_accepted: >
          unrar x -o- -y "{{location}}" /media/HTPC/Downloading/TV_Sort/ 

  Series-TV:
    priority: 1
    inputs:
      - rss: http://extratorrent.cc/rss.xml?cid=8
      - rss: https://eztv.ag/ezrss.xml
      - rss: http://kat.cr/tv/?rss=1
      - rss: http://torrentz.eu/feed
#      - rss: http://rss.thepiratebay.se/208
      - rss: http://www.torlock.com/television/rss.xml
      - rss: http://showrss.info/feeds/all.rss    
    regexp:
      reject_excluding:
        - (AVS|ettv|KILLERS|rartv|EtHD|SNEAkY|SPARKS|RARBG|EZTV|GloDLS|FGT|DIMENSION)
    template:
      - TV
      - trpc
    set:
      path: /media/HTPC/Downloading/TV/{{series_name}}
 
  Realtime:
    priority: 2
    inputs:
      - rss: http://extratorrent.cc/rss.xml?cid=8
      - rss: https://eztv.ag/ezrss.xml
      - rss: http://kat.cr/tv/?rss=1
      - rss: http://torrentz.eu/feed
#      - rss: http://rss.thepiratebay.se/208
      - rss: http://www.torlock.com/television/rss.xml
      - rss: http://showrss.info/feeds/all.rss
    template:
      - RT
      - trpc
    set:
      path: /media/HTPC/Downloading/TV/{{series_name}}

  F1:  
    priority: 3
    inputs:
      - rss: 
          url: http://kat.cr/usearch/formula%201/?rss=1
          other_fields: ['torrent:magnetURI']
          link: 'torrent:magnetURI'
      - rss: 
          url: http://kat.cr/usearch/le%20mans/?rss=1
          other_fields: ['torrent:magnetURI']
          link: 'torrent:magnetURI'
    template: 
      - Formula_One
      - trpc
    set:
      path: /media/HTPC/Downloading/FormulaOne

  seed_series_db:
    # The find plugin will find all of your existing episodes
    # We use the manual plugin so that this task only runs when explicitly called
    manual: yes
    filesystem:
      regexp: .*(avi|mkv|mp4)$
      path: /media/HTPC/TV
      recursive: yes
    disable: builtins
    configure_series:
      settings:
        set:
          tracking: no
      from:
        filesystem:
          - /media/HTPC/TV

    exec: echo "Found {{title}}"

#    template: TV

schedules:
  - tasks: [Series-TV, Realtime, F1]
    interval:
      minutes: 30
  - tasks: [Unpack, Move-TV]
    interval:
      minutes: 5

I have executed a flexget daemon reload and I still get:

There is a FlexGet process already running for this config, sending execution there.
2016-07-17 13:12 INFO     manager                       Reloading config from disk.
2016-07-17 13:12 WARNING  config_schema                 thetvdb_favorites is deprecated, use thetvdb_list instead
2016-07-17 13:12 INFO     manager                       Config successfully reloaded from disk.

I am positive that I do not call the old thetvdb_favorites command:

User@FlexGet:~/.flexget % grep thetvdb config.yml
        thetvdb_list:
User@FlexGet:~/.flexget %

Any suggestions on what I am doing wrong regarding thetvdb plugin would be greatly appreciated.

Cheers,

Posts: 4

Participants: 3

Read full topic


Viewing all articles
Browse latest Browse all 716

Trending Articles