tags:

views:

28

answers:

2

Hi there

I am trying to create a directory with news articles collected from an rss feed, meaning that whenever there is a link to an article within the rss feed, I would like for it to be downloaded in a directory with the title of the specific article as the filename as as a text file. Is that something Python can help me do ?

Thank you for your help :-)

+1  A: 

Of course. BeautifulSoup, lxml, urllib2, urlgrabber.

Ignacio Vazquez-Abrams
+2  A: 

You can parse RSS feeds with feedparser and download files with urllib2. If you need to parse HTML use BeautifulSoup. If you have any problems with those, post more specific questions.

miles82