in reply to Re: is this is a Bug in Module?
in thread is this is a Bug in Module?

This seems to be the SYNOPSIS section...

But there is also another SYNOPSIS for the case where you're "USING XML::RSS::Parser VERSION 4.0":

my $fsp = XML::RSS::FOXSports->new; my $glxy_feed = $fsp->parse_mls_team('galaxy'); #-- output some values my $glxy_title = $glxy_feed->query('/channel/title'); print $glxy_title->text_content,"\n"; print $glxy_feed->item_count, "\n"; foreach my $i ( $glxy_feed->query('//item') ) { my $node = $i->query('title'); print ' ', $node->text_content, "\n"; }
Maybe XML::RSS::Parser version is the problem??
[]s, HTH, Massa

Replies are listed 'Best First'.
Re^3: is this is a Bug in Module?
by shekarkcb (Beadle) on Jul 21, 2008 at 06:17 UTC
    Hi, Thanx for the reply...

    then Can any body tell me how can i scrape FOX Sports?

    Thanx, Shekar