vote up 3 vote down star
1

I need code in Perl for requesting and parsing ATOM and RSS feeds. Is there a CPAN module(s) for that?

flag

4 Answers

vote up 6 vote down check

XML::FeedPP is good ...

link|flag
Beware of at least bugs.debian.org/cgi-bin/… but it's the best thats out there, AFAIK. – derobert Dec 28 '08 at 13:54
vote up 0 vote down

I've found that XML::Feed does a much better job of dealing with the errors that you are going to get if you're trying to parse arbitrary feeds that you don't control the generation of.

link|flag
vote up 4 vote down

Both XML::RSS and XML::Atom exist. Be warned -- XML::Atom does not seem to be actively maintained and reportedly has bugs. But the basics should be enough to get you going.

To fetch the feeds LWP::Simple is a good choice.

link|flag
XML::RSS is an RSS generator, not a reader. – ijw Jun 15 at 12:00
vote up 8 vote down

Almost any time that you ask "How can I do X in Perl?", the answer is to look at CPAN Search to find the module that does it.

To download from the web, the LWP family of modules can help you. To parse the documents, try something with Feed, RSS, or Atom in the name.

link|flag
Brian, this isn't as helpful as you might hope in this case: searching for 'RSS' and a few other terms tends to get you writers, plugins for other tools and old, dead modules and any signal in there is drowned out by noise. – ijw Jun 15 at 12:02
@ijw: spend more than 3 minutes trying. – brian d foy Jun 15 at 16:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.