{ "info": { "author": "TUNE Inc.", "author_email": "jefft@tune.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.0", "Programming Language :: Python :: 3.1", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: PyPy" ], "description": ".. -*- mode: rst -*-\n\npycountry-convert\n-----------------\n\nExtension of Python package `pycountry `_ providing conversion functions.\n\n\nBadges\n------\n\n.. start-badges\n\n.. list-table::\n :stub-columns: 1\n\n * - docs\n - |docs| |license|\n * - info\n - |hits| |contributors|\n * - tests\n - |travis| |coveralls|\n * - package\n - |version| |supported-versions|\n * - other\n - |requires|\n\n\n.. |docs| image:: https://readthedocs.org/projects/pycountry-convert/badge/?style=flat\n :alt: Documentation Status\n :target: http://pycountry-convert.readthedocs.io\n\n.. |hits| image:: http://hits.dwyl.io/TuneLab/pycountry-convert.svg\n :alt: Hits\n :target: http://hits.dwyl.io/TuneLab/pycountry-convert\n\n.. |contributors| image:: https://img.shields.io/github/contributors/TuneLab/pycountry-convert.svg\n :alt: Contributors\n :target: https://github.com/TuneLab/pycountry-convert/graphs/contributors\n\n.. |license| image:: https://img.shields.io/badge/License-MIT-yellow.svg\n :alt: License Status\n :target: https://opensource.org/licenses/MIT\n\n.. |travis| image:: https://travis-ci.org/TuneLab/pycountry-convert.svg?branch=master\n :alt: Travis-CI Build Status\n :target: https://travis-ci.org/TuneLab/pycountry-convert\n\n.. |coveralls| image:: https://coveralls.io/repos/TuneLab/pycountry-convert/badge.svg?branch=master&service=github\n :alt: Code Coverage Status\n :target: https://coveralls.io/r/TuneLab/pycountry-convert\n\n.. |version| image:: https://img.shields.io/pypi/v/pycountry-convert.svg?style=flat\n :alt: PyPI Package latest release\n :target: https://pypi.python.org/pypi/pycountry-convert\n\n.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/pycountry-convert.svg?style=flat\n :alt: Supported versions\n :target: https://pypi.python.org/pypi/pycountry-convert\n\n.. |requires| image:: https://requires.io/github/TuneLab/pycountry-convert/requirements.svg?branch=master\n :alt: Requirements Status\n :target: https://requires.io/github/TuneLab/pycountry-convert/requirements/?branch=master\n\n.. end-badges\n\n\nInstall\n-------\n\n.. code-block:: bash\n\n pip install pycountry-convert\n\n\nArchitecture\n------------\n\nUsing country data derived from wikipedia, this package provides conversion\nfunctions between ISO country names, country-codes, and continent names.\n\n\nFunctions\n---------\n\n- ``map_countries(cn_name_format=\"default\", cn_extras={})``: Return a dict of countries with key as country name (standard and official) with ISO 3166-1 values Alpha 2, Alpha 3, and Numeric. This mapping will include countries defined within `pycountry`, Wikipedia, and whatever extra countries provided by parameter `cn_extras`. Parameter `cn_name_format` will format the country name as request to either be using the default layout `\"default\"`, lowercase `\"lower\"`, or uppercase `\"upper\"`.\n\n- ``country_alpha2_to_continent_code()``: Convert `country code ISO 3166-1 alpha-2 `_ to continent name.\n\n- ``country_alpha2_to_country_name(cn_name_format=\"default\")``: Convert `country code ISO 3166-1 alpha-2 `_ to country name.\n\n- ``country_name_to_country_alpha2(cn_name, cn_name_format=\"default\")``: Convert country name to `country code ISO 3166-1 alpha-2 `_ .\n\n- ``country_alpha3_to_country_name(cn_name_format=\"default\")``: Convert `country code ISO 3166-1 alpha-3 `_ to country name.\n\n- ``country_name_to_country_alpha3(cn_name, cn_name_format=\"default\")``: Convert country name to `country code ISO 3166-1 alpha-3 `_ .\n\n- ``country_alpha3_to_country_alpha2()``: Convert `country code ISO 3166-1 alpha-3 `_ to `country code ISO 3166-1 alpha-2 `_ .\n\n\nParameter: cn_name_format\n---------------------------\n\n- ``COUNTRY_NAME_FORMAT_DEFAULT \"default\"``: Country names as provide by ``pycountry``.\n- ``COUNTRY_NAME_FORMAT_LOWER \"lower\"``: All lowercase country names.\n- ``COUNTRY_NAME_FORMAT_UPPER \"upper\"``: All uppercase country names.\n\n\nParameter: cn_extras\n---------------------------\n\nDictionary of `{ cn_name: cn_alpha2_code, ... }`\n\nDependencies\n------------\n\n``pycountry-convert`` module is built upon Python 3 and has dependencies upon\nseveral Python modules available within `Python Package Index PyPI `_.\n\n- `pycountry `_\n- `pprintpp `_\n\n\n.. :changelog:\n\nRelease History\n===============\n\n0.7.2 (2018-02-16)\n------------------\n- Python 2.7 supported\n- Travis CI testing both Python 2.7 and 3.6.\n\n0.7.1 (2018-02-15)\n------------------\n- migrate to github/TuneLab.\n- Python 2.7 support\n- lru_cache()\n\n0.6.7 (2018-02-15)\n------------------\n- pycountry: added common_name (vgavro)\n\n0.6.6 (2018-01-25)\n------------------\n- migrate to github/tuneinc.\n- LICENSE: MIT\n\n0.6.2 (2017-12-09)\n------------------\n- readthedocs.org\n\n0.5.4 (2017-12-07)\n------------------\n- LICENSE: LGPL 3.0\n\n0.5.0 (2017-11-30)\n------------------\n- README.rst\n- Hits and Contributors\n\n0.3.0 (2017-11-27)\n------------------\n- README.rst\n- Travis CI\n\n0.1.9 (2017-03-12)\n------------------\n- Makefile and README.rst\n\n0.1.8 (2016-11-19)\n------------------\n- Makefile and README.rst\n\n0.1.0 (2016-11-17)\n------------------\n- Initial Code\n- Code pulled from TuneLab/tune-mv-integration-python\n- Country name to Country Alpha-2 Code cleanup\n\n0.0.1 (2016-11-17)\n------------------\n- Initial commit\n", "description_content_type": null, "docs_url": null, "download_url": "https://github.com/TuneLab/pycountry-convert/archive/v0.7.2.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/TuneLab/pycountry-convert", "keywords": "pycountry conversion tune", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "pycountry-convert", "package_url": "https://pypi.org/project/pycountry-convert/", "platform": "", "project_url": "https://pypi.org/project/pycountry-convert/", "project_urls": { "Download": "https://github.com/TuneLab/pycountry-convert/archive/v0.7.2.tar.gz", "Homepage": "https://github.com/TuneLab/pycountry-convert" }, "release_url": "https://pypi.org/project/pycountry-convert/0.7.2/", "requires_dist": null, "requires_python": "", "summary": "Extension of Python package pycountry providing conversion functions.", "version": "0.7.2" }, "last_serial": 3852711, "releases": { "0.5.10": [ { "comment_text": "", "digests": { "md5": "aee111e9dd7264cba425368e04250323", "sha256": "23193aaebcd9e0c4b2d3800796eb2da4ddc87319eb5922cecfcd5bdfaeef1107" }, "downloads": -1, "filename": "pycountry_convert-0.5.10-py3.6.egg", "has_sig": false, "md5_digest": "aee111e9dd7264cba425368e04250323", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 20368, "upload_time": "2017-12-09T16:35:29", "url": "https://files.pythonhosted.org/packages/ac/6a/969d8835d65c4a192255b585f95edd631220da90871fbdc3c2b94ba0a1fd/pycountry_convert-0.5.10-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "9c52910edd2f020cc35069a0743679d9", "sha256": "e0dd3012bbbd946d6aabc28846011e20b81e388bee24868dcf5892d7d4db7b2c" }, "downloads": -1, "filename": "pycountry_convert-0.5.10-py3-none-any.whl", "has_sig": false, "md5_digest": "9c52910edd2f020cc35069a0743679d9", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13448, "upload_time": "2017-12-09T16:35:26", "url": "https://files.pythonhosted.org/packages/15/ae/55b70d532487a0e1d6bbccf86acdb92cc98e613ae15c72777ee5e8ee3d0d/pycountry_convert-0.5.10-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9c261b9b9f1f2f21f25845b8b7e50a0b", "sha256": "39ec5129822808df40c559e737880ea5b472bf74004cea498a50e0913250570c" }, "downloads": -1, "filename": "pycountry-convert-0.5.10.tar.gz", "has_sig": false, "md5_digest": "9c261b9b9f1f2f21f25845b8b7e50a0b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13929, "upload_time": "2017-12-09T16:35:33", "url": "https://files.pythonhosted.org/packages/e6/13/491d69142f883ef6bd6462d6b24b4ddb47b3501ea0d7fc81cdf618dade82/pycountry-convert-0.5.10.tar.gz" } ], "0.5.11": [ { "comment_text": "", "digests": { "md5": "34892c16b2d43ed106f8056f7d33aa7a", "sha256": "83b51c36df99d1ea842adfcb4e78556f7540e3bfb1c6b1b613e4a612ca3eb0c2" }, "downloads": -1, "filename": "pycountry_convert-0.5.11-py3.6.egg", "has_sig": false, "md5_digest": "34892c16b2d43ed106f8056f7d33aa7a", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 20336, "upload_time": "2017-12-09T16:36:06", "url": "https://files.pythonhosted.org/packages/f3/3f/a557c4d04faa42193af64f89ce73ec35b7cac6299363cafe19b69ea7bcc4/pycountry_convert-0.5.11-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "d6bacffb0a584ed24ee8490e0fc05443", "sha256": "7d93915c18b17a1597038422384e32c3312d88e101d74eaacf8af8ec781140b1" }, "downloads": -1, "filename": "pycountry_convert-0.5.11-py3-none-any.whl", "has_sig": false, "md5_digest": "d6bacffb0a584ed24ee8490e0fc05443", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13390, "upload_time": "2017-12-09T16:36:04", "url": "https://files.pythonhosted.org/packages/91/01/80781130551c653533d5ca979369d57e1c2468171cfa3fdd2dc9dd1aa599/pycountry_convert-0.5.11-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "305c408fe65bc7caa31fb742880c693f", "sha256": "e554e790cdd36411a28747a98e408792bbebd2301cd711a33b2e30c43f8b607d" }, "downloads": -1, "filename": "pycountry-convert-0.5.11.tar.gz", "has_sig": false, "md5_digest": "305c408fe65bc7caa31fb742880c693f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13849, "upload_time": "2017-12-09T16:36:09", "url": "https://files.pythonhosted.org/packages/64/f2/f95e537fff752433fb47e430f44e608298b80f590521aacd3676504fdb9d/pycountry-convert-0.5.11.tar.gz" } ], "0.5.7": [ { "comment_text": "", "digests": { "md5": "ec380ae845c71e7f4d34c026198d2171", "sha256": "a5a13a17f6f037538f98fe2de6ccc717b19519eda1548cd6292fa7fca492c5b2" }, "downloads": -1, "filename": "pycountry_convert-0.5.7-py3.6.egg", "has_sig": false, "md5_digest": "ec380ae845c71e7f4d34c026198d2171", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 20331, "upload_time": "2017-12-07T23:49:35", "url": "https://files.pythonhosted.org/packages/2c/72/b876ac0fb1c1a7acf2ccfee0afe55f3c4185ce8c62adbf58304030688d2b/pycountry_convert-0.5.7-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "0c4737337f2a0f57873cc10549a47f97", "sha256": "0c2513f175fa9b8d9591008e35883828c7578804f15c715b1c77c4a4f684649a" }, "downloads": -1, "filename": "pycountry_convert-0.5.7-py3-none-any.whl", "has_sig": false, "md5_digest": "0c4737337f2a0f57873cc10549a47f97", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13378, "upload_time": "2017-12-07T23:49:31", "url": "https://files.pythonhosted.org/packages/7c/53/972522a877dfdf8e218494c482f435109938846beae49d36220b092c4ac0/pycountry_convert-0.5.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2e318b0c8f590d77fdfb084aecd33f30", "sha256": "6e3291a83761904672e3dbf9a96c4bbc5b06c12a242c9cb027e1b4606c670dff" }, "downloads": -1, "filename": "pycountry-convert-0.5.7.tar.gz", "has_sig": false, "md5_digest": "2e318b0c8f590d77fdfb084aecd33f30", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13847, "upload_time": "2017-12-07T23:49:38", "url": "https://files.pythonhosted.org/packages/e0/a4/0321919e29259e7bd508b95e9cc1a704760704c562c1d8d3f24153b92298/pycountry-convert-0.5.7.tar.gz" } ], "0.5.8": [ { "comment_text": "", "digests": { "md5": "7e80c5a9af65e5334616851631eba709", "sha256": "a285634562b127c7bce006dc8531e2f25deaa387c0a2d72a8a97125186842b58" }, "downloads": -1, "filename": "pycountry_convert-0.5.8-py3.6.egg", "has_sig": false, "md5_digest": "7e80c5a9af65e5334616851631eba709", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 20374, "upload_time": "2017-12-09T16:33:17", "url": "https://files.pythonhosted.org/packages/d7/18/cec5ebf3bc3b9beeb67b42f3d4cf4b615ea768bea5cb5479e67315f1c7f3/pycountry_convert-0.5.8-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "8fad1d2fa5221d82ed8e60d1142f4461", "sha256": "25ae974ffc86773bfabb0133b6b27a9c760b19d7c2bba3ae8dc3344532780bb1" }, "downloads": -1, "filename": "pycountry_convert-0.5.8-py3-none-any.whl", "has_sig": false, "md5_digest": "8fad1d2fa5221d82ed8e60d1142f4461", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13461, "upload_time": "2017-12-09T16:33:13", "url": "https://files.pythonhosted.org/packages/c1/d5/15fa6ae03a994042f641f1f428e03a1e25b42c651dcc0d895310bd4fec58/pycountry_convert-0.5.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f5adea507eea06026c0a1d9e11e02d0d", "sha256": "92b3df77f2d41e99bf151856e566590aa242b69b8dad16cebab92a87a18646c4" }, "downloads": -1, "filename": "pycountry-convert-0.5.8.tar.gz", "has_sig": false, "md5_digest": "f5adea507eea06026c0a1d9e11e02d0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13950, "upload_time": "2017-12-09T16:33:20", "url": "https://files.pythonhosted.org/packages/08/3c/4ae33c0a10d20edb05c5c875727fd70f7b7be5bbd635b70324a81d89e8eb/pycountry-convert-0.5.8.tar.gz" } ], "0.5.9": [ { "comment_text": "", "digests": { "md5": "18ccbbdd01ca4d6a9aaa156b2d9fb52c", "sha256": "3fe07f7ae0f20b797c07eb79bcce21a37f2b2d7eb84b812565adfde1289e2aa0" }, "downloads": -1, "filename": "pycountry_convert-0.5.9-py3.6.egg", "has_sig": false, "md5_digest": "18ccbbdd01ca4d6a9aaa156b2d9fb52c", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 20369, "upload_time": "2017-12-09T16:34:36", "url": "https://files.pythonhosted.org/packages/eb/83/075f235a90a465d9678fd754d98212b3050fea1a4efdec54ac1044a94f09/pycountry_convert-0.5.9-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "aea4d641683f603c2e3a6d8cdc7f8172", "sha256": "577fe3f8fc5013fd44fe13ea75da7d660c6c78c25298b1fb3e7ccb659951268a" }, "downloads": -1, "filename": "pycountry_convert-0.5.9-py3-none-any.whl", "has_sig": false, "md5_digest": "aea4d641683f603c2e3a6d8cdc7f8172", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13444, "upload_time": "2017-12-09T16:34:34", "url": "https://files.pythonhosted.org/packages/c1/7c/e66e07f5564de35ba221f124f4a971c999eeca1733495f26f4d2810d7895/pycountry_convert-0.5.9-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9cbc674465fb70accc4b4aa6348d41ab", "sha256": "48948a49d671d7a560caa7edf28a5b4e027d14ca25a531a42d9cb0a9f6178877" }, "downloads": -1, "filename": "pycountry-convert-0.5.9.tar.gz", "has_sig": false, "md5_digest": "9cbc674465fb70accc4b4aa6348d41ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13920, "upload_time": "2017-12-09T16:34:39", "url": "https://files.pythonhosted.org/packages/29/a3/08d3e2e47caacc1be3dfc7de567affcb6526c8159eba78217b6f89c56bb1/pycountry-convert-0.5.9.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "b29c11fbc73d3cca601701366288aee1", "sha256": "9aae4399246700c74f6f9ba11f88e3d09f4d7c67c9517713109c341a49b66bb1" }, "downloads": -1, "filename": "pycountry_convert-0.6.0-py3.6.egg", "has_sig": false, "md5_digest": "b29c11fbc73d3cca601701366288aee1", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 20350, "upload_time": "2017-12-09T16:43:41", "url": "https://files.pythonhosted.org/packages/79/80/21720d8fbcb5c019e547d6c2cf0445f641e8fb235057d88f5c48f130cfb7/pycountry_convert-0.6.0-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "f43543df84251b8bdd75b6af733c353b", "sha256": "9fa74fdfe310988ad934f3bc3a28d7dfaabcc37904639e365d0336c350c42a35" }, "downloads": -1, "filename": "pycountry_convert-0.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f43543df84251b8bdd75b6af733c353b", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13406, "upload_time": "2017-12-09T16:43:38", "url": "https://files.pythonhosted.org/packages/ea/57/ded10fcd44ecdb67d9422d06986ab15a0301ad134c5f5f3288cf0ce3ce84/pycountry_convert-0.6.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1c91ad8fae7069ddf2066d3cee650aca", "sha256": "5a7de92854faa427e84d266306152e5f90087d0a8012be9499f33f7b4bb0cdec" }, "downloads": -1, "filename": "pycountry-convert-0.6.0.tar.gz", "has_sig": false, "md5_digest": "1c91ad8fae7069ddf2066d3cee650aca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13890, "upload_time": "2017-12-09T16:43:44", "url": "https://files.pythonhosted.org/packages/2e/f6/d3d5ff8ac19e66dbfd6c2778ea2fe312d9636c2bdd723c1d081c1dc3adb5/pycountry-convert-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "d971b33753fb23bab8d6543076c8319b", "sha256": "c36dd8abfc8258b5ca6e503fa98c9b46071a866f55908b4fd4e00e65afcee1fd" }, "downloads": -1, "filename": "pycountry_convert-0.6.1-py3.6.egg", "has_sig": false, "md5_digest": "d971b33753fb23bab8d6543076c8319b", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 20322, "upload_time": "2017-12-09T17:06:10", "url": "https://files.pythonhosted.org/packages/b9/21/d92239a973f1c5b3fc0d1cab2388d45cfdc8652f9171e84089379851e20d/pycountry_convert-0.6.1-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "df90b7216dbb8c22692c89390787fcb2", "sha256": "9526f1b429f2d4917d5f707fb8201ef207294c9e3f34d618488b8326740e41d0" }, "downloads": -1, "filename": "pycountry_convert-0.6.1-py3-none-any.whl", "has_sig": false, "md5_digest": "df90b7216dbb8c22692c89390787fcb2", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13391, "upload_time": "2017-12-09T17:06:04", "url": "https://files.pythonhosted.org/packages/7d/d0/a3e06858c9b59040da6a6823d881e992189f4cde804b6d5c8ded5df9e4d8/pycountry_convert-0.6.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "38bf5e449a5da7a73f911db70779d95a", "sha256": "cb3ae0886ea20bf7683315efb43e78b4a0cc262560b93514aca35ad04a624086" }, "downloads": -1, "filename": "pycountry-convert-0.6.1.tar.gz", "has_sig": false, "md5_digest": "38bf5e449a5da7a73f911db70779d95a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13879, "upload_time": "2017-12-09T17:06:13", "url": "https://files.pythonhosted.org/packages/a0/12/94523c13f54d8b6d739dce6f49373ff8400e54a5ab31b4b3283eb898a07a/pycountry-convert-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "4a91310681e61271a59a2d674313b6ac", "sha256": "417d3f0f3f3f1ecc59e2b4053ab9ae61eeefd6d522f202b10d62194fc2dae258" }, "downloads": -1, "filename": "pycountry_convert-0.6.2-py3.6.egg", "has_sig": false, "md5_digest": "4a91310681e61271a59a2d674313b6ac", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 20336, "upload_time": "2017-12-09T17:22:16", "url": "https://files.pythonhosted.org/packages/3c/bb/af4add9ec451e044439e63e6743de06a325f340ade49467faef1faccaa0e/pycountry_convert-0.6.2-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "c8f9ccd9be0d06378123396ee4ce44a0", "sha256": "bcae2b442f69c03b4c65637d3b73615a93a038847007a159c88e92512d416f4d" }, "downloads": -1, "filename": "pycountry_convert-0.6.2-py3-none-any.whl", "has_sig": false, "md5_digest": "c8f9ccd9be0d06378123396ee4ce44a0", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13410, "upload_time": "2017-12-09T17:22:13", "url": "https://files.pythonhosted.org/packages/06/b9/5857b934acf367b96e6b41a70353942171cbbccb0b11e12beeea2bb44b47/pycountry_convert-0.6.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "104a6744701e3edc9b22d88f15117026", "sha256": "bbf286b33a291f743895786513c10bc6ca78dfc888f7e043dd13c6871f2e993c" }, "downloads": -1, "filename": "pycountry-convert-0.6.2.tar.gz", "has_sig": false, "md5_digest": "104a6744701e3edc9b22d88f15117026", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13921, "upload_time": "2017-12-09T17:22:19", "url": "https://files.pythonhosted.org/packages/35/3d/3979e01043060c0456ca93bda2e181951ea484680ff226fe83c56750f082/pycountry-convert-0.6.2.tar.gz" } ], "0.6.3": [ { "comment_text": "", "digests": { "md5": "025fb862dbfddf0c4de83ca463657169", "sha256": "fafd548f7f1650b93242dc7847560a954839456b95a73084842e087d7a9503ac" }, "downloads": -1, "filename": "pycountry_convert-0.6.3-py3.6.egg", "has_sig": false, "md5_digest": "025fb862dbfddf0c4de83ca463657169", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 20328, "upload_time": "2017-12-09T17:23:33", "url": "https://files.pythonhosted.org/packages/d1/56/6cedf8f57d7bcdd24db834690a44afc188fb9dd6472fc7d14f0bb4596f1f/pycountry_convert-0.6.3-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "f5d0425e39b95854f96e6b0f79bbac98", "sha256": "e05d4b3e05d43ed028f915a8247cfcde66ab41be84072ea45ac7e67048324773" }, "downloads": -1, "filename": "pycountry_convert-0.6.3-py3-none-any.whl", "has_sig": false, "md5_digest": "f5d0425e39b95854f96e6b0f79bbac98", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13401, "upload_time": "2017-12-09T17:23:29", "url": "https://files.pythonhosted.org/packages/26/99/a4b5b1a3adba3c1f80fc52d28765bce003926c0cad5bbb24acdf1edd9ecf/pycountry_convert-0.6.3-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4a43bcd3c6710e916575ea529adf284f", "sha256": "d826d272f0dabebf9896af106667bf938682fbf065e68144af5180baa6ec79f1" }, "downloads": -1, "filename": "pycountry-convert-0.6.3.tar.gz", "has_sig": false, "md5_digest": "4a43bcd3c6710e916575ea529adf284f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13915, "upload_time": "2017-12-09T17:23:35", "url": "https://files.pythonhosted.org/packages/60/f0/473390360a578b6933a5d496fea8ec3ea1bb5fdba84e68ec1c2f5811c059/pycountry-convert-0.6.3.tar.gz" } ], "0.6.4": [ { "comment_text": "", "digests": { "md5": "f3a7771707c88cb916eb94c8e8a29579", "sha256": "0e1ed4afaab32347ecf5a73ff4b34f0d9f7bfd87e96d7507eea700d6c7177abe" }, "downloads": -1, "filename": "pycountry_convert-0.6.4-py3.6.egg", "has_sig": false, "md5_digest": "f3a7771707c88cb916eb94c8e8a29579", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 20348, "upload_time": "2017-12-09T17:46:39", "url": "https://files.pythonhosted.org/packages/e5/41/9a9cb17c7e37865067cc1c3f7125ca8f3d0ad6afcb4f937c1972db41cfb5/pycountry_convert-0.6.4-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "8f25f5067f950fe81447b5c19da1a496", "sha256": "6ff816b0bbc63ca4fdd7bd482e7728f14deb449ec9881944e99a8cacf422c99d" }, "downloads": -1, "filename": "pycountry_convert-0.6.4-py3-none-any.whl", "has_sig": false, "md5_digest": "8f25f5067f950fe81447b5c19da1a496", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13434, "upload_time": "2017-12-09T17:46:36", "url": "https://files.pythonhosted.org/packages/8a/dd/141fe0e847cd8d5e903dae0ab5f47e9fd93c80c9f32a591e9f4cc37a83e9/pycountry_convert-0.6.4-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0818d30940d1a9f209c93b89978903d5", "sha256": "550e981be9c29b35dca57166cd0c502ed66eb656ddd4d486fa3079e3b554a0f0" }, "downloads": -1, "filename": "pycountry-convert-0.6.4.tar.gz", "has_sig": false, "md5_digest": "0818d30940d1a9f209c93b89978903d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13954, "upload_time": "2017-12-09T17:46:42", "url": "https://files.pythonhosted.org/packages/4f/2c/f9c1a6d78b1d8e1c8d019bd755f77761fad7df690d3195f9586295fae878/pycountry-convert-0.6.4.tar.gz" } ], "0.6.5": [ { "comment_text": "", "digests": { "md5": "4b8b4391c7bc4261d316e67bc1ad3261", "sha256": "f48f030babfb5828364decfc6aab84fb4bd646e926aa50bb3631443d15350ada" }, "downloads": -1, "filename": "pycountry_convert-0.6.5-py3.6.egg", "has_sig": false, "md5_digest": "4b8b4391c7bc4261d316e67bc1ad3261", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 20336, "upload_time": "2017-12-10T15:42:04", "url": "https://files.pythonhosted.org/packages/2d/ea/25636aa545f02903b7f770ce9c310f71895831fa66a240f47fd257d32bd8/pycountry_convert-0.6.5-py3.6.egg" }, { "comment_text": "", "digests": { "md5": "f02178ec21170ca7b593fadf2ca6f28e", "sha256": "290c8516c519c65f131b32c43c8a177cda7e4c71007fef185ddd20a693f40891" }, "downloads": -1, "filename": "pycountry_convert-0.6.5-py3-none-any.whl", "has_sig": false, "md5_digest": "f02178ec21170ca7b593fadf2ca6f28e", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13429, "upload_time": "2017-12-10T15:41:59", "url": "https://files.pythonhosted.org/packages/fe/2e/526e2e82561de4e70e2b684843c22f60adf112ab2cdbf7aba18a77ecd39e/pycountry_convert-0.6.5-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d3a294a43e5743a36f2acdbff5f92b83", "sha256": "b1281e33fc5a70bb0aeeee2c3a418ef9300bd79f8ab97be70940959790b0fb9a" }, "downloads": -1, "filename": "pycountry-convert-0.6.5.tar.gz", "has_sig": false, "md5_digest": "d3a294a43e5743a36f2acdbff5f92b83", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13930, "upload_time": "2017-12-10T15:42:08", "url": "https://files.pythonhosted.org/packages/2a/a3/4cbef5e975c9e3a409ab8963c793e3de5d882012fb2aa4fbe25c52c6621b/pycountry-convert-0.6.5.tar.gz" } ], "0.6.6": [ { "comment_text": "", "digests": { "md5": "104bcefb47db4a1472d10a7b2432316e", "sha256": "c1d3c0edc6047e3dce09a24f46fc05a089c0a2dc2d89cccde9c29cc2a4726988" }, "downloads": -1, "filename": "pycountry_convert-0.6.6-py3-none-any.whl", "has_sig": false, "md5_digest": "104bcefb47db4a1472d10a7b2432316e", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13567, "upload_time": "2018-01-28T18:31:10", "url": "https://files.pythonhosted.org/packages/80/a8/01fd68306b041258feb702cc6ccfd56268e0266eff9b354d3f9d68c42507/pycountry_convert-0.6.6-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7208f7c0925c95036c2fed7813ff6ffd", "sha256": "f083a0b7e2e633517fa7c7e4779945ef09749fd0c7af12a55ed5049806782cce" }, "downloads": -1, "filename": "pycountry-convert-0.6.6.tar.gz", "has_sig": false, "md5_digest": "7208f7c0925c95036c2fed7813ff6ffd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11971, "upload_time": "2018-01-28T18:31:09", "url": "https://files.pythonhosted.org/packages/3c/4b/a77923410dee75a8f75d49775b54460f3e4c61fe7f4ce664125a8c7f4cc7/pycountry-convert-0.6.6.tar.gz" } ], "0.6.7": [ { "comment_text": "", "digests": { "md5": "9a012c0a2637fe69f6b257c487b4bb59", "sha256": "e941ee277dc68fdd26621af876194fc8dbd7158e8a1fea810fe639aef48d1dd8" }, "downloads": -1, "filename": "pycountry_convert-0.6.7-py3-none-any.whl", "has_sig": false, "md5_digest": "9a012c0a2637fe69f6b257c487b4bb59", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13640, "upload_time": "2018-02-15T20:36:58", "url": "https://files.pythonhosted.org/packages/ed/a6/5da8c3eb1c880f647203dea57f0c0e907c025ab8b4720fc4cff2aa46c85e/pycountry_convert-0.6.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5f816fdf653d526823093fd7ab0edf17", "sha256": "0a6e8880eea0fa6ef5c08132aa40acc21e2d22087f5260bd42da04f2429e7e4c" }, "downloads": -1, "filename": "pycountry-convert-0.6.7.tar.gz", "has_sig": false, "md5_digest": "5f816fdf653d526823093fd7ab0edf17", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12076, "upload_time": "2018-02-15T20:36:56", "url": "https://files.pythonhosted.org/packages/63/3c/0ff02966e74c7596cd139263d212f294954655181a68e130ccf701c49182/pycountry-convert-0.6.7.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "e0ca8dedaa776fc9ef3b8fa641a52d0b", "sha256": "d177bb915e6b694cfdb80dc31cb653144a8b8e9d4dff07ffa0d480d2bb54ccd3" }, "downloads": -1, "filename": "pycountry_convert-0.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e0ca8dedaa776fc9ef3b8fa641a52d0b", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13772, "upload_time": "2018-02-16T00:15:42", "url": "https://files.pythonhosted.org/packages/02/e5/385e6307e4a79df9adae1b6de5f9e970a4d5315b9554665d12743daf3121/pycountry_convert-0.7.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ce59771fad4b1e26dabc0ef2cfc2e7da", "sha256": "294959117a93364929ab592620a068a64017313acb954153f9cbc1cc38d5b4cc" }, "downloads": -1, "filename": "pycountry-convert-0.7.0.tar.gz", "has_sig": false, "md5_digest": "ce59771fad4b1e26dabc0ef2cfc2e7da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12194, "upload_time": "2018-02-16T00:15:39", "url": "https://files.pythonhosted.org/packages/8c/77/9e2a485d0d467bcc8bbfa67e5006b90b2c83d83ade826ec66062ee6ee8eb/pycountry-convert-0.7.0.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "c1de97e7b2e4f44c084aaa3ef30f556d", "sha256": "5e33883a88b3cb752d332ca2358ac6c4de4defc86a2b93b713b36338e914952e" }, "downloads": -1, "filename": "pycountry_convert-0.7.2-py3-none-any.whl", "has_sig": false, "md5_digest": "c1de97e7b2e4f44c084aaa3ef30f556d", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13836, "upload_time": "2018-02-18T17:36:09", "url": "https://files.pythonhosted.org/packages/9b/e7/26c14899a43c34e04a58e3772007afe79dbd64fac15d2fbaeedff24082f2/pycountry_convert-0.7.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f428955fe17064b4b81c6c25a5f8074b", "sha256": "095d310f746bf2a5ef713b3a82eea28a27262286223765b1e7be8a5c4fa7e9b9" }, "downloads": -1, "filename": "pycountry-convert-0.7.2.tar.gz", "has_sig": false, "md5_digest": "f428955fe17064b4b81c6c25a5f8074b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12376, "upload_time": "2018-02-18T17:36:06", "url": "https://files.pythonhosted.org/packages/be/85/a5bcf01c5e8de1b611990c723e2b88bdbfb93375e18d1539f6fa8f0f9952/pycountry-convert-0.7.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c1de97e7b2e4f44c084aaa3ef30f556d", "sha256": "5e33883a88b3cb752d332ca2358ac6c4de4defc86a2b93b713b36338e914952e" }, "downloads": -1, "filename": "pycountry_convert-0.7.2-py3-none-any.whl", "has_sig": false, "md5_digest": "c1de97e7b2e4f44c084aaa3ef30f556d", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 13836, "upload_time": "2018-02-18T17:36:09", "url": "https://files.pythonhosted.org/packages/9b/e7/26c14899a43c34e04a58e3772007afe79dbd64fac15d2fbaeedff24082f2/pycountry_convert-0.7.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f428955fe17064b4b81c6c25a5f8074b", "sha256": "095d310f746bf2a5ef713b3a82eea28a27262286223765b1e7be8a5c4fa7e9b9" }, "downloads": -1, "filename": "pycountry-convert-0.7.2.tar.gz", "has_sig": false, "md5_digest": "f428955fe17064b4b81c6c25a5f8074b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12376, "upload_time": "2018-02-18T17:36:06", "url": "https://files.pythonhosted.org/packages/be/85/a5bcf01c5e8de1b611990c723e2b88bdbfb93375e18d1539f6fa8f0f9952/pycountry-convert-0.7.2.tar.gz" } ] }