casimo has asked for the wisdom of the Perl Monks concerning the following question:
use XML::Atom::Feed; use XML::Atom::Entry; my $xml_url = 'http://ax.itunes.apple.com/WebObjects/MZStoreServices.w +oa/ws/RSS/topsongs/sf=143441/limit=100/explicit=true/xml'; my $feed = XML::Atom::Feed->new($xml_url); $test = "im:name"; foreach my $entry ($feed->entries()) { my $title = $entry->title(); my $name = $entry->$test(); print "$title $name\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: XML::Atom with Feedburner
by ikegami (Patriarch) on Jun 20, 2009 at 23:43 UTC | |
by casimo (Sexton) on Jun 21, 2009 at 00:26 UTC |