Metadata-Version: 1.0
Name: iso3166
Version: 0.1
Summary: Self-contained ISO 3166-1 country definitions.
Home-page: http://github.com/deactivated/python-iso3166
Author: Mike Spindel
Author-email: deactivated@gmail.com
License: MIT
Description: ==========================================================
        python-iso3166 - Standalone ISO 3166-1 country definitions
        ==========================================================
        
        :Authors:
                Mike Spindel
        :Version: 0.1
        
        
        ISO 3166-1 defines two-letter, three-letter, and three-digit country
        codes.  Python-iso3166 is a self-contained module that converts
        between these codes and the corresponding country name.
        
        
        Installation
        ============
        
        ::
        
          $ pip install python-iso3166
        
        
        Usage
        =====
        
        ::
        
          >>> from iso3166 import countries
          >>>
          >>> countries.get('us')
          Country(name=u'United States', alpha2='US', alpha3='USA', numeric='840')
          >>> countries.get('ala')
          Country(name=u'\xc5land Islands', alpha2='AX', alpha3='ALA', numeric='248')
          >>> countries.get(8)
          Country(name=u'Albania', alpha2='AL', alpha3='ALB', numeric='008')
        
Keywords: iso 3166-1 country codes
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
