>>
Anonymous
10/08/28(Sat)19:28
No. 9645
Since you didn't specify any language I'll assume you don't know any.
It'll be somewhat difficult, but all you need is the basics of Python and regular expressions (regex). You may use Java, Ruby, or whatever instead of Python, I just recommended Python because it's the easiest language that I've ever used.
Anyway, install Python, do the tutorial at docs.python.org, and, after you feel like you know the basics well enough,
import re
help(re)
After you understand it, google how to download files and you can start working on your project.
I've made a similar program for comics that don't have good RSS feeds, and it's pretty easy.