The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

WWW::RSSFeed - Perl extension for creating RSS feeds from website(s).

VERSION

Version 0.01

SYNOPSIS

    use strict;
    use WWW::RSSFeed;

    my %input = (
                 'url' => 'http://www.yahoo.com/', # required
                 'max_items' => 100, #optional
                 'min_description_word_limit'  => 50, #optional
                );

    my $feedObj = new WWW::RSSFeed(\%input);
    my $feedFile = $feedObj->getFeed();

DESCRIPTION

RSSFeed module can be used to create RSS feeds from website(s). This module is provided as it is, the user is responsible if this module is used to aggresively spider websites other than that of owner's. This activity may cause legal obligations, so the user is hereby made aware. Use this on your own website.

METHODS

    new() - The new subroutine.
    getFeed() - Returns feed as a scalar.
    __get_url_contents() - Returns global hash with title, link, description, links to other pages 
                       in same domain and serial number. Increments global item count and
                       adds links to global hash.

SEE ALSO

This module is used at http://www.feedify.me/ ; a not for profit service from author for webmasters.

AUTHOR

Kunal Jaiswal <nicks@cpan.org>

BUGS

Please report any bugs or feature requests to bug-www-rssfeed at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WWW-RSSFeed. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

    perldoc WWW::RSSFeed

You can also look for information at:

COPYRIGHT AND LICENSE

Copyright (C) 2012 by Kunal Jaiswal

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.12.4 or, at your option, any later version of Perl 5 you may have available.