This is the README file for Geography::Country::Utils, a collection of
modules dealing with country-specific information handling.

* Installation

Geography::Country::Utils uses the standard perl module install process:

    cpansign -v		# optional; see SIGNATURE for details
    perl Makefile.PL
    make                # or 'nmake' on Win32
    make test
    make install

* Sample usage

    use Geography::Country::Utils qw(Name iso2fipx);

    # To convert FIPS code to country name (e.g., IS => Israel)
    $name = Name($code);

    # To convert ISO to FIPS (e.g., IS => IC, IL => IS)
    # (might fail with several third world countries)
    $fips = iso2fipx($code);

* Copyright

Copyright 2001, 2002 by Ariel Brosh.

Copyright 2003, 2005 by Autrijus Tang <autrijus@autrijus.org>.

All rights reserved.  You can redistribute and/or modify
this bundle under the same terms as Perl itself.

See <http://www.perl.com/perl/misc/Artistic.html>.

# Local variables:
# c-indentation-style: bsd
# c-basic-offset: 4
# indent-tabs-mode: nil
# End:
# vim: expandtab shiftwidth=4: