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

NAME

WWW::Favicon - perl module to detect favicon url

SYNOPSIS

    use WWW::Favicon qw/detect_favicon_url/;
    my $favicon_url = detect_favicon_url('http://example.com/');
    
    # or OO way
    use WWW::Favicon;
    my $favicon = WWW::Favicon->new;
    my $favicon_url = $favicon->detect('http://example.com/');

DESCRIPTION

This module provide simple interface to detect favicon url of specified url.

METHODS

new

Create new WWW::Favicon object.

detect($url)

Detect favicon url of $url.

EXPORT FUNCTIONS

detect_favicon_url($url)

Same as $self->detect described above.

AUTHOR

Daisuke Murase <typester@cpan.org>

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.