Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I'd be grateful for any pointers in the two issues.use strict; use warnings; use LWP::Simple; use XML::LibXML; my $tickets = qw(localhost/rss); my $feed = get($tickets); my $parser = XML::LibXML->new; my $doc = $parser->parse_string($feed); my $date = $doc->findvalue('rss/channel/item/pubDate'); my $desc = $doc->findvalue('rss/channel/item/description'); my %hash = ($date, $desc);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Automating RSS fetching and comparing
by Your Mother (Archbishop) on Aug 01, 2008 at 15:19 UTC | |
|
Re: Automating RSS fetching and comparing
by Erez (Priest) on Aug 01, 2008 at 16:54 UTC | |
|
Re: Automating RSS fetching and comparing
by merlyn (Sage) on Aug 02, 2008 at 10:39 UTC | |
by Anonymous Monk on Aug 03, 2008 at 15:34 UTC |