我试图找到一个可以与 Perl CGI 脚本一起使用的 RSS 解析器。我发现simplepie
这真的很容易在 PHP 脚本中使用的解析器。不幸的是,这不适用于 Perl CGI 脚本。请让我知道是否有任何易于使用的东西,例如simplepie
.
我遇到了这个RssDisplay但我不确定它的用法以及它有多好。
我试图找到一个可以与 Perl CGI 脚本一起使用的 RSS 解析器。我发现simplepie
这真的很容易在 PHP 脚本中使用的解析器。不幸的是,这不适用于 Perl CGI 脚本。请让我知道是否有任何易于使用的东西,例如simplepie
.
我遇到了这个RssDisplay但我不确定它的用法以及它有多好。
XML::RSS::Parser是 RSS 提要的轻量级自由解析器。这个解析器是“自由的”,因为它不要求遵守特定的 RSS 版本,并且会尝试优雅地处理它不期望或不理解的标签。解析器的唯一要求是文件是格式良好的 XML 并且与 RSS 非常相似。
#!/usr/bin/perl
use strict; use warnings;
use XML::RSS::Parser;
use FileHandle;
my $parser = XML::RSS::Parser->new;
unless ( -e 'uploads.rdf' ) {
require LWP::Simple;
LWP::Simple::getstore(
'http://search.cpan.org/uploads.rdf',
'uploads.rdf',
);
}
my $fh = FileHandle->new('uploads.rdf');
my $feed = $parser->parse_file($fh);
print $feed->query('/channel/title')->text_content, "\n";
my $count = $feed->item_count;
print "# of Items: $count\n";
foreach my $i ( $feed->query('//item') ) {
print $i->query('title')->text_content, "\n";
}
#!/usr/bin/perl -w
use strict;
use XML::RSS::Parser;
use FileHandle;
my $p = XML::RSS::Parser->new;
my $fh = FileHandle->new('/path/to/some/rss/file');
my $feed = $p->parse_file($fh);
# output some values
my $feed_title = $feed->query('/channel/title');
print $feed_title->text_content;
my $count = $feed->item_count;
print " ($count)\n";
foreach my $i ( $feed->query('//item') ) {
my $node = $i->query('title');
print ' '.$node->text_content;
print "\n";
}
use XML::RSS::Parser::Lite;
use LWP::Simple;
my $xml = get("http://url.to.rss");
my $rp = new XML::RSS::Parser::Lite;
$rp->parse($xml);
print join(' ', $rp->get('title'), $rp->get('url'), $rp->get('description')), "\n";
for (my $i = 0; $i < $rp->count(); $i++) {
my $it = $rp->get($i);
print join(' ', $it->get('title'), $it->get('url'), $it->get('description')), "\n";
}
use dirtyRSS;
$tree = parse($in);
die("$tree\n") unless (ref $tree);
disptree($tree, 0);