Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: RE: Slashdot Headline Grabber for *nix

by maksl (Pilgrim)
on May 19, 2003 at 21:20 UTC ( [id://259297]=note: print w/replies, xml ) Need Help??


in reply to RE: Slashdot Headline Grabber for *nix
in thread Slashdot Headline Grabber for *nix

indeed it's much simpler to grab the rss rdf file with LWP::Simple && parse with XML::RSS :)
code example:
#!/usr/bin/perl -w use strict; use XML::RSS; use LWP::Simple; my $news = ( 'slashdot' => ['Slashdot', 'http://slashdot.org/slashdot.rdf'] # add some more rss news sites .. ); foreach my $news ( keys %news) { $rsspage=get $news{$news}[1]; print "$news{$news}[0]:\n"; $rss = new XML::RSS; $rss->parse($rsspage); foreach my $item (@{$rss->{'items'}}) { print "\t$item->{'title'}\n"; print "\t$item->{'link'}\n\n"; } }
just add the timer for your convinience :)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://259297]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (5)
As of 2024-04-18 20:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found