[Plugin] FlexGet - RSS Solution (Deluge 1.1 and 1.2+)

Suggest, post, or discuss plugins for Deluge
Zinom
Member
Member
Posts: 23
Joined: Tue Jan 12, 2010 6:50 pm

Re: Deluge RSS plugin for FlexGet (works with 1.1 and 1.2)

Post by Zinom »

gazpachoking wrote:Also, I bet you could get this working now by creatively using the modify, and/or set plugin with string replacement.
If I've understood correctly the string replacement can only add variables from an entry. How can I get my cli-config variables as an entry, or how did you intend me to use the string replacement for achieving what I'm trying to achieve? :P :oops:
gazpachoking
Moderator
Moderator
Posts: 315
Joined: Sat Aug 18, 2007 2:28 pm
Location: Pittsburgh, USA

Re: Deluge RSS plugin for FlexGet (works with 1.1 and 1.2)

Post by gazpachoking »

Zinom wrote: If I've understood correctly the string replacement can only add variables from an entry. How can I get my cli-config variables as an entry, or how did you intend me to use the string replacement for achieving what I'm trying to achieve? :P :oops:
Well, I was going to try to figure something out, but it seems paranoidi already implemented your ticket. Try r1243
Zinom
Member
Member
Posts: 23
Joined: Tue Jan 12, 2010 6:50 pm

Re: Deluge RSS plugin for FlexGet (works with 1.1 and 1.2)

Post by Zinom »

gazpachoking wrote:Well, I was going to try to figure something out, but it seems paranoidi already implemented your ticket. Try r1243
Yes, I tried it yesterday and it worked fine! :) One thing though, it seems that two variables on the same string doesn't work, probably replaces each other. This is nothing that I am in need of, but just a thing that could be fixed in the future maybe.

I am as usual very grateful for the support, thanks! :D
k-rog
Member
Member
Posts: 18
Joined: Sat Apr 17, 2010 2:51 pm

Re: Deluge RSS plugin for FlexGet (works with 1.1 and 1.2)

Post by k-rog »

i'm looking for a replacement for torrentflux-b4rt for auto downloading of anime series. But i can nowhere find any regex rules. How can i configure it so that e.a. only downloads naruto episodes in 720p from the releasegroup NARUTORELEASES?
Zinom
Member
Member
Posts: 23
Joined: Tue Jan 12, 2010 6:50 pm

Re: Deluge RSS plugin for FlexGet (works with 1.1 and 1.2)

Post by Zinom »

k-rog wrote:How can i configure it so that e.a. only downloads naruto episodes in 720p from the releasegroup NARUTORELEASES?

Code: Select all

regexp:
  accept:
    - 720p(.*)NARUTORELEASES
perhaps?
gazpachoking
Moderator
Moderator
Posts: 315
Joined: Sat Aug 18, 2007 2:28 pm
Location: Pittsburgh, USA

Re: Deluge RSS plugin for FlexGet (works with 1.1 and 1.2)

Post by gazpachoking »

k-rog wrote:How can i configure it so that e.a. only downloads naruto episodes in 720p from the releasegroup NARUTORELEASES?
Have you tried using the series plugin? Anime doesn't work as well as normal series, so you might be better off with just regexp rule. Here is how I would try to configure the series plugin though:

Code: Select all

series:
  - Naruto:
      quality: 720p
      from_group: NARUTORELEASES
k-rog
Member
Member
Posts: 18
Joined: Sat Apr 17, 2010 2:51 pm

Re: Deluge RSS plugin for FlexGet (works with 1.1 and 1.2)

Post by k-rog »

gazpachoking wrote:
k-rog wrote:How can i configure it so that e.a. only downloads naruto episodes in 720p from the releasegroup NARUTORELEASES?
Have you tried using the series plugin? Anime doesn't work as well as normal series, so you might be better off with just regexp rule. Here is how I would try to configure the series plugin though:

Code: Select all

series:
  - Naruto:
      quality: 720p
      from_group: NARUTORELEASES
So could i put the to together to get this?

Code: Select all

series:
  - Naruto:
      regexp:
        accept:
          - 720p(.*)NARUTORELEASES
gazpachoking
Moderator
Moderator
Posts: 315
Joined: Sat Aug 18, 2007 2:28 pm
Location: Pittsburgh, USA

Re: Deluge RSS plugin for FlexGet (works with 1.1 and 1.2)

Post by gazpachoking »

k-rog wrote:
So could i put the to together to get this?

Code: Select all

series:
  - Naruto:
      regexp:
        accept:
          - 720p(.*)NARUTORELEASES
Nope, the series plugin is totally seperate from the regexp plugin. You can however define a custom regex to match the name of the series, go look at the series plugin wiki page. I recommend poking around the flexget wiki more to get the hang of configuration. If you still have trouble maybe stop by #flexget for some more interactive help.
k-rog
Member
Member
Posts: 18
Joined: Sat Apr 17, 2010 2:51 pm

Re: Deluge RSS plugin for FlexGet (works with 1.1 and 1.2)

Post by k-rog »

I see now that the series plugin uses regular expressions under water and can be just as powerfull als writing regex your self. I also saw you can use regex in the series plugin if you think you need it. I'm going to give the series plugin a shot. But must say, that FlexGet isn't a plugin for the beginner. I'm having a real hard time comprehending it all. And i'm a IT engineer myself.
gazpachoking
Moderator
Moderator
Posts: 315
Joined: Sat Aug 18, 2007 2:28 pm
Location: Pittsburgh, USA

Re: Deluge RSS plugin for FlexGet (works with 1.1 and 1.2)

Post by gazpachoking »

k-rog wrote:I see now that the series plugin uses regular expressions under water and can be just as powerfull als writing regex your self. I also saw you can use regex in the series plugin if you think you need it. I'm going to give the series plugin a shot. But must say, that FlexGet isn't a plugin for the beginner. I'm having a real hard time comprehending it all. And i'm a IT engineer myself.
I think Flexget is pretty awesome, because your config can range from extremly simple, to complicated and powerful. For example, here is how your Naruto example would fit in to a full config with some other series:

Code: Select all

feeds:
  tv:
    rss: http://good.rss.feed/feed.xml
    series:
      - Chuck
      - Castle
      - Naruto:
          quality: 720p
          from_group: NARUTORELEASES
    deluge: yes
Post Reply