Help with RSS downloader please!

Other platforms, generic questions.
Post Reply
RevDes
Newbie
Newbie
Posts: 4
Joined: Wed Oct 25, 2023 10:25 am

Help with RSS downloader please!

Post by RevDes »

I'm trying to set up the automatic downloader and I'm not having much success.

Let's say these are the duplicate torrents:

NHL 2023 24 Washington Capitals vs Montreal Canadiens 720p 60fps ENG 21 10 2023
NHL RS 2023 Washington Capitals vs Montreal Canadiens 21 10 720pEN60fps

NHL 2023 24 Ottawa Senators vs Washington Capitals 720p 60fps ENG 18 10 2023
NHL RS 2023 Ottawa Senators vs Washington Capitals 18 10 720pEN30fps

In the rule definition, I click on Use Regular Expressions. What do I put in 'must contain' and 'must not contain' or order to get, say, only the first one of each game?

Thanks in advance!
User avatar
Peter
Administrator
Administrator
Posts: 2702
Joined: Wed Jul 07, 2010 6:14 pm

Re: Help with RSS downloader please!

Post by Peter »

As it says, you have to use regular expressions.
It's not easy to learn but, thanks to ChatGPT and Bing with AI, you can just ask them to make a rule for you.

I'd probably do:

Code: Select all

NHL 2023.*720p.*
It's pretty dumb but would do the trick.
- "NHL 2023" start
- ".*" just means any character and it can repeat
- "720p" text after
- ".*" again to match again anything after

Google "regex tester" online to test your regex.

(Regex is powerful, you can even make it grab the date variant too.

Code: Select all

NHL.*\d{1,2}\s\d{1,2}\s\d{4}
)
RevDes
Newbie
Newbie
Posts: 4
Joined: Wed Oct 25, 2023 10:25 am

Re: Help with RSS downloader please!

Post by RevDes »

Thanks a lot Peter
RevDes
Newbie
Newbie
Posts: 4
Joined: Wed Oct 25, 2023 10:25 am

Re: Help with RSS downloader please!

Post by RevDes »

But that won't show just the Washington Capitals games!!
User avatar
Peter
Administrator
Administrator
Posts: 2702
Joined: Wed Jul 07, 2010 6:14 pm

Re: Help with RSS downloader please!

Post by Peter »

RevDes wrote: Sat Oct 28, 2023 5:46 pm But that won't show just the Washington Capitals games!!
Post examples of those. :)
RevDes
Newbie
Newbie
Posts: 4
Joined: Wed Oct 25, 2023 10:25 am

Re: Help with RSS downloader please!

Post by RevDes »

I did in my original post
Post Reply