Lightweight, "relaxed" rss (and xml-ish) parser
use XML::RSSLite; . . . parseRSS(\%result, \$content); print "=== Channel ===\n", "Title: $result{'title'}\n", "Desc: $result{'description'}\n", "Link: $result{'link'}\n\n"; foreach $item (@{$result{'item'}}) { print " --- Item ---\n", " Title: $item->{'title'}\n", " Desc: $item->{'description'}\n", " Link: $item->{'link'}\n\n"; }
This module attempts to extract the maximum amount of content from available documents, and is less concerned with \s-1XML\s0 compliance than alternatives. Rather than rely on XML::Parser, it uses heuristics and good old-fashioned Perl regular expressions. It stores the data in a simple hash structure, and \*(L"aliases\*(R" certain tags so that when done, you can count on having the minimal data necessary for re-constructing a valid \s-1RSS\s0 file. This means you get the basic title, description, and link for a channel and its items.
This module extracts more usable links by parsing \*(L"scriptingNews\*(R" and \*(L"weblog\*(R" formats in addition to \s-1RDF\s0 & \s-1RSS\s0. It also \*(L"sanitizes\*(R" the output for best results. The munging includes:
$inScalarRef is a reference to a scalar containing the document to be parsed, the contents will effectively be destroyed. $outHashRef is a reference to the hash within which to store the parsed content.
Reference to hash to store the parsed document within.
Reference to scalar containing the document to parse.
Tag to consider the root node, leaving this undefined is not recommended.
This is not a conforming parser. It does not handle the following
<foo bar=">">
<foo><bar> <bar></bar> <bar></bar> </bar></foo>
<![CDATA[ ]]>
PI
It's non-validating, without a \s-1DTD\s0 the following cannot be properly addressed
This may or may not be arriving in some future release.
perl\|(1), \*(C`XML::RSS\*(C', \*(C`XML::SAX::PurePerl\*(C', \*(C`XML::Parser::Lite\*(C', <XML::Parser>
Jerrad Pierce <[email protected]>.
Scott Thomason <[email protected]>
Portions Copyright (c) 2002,2003,2009 Jerrad Pierce, (c) 2000 Scott Thomason. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.