|
NAMEWWW::Contact::Lycos - Get contacts from Lycos SYNOPSIS use WWW::Contact;
use Data::Dumper;
my $wc = WWW::Contact->new();
my @contacts = $wc->get_contacts('itsa@lycos.com', 'password');
my $errstr = $wc->errstr;
if ($errstr) {
die $errstr;
} else {
print Dumper(\@contacts);
}
DESCRIPTIONGet contacts from Lycos. Extends WWW::Contact::Base SEE ALSOWWW::Contact, WWW::Contact::Base, WWW::Mechanize AUTHORSachin Sebastian, "<sachinjsk at cpan.org>" COPYRIGHT & LICENSECopyright 2008 Sachin Sebastian, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|