Net::Syndic8

Object-oriented Perl interface to access and change information within the Syndic8 site
Download

Net::Syndic8 Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Publisher Name:
  • Zahatski Aliaksandr
  • Publisher web site:
  • http://search.cpan.org/~zag/

Net::Syndic8 Tags


Net::Syndic8 Description

Object-oriented Perl interface to access and change information within the Syndic8 site Syndic8.com is the place to come to find RSS and Atom news feeds on a wide variety of topics. It has XML-RPC web service calls, which can be used to access and change information within the Syndic8 site.SYNOPSIS use Net::Syndic8; my $obj= new Net::Syndic8::; my $res=$obj->FindFeeds('unix'); ... foreach my $feed (@$res) { my $hash_ref=$feed->Data; print join "\t"=> $feed->ID, map { $hash_ref->{$_} } qw/siteurl sitename dataurl/; print "\n"; } ... while (my @bulk=splice(@$res,0,10)) { #splice by ten items $obj->FeedsColl()->Load(@bulk); #for bulk load (by one query to Syndic8) foreach my $feed (@bulk) { # it use syndic8.GetFeedInfo for array my $hash_ref=$feed->Data; print join "\t"=> $feed->ID, map { $hash_ref->{$_} } qw/siteurl sitename dataurl/; print "\n"; } } ... Requirements: · Perl


Net::Syndic8 Related Software