


TLD(3)         User Contributed Perl Documentation         TLD(3)


IIIINNNNSSSSTTTTAAAALLLLLLLLAAAATTTTIIIIOOOONNNN
        perl Makefile.PL
        make
        make test
        make install


NNNNAAAAMMMMEEEE
       Net::Domain::TLD - Gives ability to retrieve currently
       available tld names/descriptions and perform verification
       of given tld name

SSSSYYYYNNNNOOOOPPPPSSSSIIIISSSS
        use Net::Domain::TLD;
        my $domain_list = Net::Domain::TLD->new;
        my @ccTLDs = $domain_list->ccTLDs;


DDDDEEEESSSSCCCCRRRRIIIIPPPPTTTTIIIIOOOONNNN
       The purpose of this module is to provide user with current
       list of available top level domain names including new
       ICANN additions and ccTLDs

PPPPUUUUBBBBLLLLIIIICCCC IIIINNNNTTTTEEEERRRRFFFFAAAACCCCEEEESSSS
       new Creates new Net::Domain::TLD instance

           my $tld = Net::Domain::TLD->new;

       All
            my @list = $tld->All;

           returns list or hash ref of all TLDs
           names/descriptions

       TLDs_new
            my @list = $tld->TLDs_new;

           returns list or hash ref of new TLD names/descriptions

       gTLDs_open
            my $names = $tld->gTLDs_open;

           returns a list or hash ref of generic TLD
           names/descriptions available to general public

       gTLDs_restricted
            my @list = $tld->gTLDs_restricted;

           returns a list or hash ref of generic TLD
           names/descriptions restricted for assignment to
           specific users

       ccTLDs
            my $names = $tld->ccTLDs;



2001-11-02                 perl v5.6.0                          1





TLD(3)         User Contributed Perl Documentation         TLD(3)


           returns a list or hash ref of country code TLD
           names/descriptions

       exists
           determines if given tld exists, returns 1 if tld is
           valid and 0 if not

            $tld->exists(q{.info}) ? print q{ok} : print q{not ok};


AAAAUUUUTTTTHHHHOOOORRRR
       Alexander Pavlovic <alex.pavlovic@marketingtips.com>

CCCCOOOOPPPPYYYYRRRRIIIIGGGGHHHHTTTT
       Copyright (c) 2001 Internet Marketing Center . All rights
       reserved.  This package is free software; you can
       redistribute it and/or modify it under the same terms as
       Perl itself.







































2001-11-02                 perl v5.6.0                          2


