nop has asked for the wisdom of the Perl Monks concerning the following question:
Which on my machine generatesuse Net::ParseWhois; use Data::Dumper; my $w = Net::ParseWhois::Domain->new('yahoo.com'); die unless $w; die unless $w->ok; print "Domain: ", $w->domain, "\n"; print "Name: ", $w->name, "\n"; print "Tag: ", $w->tag, "\n"; print "Address:\n", map { " $_\n" } $w->address; print "Country: ", $w->country, "\n";
What's going on here? Is there a way to point the module at a more comprehensive whois server? ThanksDomain: n/a Name: n/a Tag: n/a Address: n/a Country: n/a
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: NetParseWhois
by Limbic~Region (Chancellor) on Apr 08, 2003 at 19:40 UTC |