NAME

XML::RSS::Feed::Factory - Automate XML::RSS::Feed generation

SYNOPSIS

use XML::RSS::Feed::Factory;
my @feeds = (
    {
        url   => "http://www.jbisbee.com/rdf/",
        name  => "jbisbee",
        delay => 10,
        debug => 1,
    },
    {
        url   => "http://lwn.net/headlines/rss",
        name  => "lwn",
        delay => 300,
        debug => 1,
    },
);
my @feed_objs = feed_factory(@feeds);

DESCRIPTION

Object factory to create XML::RSS::Feed factory.

AUTHOR

Jeff Bisbee CPAN ID: JBISBEE cpan@jbisbee.com http://search.cpan.org/author/JBISBEE/

COPYRIGHT

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

The full text of the license can be found in the LICENSE file included with this module.

SEE ALSO

POE::Component::RSSAggregator, XML::RSS::Feed