Metadata-Version: 2.0
Name: iso-3166-1
Version: 0.0.1
Summary: ISO 3361-1 Country code package for Python
Home-page: http://github.com/spoqa/iso-3166-1
Author: Kang Hyojun
Author-email: ed@spoqa.com
License: Public Domain
Keywords: internationalization i18n country iso3166
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: Public Domain
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python :: Implementation :: Stackless
Classifier: Topic :: Software Development :: Internationalization
Requires-Dist: setuptools
Provides-Extra: tests
Requires-Dist: pytest (>=2.7.0); extra == 'tests'
Requires-Dist: tox (>=2.1.1); extra == 'tests'

ISO 3166-1
~~~~~~~~~~~~

define codes for the names of countries as a enum_ it supports python2.7, 3.3
with enum34_ of course support python3.4 as well.

.. _enum: https://docs.python.org/3/library/enum.html
.. _enum34: https://pypi.python.org/pypi/enum34

.. code-block::

   >>> from iso3166 import Country
   >>> Country.kr
   <Country.kr>
   >>> Country.kr.alpha2
   KR
   >>> Country.kr.alpha3
   KOR
   >>> Country.kr.numeric
   410
   >>> Country.kr.english_short_name


Written by `Kang Hyojun`_.  Distributed under Public Domain.

.. _Kang Hyojun: http://github.com/admire93


