{ "info": { "author": "Chris Beaven", "author_email": "smileychris@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "================\nDjango Countries\n================\n\n.. image:: https://badge.fury.io/py/django-countries.svg\n :alt: PyPI version\n :target: https://badge.fury.io/py/django-countries\n\n.. image:: https://travis-ci.org/SmileyChris/django-countries.svg?branch=master\n :alt: Build status\n :target: http://travis-ci.org/SmileyChris/django-countries\n\n.. image:: https://codecov.io/gh/SmileyChris/django-countries/branch/master/graph/badge.svg\n :alt: Coverage status\n :target: https://codecov.io/gh/SmileyChris/django-countries\n\n\nA Django application that provides country choices for use with forms, flag\nicons static files, and a country field for models.\n\n.. contents::\n :local:\n :backlinks: none\n\n\nInstallation\n============\n\n1. ``pip install django-countries``\n2. Add ``django_countries`` to ``INSTALLED_APPS``\n\nFor more accurate sorting of translated country names, install the optional\npyuca_ package.\n\n.. _pyuca: https://pypi.python.org/pypi/pyuca/\n\n\nCountryField\n============\n\nA country field for Django models that provides all ISO 3166-1 countries as\nchoices.\n\n``CountryField`` is based on Django's ``CharField``, providing choices\ncorresponding to the official ISO 3166-1 list of countries (with a default\n``max_length`` of 2).\n\nConsider the following model using a ``CountryField``:\n\n.. code:: python\n\n from django.db import models\n from django_countries.fields import CountryField\n\n class Person(models.Model):\n name = models.CharField(max_length=100)\n country = CountryField()\n\nAny ``Person`` instance will have a ``country`` attribute that you can use to\nget details of the person's country:\n\n.. code:: python\n\n >>> person = Person(name='Chris', country='NZ')\n >>> person.country\n Country(code='NZ')\n >>> person.country.name\n 'New Zealand'\n >>> person.country.flag\n '/static/flags/nz.gif'\n\nThis object (``person.country`` in the example) is a ``Country`` instance,\nwhich is described below.\n\nUse ``blank_label`` to set the label for the initial blank choice shown in\nforms:\n\n.. code:: python\n\n country = CountryField(blank_label='(select country)')\n\n\nMulti-choice\n------------\n\nThis field can also allow multiple selections of countries (saved as a comma\nseparated string). The field will always output a list of countries in this\nmode. For example:\n\n.. code:: python\n\n class Incident(models.Model):\n title = models.CharField(max_length=100)\n countries = CountryField(multiple=True)\n\n >>> for country in Incident.objects.get(title='Pavlova dispute').countries:\n ... print(country.name)\n Australia\n New Zealand\n\n\nThe ``Country`` object\n----------------------\n\nAn object used to represent a country, instantiated with a two character\ncountry code, three character code, or numeric code.\n\nIt can be compared to other objects as if it was a string containing the\ncountry code and when evaluated as text, returns the country code.\n\nname\n Contains the full country name.\n\nflag\n Contains a URL to the flag. If you page could have lots of different flags\n then consider using ``flag_css`` instead to avoid excessive HTTP requests.\n\nflag_css\n Output the css classes needed to display an HTML element as the correct flag\n from within a single sprite image that contains all flags. For example:\n\n .. code:: jinja\n\n \n \n\n For multiple flag resolutions, use ``sprite-hq.css`` instead and add the\n ``flag2x``, ``flag3x``, or ``flag4x`` class. For example:\n\n .. code:: jinja\n\n \n Normal: \n Bigger: \n\n You might also want to consider using ``aria-label`` for better\n accessibility:\n\n .. code:: jinja\n\n \n\nunicode_flag\n A unicode glyph for the flag for this country. Currently well-supported in\n iOS and OS X. See https://en.wikipedia.org/wiki/Regional_Indicator_Symbol\n for details.\n\ncode\n The two letter country code for this country.\n\nalpha3\n The three letter country code for this country.\n\nnumeric\n The numeric country code for this country (as an integer).\n\nnumeric_padded\n The numeric country code as a three character 0-padded string.\n\n\n``CountrySelectWidget``\n-----------------------\n\nA widget is included that can show the flag image after the select box\n(updated with JavaScript when the selection changes).\n\nWhen you create your form, you can use this custom widget like normal:\n\n.. code:: python\n\n from django_countries.widgets import CountrySelectWidget\n\n class PersonForm(forms.ModelForm):\n class Meta:\n model = models.Person\n fields = ('name', 'country')\n widgets = {'country': CountrySelectWidget()}\n\nPass a ``layout`` text argument to the widget to change the positioning of the\nflag and widget. The default layout is:\n\n.. code:: python\n\n '{widget}'\n\n\nCustom forms\n============\n\nIf you want to use the countries in a custom form, use the model field's custom\nform field to ensure the translatable strings for the country choices are left\nlazy until the widget renders:\n\n.. code:: python\n\n from django_countries.fields import CountryField\n\n class CustomForm(forms.Form):\n country = CountryField().formfield()\n\nUse ``CountryField(blank=True)`` for non-required form fields, and\n``CountryField(blank_label='(Select country)')`` to use a custom label for the\ninitial blank option.\n\nYou can also use the CountrySelectWidget_ as the widget for this field if you\nwant the flag image after the select box.\n\n\nGet the countries from Python\n=============================\n\nUse the ``django_countries.countries`` object instance as an iterator of ISO\n3166-1 country codes and names (sorted by name).\n\nFor example:\n\n.. code:: python\n\n >>> from django_countries import countries\n >>> dict(countries)['NZ']\n 'New Zealand'\n\n >>> for code, name in list(countries)[:3]:\n ... print(\"{name} ({code})\".format(name=name, code=code))\n ...\n Afghanistan (AF)\n \u00c5land Islands (AX)\n Albania (AL)\n\nCountry names are translated using Django's standard ``ugettext``.\nIf you would like to help by adding a translation, please visit\nhttps://www.transifex.com/projects/p/django-countries/\n\n\nTemplate Tags\n=============\n\nIf you have your country code stored in a different place than a `CountryField`\nyou can use the template tag to get a `Country` object and have access to all\nof its properties:\n\n.. code:: jinja\n\n {% load countries %}\n {% get_country 'BR' as country %}\n {{ country.name }}\n\nIf you need a list of countries, there's also a simple tag for that:\n\n.. code:: jinja\n\n {% load countries %}\n {% get_countries as countries %}\n \n\n\nCustomization\n=============\n\nCustomize the country list\n--------------------------\n\nCountry names are taken from the official ISO 3166-1 list. If your project\nrequires the use of alternative names, the inclusion or exclusion of specific\ncountries then use the ``COUNTRIES_OVERRIDE`` setting.\n\nA dictionary of names to override the defaults. The values can also use a more\n`complex dictionary format`_.\n\nNote that you will need to handle translation of customised country names.\n\nSetting a country's name to ``None`` will exclude it from the country list.\nFor example:\n\n.. code:: python\n\n from django.utils.translation import ugettext_lazy as _\n\n COUNTRIES_OVERRIDE = {\n 'NZ': _('Middle Earth'),\n 'AU': None,\n 'US': {'names': [\n _('United States of America'),\n _('America'),\n ],\n }\n\nIf you have a specific list of countries that should be used, use\n``COUNTRIES_ONLY``:\n\n.. code:: python\n\n COUNTRIES_ONLY = ['NZ', 'AU']\n\nor to specify your own country names, use a dictionary or two-tuple list\n(string items will use the standard country name):\n\n.. code:: python\n\n COUNTRIES_ONLY = [\n 'US',\n 'GB',\n ('NZ', _('Middle Earth')),\n ('AU', _('Desert')),\n ]\n\n\nShow certain countries first\n----------------------------\n\nProvide a list of country codes as the ``COUNTRIES_FIRST`` setting and they\nwill be shown first in the countries list (in the order specified) before all\nthe alphanumerically sorted countries.\n\nIf you want to sort these initial countries too, set the\n``COUNTRIES_FIRST_SORT`` setting to ``True``.\n\nBy default, these initial countries are not repeated again in the\nalphanumerically sorted list. If you would like them to be repeated, set the\n``COUNTRIES_FIRST_REPEAT`` setting to ``True``.\n\nFinally, you can optionally separate these 'first' countries with an empty\nchoice by providing the choice label as the ``COUNTRIES_FIRST_BREAK`` setting.\n\n\nCustomize the flag URL\n----------------------\n\nThe ``COUNTRIES_FLAG_URL`` setting can be used to set the url for the flag\nimage assets. It defaults to::\n\n COUNTRIES_FLAG_URL = 'flags/{code}.gif'\n\nThe URL can be relative to the STATIC_URL setting, or an absolute URL.\n\nThe location is parsed using Python's string formatting and is passed the\nfollowing arguments:\n\n * code\n * code_upper\n\nFor example: ``COUNTRIES_FLAG_URL = 'flags/16x10/{code_upper}.png'``\n\nNo checking is done to ensure that a static flag actually exists.\n\nAlternatively, you can specify a different URL on a specific ``CountryField``:\n\n.. code:: python\n\n class Person(models.Model):\n name = models.CharField(max_length=100)\n country = CountryField(\n countries_flag_url='//flags.example.com/{code}.png')\n\n\nSingle field customization\n--------------------------\n\nTo customize an individual field, rather than rely on project level settings,\ncreate a ``Countries`` subclass which overrides settings.\n\nTo override a setting, give the class an attribute matching the lowercased\nsetting without the ``COUNTRIES_`` prefix.\n\nThen just reference this class in a field. For example, this ``CountryField``\nuses a custom country list that only includes the G8 countries:\n\n.. code:: python\n\n from django_countries import Countries\n\n class G8Countries(Countries):\n only = [\n 'CA', 'FR', 'DE', 'IT', 'JP', 'RU', 'GB',\n ('EU', _('European Union'))\n ]\n\n class Vote(models.Model):\n country = CountryField(countries=G8Countries)\n approve = models.BooleanField()\n\n\nComplex dictionary format\n-------------------------\n\nFor ``COUNTRIES_ONLY`` and ``COUNTRIES_OVERRIDE``, you can also provide a\ndictionary rather than just a translatable string for the country name.\n\nThe options within the dictionary are:\n\n``name`` or ``names`` (required)\n Either a single translatable name for this country or a list of multiple\n translatable names. If using multiple names, the first name takes preference\n when using ``COUNTRIES_FIRST`` or the ``Country.name``.\n\n``alpha3`` (optional)\n An ISO 3166-1 three character code (or an empty string to nullify an existing\n code for this country.\n\n``numeric`` (optional)\n An ISO 3166-1 numeric country code (or ``None`` to nullify an existing code\n for this country. The numeric codes 900 to 999 are left available by the\n standard for user-assignment.\n\n\n``Country`` object external plugins\n-----------------------------------\n\nOther Python packages can add attributes to the Country_ object by using entry\npoints in their setup script.\n\n.. _Country: `The Country object`_\n\nFor example, you could create a ``django_countries_phone`` package which had a\nwith the following entry point in the ``setup.py`` file. The entry point name\n(``phone``) will be the new attribute name on the Country object. The attribute\nvalue will be the return value of the ``get_phone`` function (called with the\nCountry instance as the sole argument).\n\n.. code:: python\n\n setup(\n ...\n entry_points={\n 'django_countries.Country': 'phone = django_countries_phone.get_phone'\n },\n ...\n )\n\n\n\nDjango Rest Framework\n=====================\n\nDjango Countries ships with a ``CountryFieldMixin`` to make the\n`CountryField`_ model field compatible with DRF serializers. Use the following\nmixin with your model serializer:\n\n.. code:: python\n\n from django_countries.serializers import CountryFieldMixin\n\n class CountrySerializer(CountryFieldMixin, serializers.ModelSerializer):\n\n class Meta:\n model = models.Person\n fields = ('name', 'email', 'country')\n\nThis mixin handles both standard and `multi-choice`_ country fields.\n\n\nDjango Rest Framework field\n---------------------------\n\nFor lower level use (or when not dealing with model fields), you can use the\nincluded ``CountryField`` serializer field. For example:\n\n.. code:: python\n\n from django_countries.serializer_fields import CountryField\n\n class CountrySerializer(serializers.Serializer):\n country = CountryField()\n\nYou can optionally instantiate the field with the ``countries`` argument to\nspecify a custom Countries_ instance.\n\n.. _Countries: `Single field customization`_\n\nREST output format\n^^^^^^^^^^^^^^^^^^\n\nBy default, the field will output just the country code. If you would rather\nhave more verbose output, instantiate the field with ``country_dict=True``,\nwhich will result in the field having the following output structure:\n\n.. code:: json\n\n {\"code\": \"NZ\", \"name\": \"New Zealand\"}\n\nEither the code or this dict output structure are acceptable as input\nirregardless of the ``country_dict`` argument's value.\n\n\nOPTIONS request\n---------------\n\nWhen you request OPTIONS against a resource (using the DRF `metadata support`_)\nthe countries will be returned in the response as choices:\n\n.. code:: text\n\n OPTIONS /api/address/ HTTP/1.1\n\n HTTP/1.1 200 OK\n Content-Type: application/json\n Allow: GET, POST, HEAD, OPTIONS\n\n {\n \"actions\": {\n \"POST\": {\n \"country\": {\n \"type\": \"choice\",\n \"label\": \"Country\",\n \"choices\": [\n {\n \"display_name\": \"Australia\",\n \"value\": \"AU\"\n },\n [...]\n {\n \"display_name\": \"United Kingdom\",\n \"value\": \"GB\"\n }\n ]\n }\n }\n\n.. _metadata support: http://www.django-rest-framework.org/api-guide/metadata/\n\n==========\nChange Log\n==========\n\nThis log shows interesting changes that happen for each version, latest\nversions first. It can be assumed that translations have been updated each\nrelease, and any new translations added.\n\n5.5 (11 September 2019)\n=======================\n\n- Django 3.0 compatibility.\n\n- Plugin system for extending the ``Country`` object.\n\n\n5.4 (11 August 2019)\n====================\n\n- Renamed Macedonia -> North Macedonia.\n\n- Fix an outlying ``makemigrations`` error.\n\n- Pulled in new translations which were provided but missing from previous\n version.\n\n- Fixed Simplified Chinese translation (needed to be ``locale/zh_Hans``).\n\n- Introduce an optional complex format for ``COUNTRIES_ONLY`` and\n ``COUNTRIES_OVERRIDE`` to allow for multiple names for a country, a custom\n three character code, and a custom numeric country code.\n\n\n5.3.3 (16 February 2019)\n========================\n\n- Add test coverage for Django Rest Framework 3.9.\n\n\n5.3.2 (27 August 2018)\n======================\n\n- Tests for Django 2.1 and Django Rest Framework 3.8.\n\n\n5.3.1 (12 June 2018)\n====================\n\n- Fix ``dumpdata`` and ``loaddata`` for ``CountryField(multiple=True)``.\n\n\n5.3 (20 April 2018)\n===================\n\n- Iterating a ``Countries`` object now returns named tuples. This makes things\n nicer when using ``{% get_countries %}`` or using the country list elsewhere\n in your code.\n\n\n5.2 (9 March 2018)\n==================\n\n- Ensure Django 2.1 compatibility for ``CountrySelectWidget``.\n\n- Fix regression introduced into 5.1 when using Django 1.8 and certain queryset\n lookup types (like ``__in``).\n\n\n5.1.1 (31 January 2018)\n=======================\n\n- Fix some translations that were included in 5.1 but not compiled.\n\n\n5.1 (30 January 2018)\n=====================\n\n* Tests now also cover Django Rest Framework 3.7 and Django 2.0.\n\n* Allow for creating country fields using (valid) alpha-3 or numeric codes.\n\n* Fix migration error with blank default (thanks Jens Diemer).\n\n* Add a ``{% get_countries %}`` template tag (thanks Matija \u010cvrk).\n\n\n5.0 (10 October 2017)\n=====================\n\n* No longer allow ``multiple=True`` and ``null=True`` together. This causes\n problems saving the field, and ``null`` shouldn't really be used anyway\n because the country field is a subclass of ``CharField``.\n\n\n4.6 (16 June 2017)\n==================\n\n* Add a ``CountryFieldMixin`` Django Rest Framework serializer mixin that\n automatically picks the right field type for a ``CountryField`` (both single\n and multi-choice).\n\n* Validation for Django Rest Framework field (thanks Simon Meers).\n\n* Allow case-insensitive ``.by_name()`` matching (thanks again, Simon).\n\n* Ensure a multiple-choice ``CountryField.max_length`` is enough to hold all\n countries.\n\n* Fix inefficient pickling of countries (thanks Craig de Stigter for the report\n and tests).\n\n* Stop adding a blank choice when dealing with a multi-choice ``CountryField``.\n\n* Tests now cover multiple Django Rest Framework versions (back to 3.3).\n\n4.6.1\n-----\n\n* Fix invalid reStructuredText in CHANGES.\n\n4.6.2\n-----\n\n* Use transparency layer for flag sprites.\n\n\n4.5 (18 April 2017)\n===================\n\n* Change rest framework field to be based on ``ChoiceField``.\n\n* Allow for the rest framework field to deserialize by full country name\n (specifically the English name for now).\n\n\n4.4 (6 April 2017)\n==================\n\n* Fix for broken CountryField on certain models in Django 1.11.\n Thanks aktiur for the test case.\n\n* Update tests to cover Django 1.11\n\n\n4.3 (29 March 2017)\n===================\n\n* Handle \"Czechia\" translations in a nicer way (fall back to \"Czech Republic\"\n until new translations are available).\n\n* Fix for an import error in Django 1.9+ due to use of non-lazy ``ugettext`` in\n the django-countries custom admin filter.\n\n* Back to 100% test coverage.\n\n\n4.2 (10 March 2017)\n===================\n\n* Add sprite flag files (and ``Country.flag_css`` property) to help minimize\n HTTP requests.\n\n\n4.1 (22 February 2017)\n======================\n\n* Better default Django admin filter when filtering a country field in a\n ``ModelAdmin``.\n\n* Fix settings to support Django 1.11\n\n* Fix when using a model instance with a deferred country field.\n\n* Allow ``CountryField`` to handle multiple countries at once!\n\n* Allow CountryField to still work if Deferred.\n\n* Fix a field with customized country list. Thanks pilmie!\n\n\n4.0 (16 August 2016)\n====================\n\nDjango supported versions are now 1.8+\n\n* Drop legacy code\n\n* Fix tests, 100% coverage\n\n* IOS / OSX unicode flags function\n\n* Fix widget choices on Django 1.9+\n\n* Add ``COUNTRIES_FIRST_SORT``. Thanks Edraak!\n\n4.0.1\n-----\n\n* Fix tests for ``COUNTRIES_FIRST_SORT`` (feature still worked, tests didn't).\n\n\n3.4 (22 October 2015)\n=====================\n\n* Extend test suite to cover Django 1.8\n\n* Fix XSS escaping issue in CountrySelectWidget\n\n* Common name changes: fix typo of Moldova, add United Kingdom\n\n* Add ``{% get_country %}`` template tag.\n\n* New ``CountryField`` Django Rest Framework serializer field.\n\n3.4.1\n-----\n\n* Fix minor packaging error.\n\n\n3.3 (30 Mar 2015)\n=================\n\n* Add the attributes to ``Countries`` class that can override the default\n settings.\n\n* CountriesField can now be passed a custom countries subclass to use, which\n combined with the previous change allows for different country choices for\n different fields.\n\n* Allow ``COUNTRIES_ONLY`` to also accept just country codes in its list\n (rather than only two-tuples), looking up the translatable country name from\n the full country list.\n\n* Fix Montenegro flag size (was 12px high rather than the standard 11px).\n\n* Fix outdated ISO country name formatting for Bolivia, Gambia, Holy See,\n Iran, Micronesia, and Venezuela.\n\n\n3.2 (24 Feb 2015)\n=================\n\n* Fixes initial iteration failing for a fresh ``Countries`` object.\n\n* Fix widget's flag URLs (and use ensure widget is HTML encoded safely).\n\n* Add ``countries.by_name(country, language='en')`` method, allowing lookup of\n a country code by its full country name. Thanks Josh Schneier.\n\n\n3.1 (15 Jan 2015)\n=================\n\n* Start change log :)\n\n* Add a ``COUNTRIES_FIRST`` setting (and some other related ones) to allow for\n specific countries to be shown before the entire alphanumeric list.\n\n* Add a ``blank_label`` argument to ``CountryField`` to allow customization of\n the label shown in the initial blank choice shown in the select widget.\n\n3.1.1 (15 Jan 2015)\n-------------------\n\n* Packaging fix (``CHANGES.rst`` wasn't in the manifest)\n\n\n3.0 (22 Oct 2014)\n=================\n\nDjango supported versions are now 1.4 (LTS) and 1.6+\n\n* Add ``COUNTRIES_ONLY`` setting to restrict to a specific list of countries.\n\n* Optimize country name translations to avoid exessive translation calls that\n were causing a notable performance impact.\n\n* PyUCA integration, allowing for more accurate sorting across all locales.\n Also, a better sorting method when PyUCA isn't installed.\n\n* Better tests (now at 100% test coverage).\n\n* Add a ``COUNTRIES_FLAG_URL`` setting to allow custom flag urls.\n\n* Support both IOC and numeric country codes, allowing more flexible lookup of\n countries and specific code types.\n\n* Field descriptor now returns ``None`` if no country matches (*reverted in\n v3.0.1*)\n\n3.0.1 (27 Oct 2014)\n-------------------\n\n* Revert descriptor to always return a Country object.\n\n* Fix the ``CountryField`` widget choices appearing empty due to a translation\n change in v3.0.\n\n3.0.2 (29 Dec 2014)\n-------------------\n\n* Fix ``CountrySelectWidget`` failing when used with a model form that is\n passed a model instance.\n\n\n2.1 (24 Mar 2014)\n=================\n\n* Add IOC (3 letter) country codes.\n\n* Fix bug when loading fixtures.\n\n2.1.1 (28 Mar 2014)\n-------------------\n\n* Fix issue with translations getting evaluated early.\n\n2.1.2 (28 Mar 2014)\n-------------------\n\n* Fix Python 3 compatibility.\n\n\n\n2.0 (18 Feb 2014)\n=================\n\nThis is the first entry to the change log. The previous was 1.5,\nreleased 19 Nov 2012.\n\n* Optimized flag images, adding flags missing from original source.\n\n* Better storage of settings and country list.\n\n* New country list format for fields.\n\n* Better tests.\n\n* Changed ``COUNTRIES_FLAG_STATIC`` setting to ``COUNTRIES_FLAG_URL``.\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/SmileyChris/django-countries/", "keywords": "django,countries,flags", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "django-countries", "package_url": "https://pypi.org/project/django-countries/", "platform": "", "project_url": "https://pypi.org/project/django-countries/", "project_urls": { "Homepage": "https://github.com/SmileyChris/django-countries/" }, "release_url": "https://pypi.org/project/django-countries/5.5/", "requires_dist": [ "six", "tox ; extra == 'dev'", "django ; extra == 'dev'", "pytest ; extra == 'dev'", "pytest-django ; extra == 'dev'", "djangorestframework ; extra == 'dev'", "mock ; (python_version < \"3\") and extra == 'dev'", "transifex-client ; extra == 'maintainer'", "zest.releaser[recommended] ; extra == 'maintainer'", "django ; extra == 'maintainer'", "pytest ; extra == 'test'", "pytest-django ; extra == 'test'", "pytest-cov ; extra == 'test'", "mock ; (python_version < \"3\") and extra == 'test'" ], "requires_python": "", "summary": "Provides a country field for Django models.", "version": "5.5" }, "last_serial": 5812145, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "0f087dc49cc3de062b4d5a1afb97832b", "sha256": "0b321fb31a0e2d308b79cd44ff1133437f7aca4e9d1f9d660c66607a1b2fcaf0" }, "downloads": -1, "filename": "django-countries-1.0.tar.gz", "has_sig": true, "md5_digest": "0f087dc49cc3de062b4d5a1afb97832b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97068, "upload_time": "2014-12-29T20:24:01", "url": "https://files.pythonhosted.org/packages/01/94/1b1f6a318f417b8c04c6b4a84e5f7bb2620e61b206dbf3e3bbe5d1569d4c/django-countries-1.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "869a1f67f91e8c55249a8114cf5e588f", "sha256": "6d6a55d3eae896d05ee004ead30a865319e1cff96cc43c603f2481ce17a33741" }, "downloads": -1, "filename": "django-countries-1.0.1.tar.gz", "has_sig": true, "md5_digest": "869a1f67f91e8c55249a8114cf5e588f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97060, "upload_time": "2014-12-29T20:23:38", "url": "https://files.pythonhosted.org/packages/e7/17/2a7cde005211a21cb67f3741cd0b4ed0ab8c229a333d4f211fd6aed8488f/django-countries-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "6a732e4a2255d8f3960e62c9ee673a9a", "sha256": "3c67aa28c8e6bcdca3e07c219812ea5cd891bf2acde0f00ce558a70d6c58a6b6" }, "downloads": -1, "filename": "django-countries-1.0.2.tar.gz", "has_sig": true, "md5_digest": "6a732e4a2255d8f3960e62c9ee673a9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97081, "upload_time": "2014-12-29T20:23:24", "url": "https://files.pythonhosted.org/packages/6e/84/de838a4f823b34ff6cbc9545c3b88125f9be4ca68dfab28dd14fac792e2d/django-countries-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "95a2a9e5739ffaf2c0540e2f548fd9df", "sha256": "cb9584e056d352caa6b5684fcdf7cec6131dbdf79f4607b30fcac57a60086b5f" }, "downloads": -1, "filename": "django-countries-1.0.3.tar.gz", "has_sig": true, "md5_digest": "95a2a9e5739ffaf2c0540e2f548fd9df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97424, "upload_time": "2014-12-29T20:22:13", "url": "https://files.pythonhosted.org/packages/ea/8b/62ab3e9094c2387e11cacda98142e2eae0311821fde8c7078585fdf2d073/django-countries-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "3d43fd98809839ae919a8c55d5f4e776", "sha256": "ccaefd6ebe101d0444f31a0d3efe6eb7a47f7e93c7215a8837c427a937e4fd81" }, "downloads": -1, "filename": "django-countries-1.0.4.tar.gz", "has_sig": true, "md5_digest": "3d43fd98809839ae919a8c55d5f4e776", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 98255, "upload_time": "2014-12-29T20:21:59", "url": "https://files.pythonhosted.org/packages/c3/19/d9c89dd0f4a890ec65b72105c0a1820212dae0da4e7b4746dc449755e2e9/django-countries-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "58fb3b30eb2cdb100b9fd8e2204b20ba", "sha256": "84a58e249599daf203f2f7c7af62473d2a2e63f44babdbbf76e6d286f4fbf735" }, "downloads": -1, "filename": "django-countries-1.0.5.tar.gz", "has_sig": true, "md5_digest": "58fb3b30eb2cdb100b9fd8e2204b20ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 98343, "upload_time": "2014-12-29T20:21:43", "url": "https://files.pythonhosted.org/packages/06/50/039932735dbdcf1f6271142df3b761cedc782f4addc484d34c76ccb8111e/django-countries-1.0.5.tar.gz" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "0cd92917ac9dc0c801a755146569435d", "sha256": "fbdc30fdd95ea4a759a6a8f8dfbe5f044034f5ce36a871b998e755ad2bf94830" }, "downloads": -1, "filename": "django-countries-1.0.6.tar.gz", "has_sig": true, "md5_digest": "0cd92917ac9dc0c801a755146569435d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108116, "upload_time": "2014-12-29T20:21:25", "url": "https://files.pythonhosted.org/packages/c3/33/9a9ee41331886c401c44ccdadb83b9fa44892c28e0143f78dbb76713c3df/django-countries-1.0.6.tar.gz" } ], "1.0.6.1": [ { "comment_text": "", "digests": { "md5": "c26758f23903c5ecd241afa7f2a9be05", "sha256": "3c8ea243777156ca4cc41402f14aa92fdcce9ae7898b807556af48222cf4ef84" }, "downloads": -1, "filename": "django-countries-1.0.6.1.tar.gz", "has_sig": true, "md5_digest": "c26758f23903c5ecd241afa7f2a9be05", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121382, "upload_time": "2014-12-29T20:20:42", "url": "https://files.pythonhosted.org/packages/6f/1f/26c8213a4792b8e0a3fa671fc4469d0d21dcb585813b278f6c302a878a11/django-countries-1.0.6.1.tar.gz" } ], "1.0.7": [ { "comment_text": "", "digests": { "md5": "7890d0d88882a437a5fb711f76476f9a", "sha256": "15ddc3731b2e56be0713debc147526b4907bb46ee1051ddac6a86738768a5cf9" }, "downloads": -1, "filename": "django-countries-1.0.7.tar.gz", "has_sig": true, "md5_digest": "7890d0d88882a437a5fb711f76476f9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 123683, "upload_time": "2014-12-29T20:20:30", "url": "https://files.pythonhosted.org/packages/b2/1c/52b425c191008154bb367f0c596110dd6b7670326d2d582c17e29dec1a78/django-countries-1.0.7.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "5b8ddc7e369e7515f18b250ff6826aa7", "sha256": "00b7758d426673fb602340afb0079b070b128f43e4a628f16599ebf6048894d2" }, "downloads": -1, "filename": "django-countries-1.1.tar.gz", "has_sig": true, "md5_digest": "5b8ddc7e369e7515f18b250ff6826aa7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 123726, "upload_time": "2014-12-29T20:20:06", "url": "https://files.pythonhosted.org/packages/41/97/70218a15d54ad520de45186a627c71af1e5341c69ecebd5cbcb663c56c2a/django-countries-1.1.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "5f74ffc46c12f30b5d5e3dc419a07191", "sha256": "f45186e6d3866bb8dc54b71811252bed47fbe6d0eb75840b30453f533a27b0a1" }, "downloads": -1, "filename": "django-countries-1.1.1.tar.gz", "has_sig": true, "md5_digest": "5f74ffc46c12f30b5d5e3dc419a07191", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 128184, "upload_time": "2014-12-29T20:19:46", "url": "https://files.pythonhosted.org/packages/28/ba/d486e0b8747c6b2091f26eee01d6d61d8061e6eab376c26102332e7dc6cd/django-countries-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "ea517164a75cabdd3237f4e530a3f4a3", "sha256": "8576970f62946b8c249b4668edceeb8c0d0bef5d602e41c60d8eae9f8298ae41" }, "downloads": -1, "filename": "django-countries-1.1.2.tar.gz", "has_sig": true, "md5_digest": "ea517164a75cabdd3237f4e530a3f4a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121633, "upload_time": "2014-12-29T20:18:58", "url": "https://files.pythonhosted.org/packages/32/f0/a1f54347e906280a83b973d12ae6d43c3c2a94775c606f453c82a024dfbe/django-countries-1.1.2.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "25cb6eb56d5831185a6b007b4581f566", "sha256": "fa45b9507b3920dea66411e7cc09b21caae83c3d628343247c1ebf153c12051c" }, "downloads": -1, "filename": "django-countries-1.2.tar.gz", "has_sig": true, "md5_digest": "25cb6eb56d5831185a6b007b4581f566", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 154645, "upload_time": "2014-12-29T20:14:27", "url": "https://files.pythonhosted.org/packages/c3/dc/fe23c7c9bf53eff1b4be3f63702438bc5cbf5bec6f439a988b84dd907bb3/django-countries-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "5e0a3a96fdb4a038dc82566f05b4b343", "sha256": "3912ddfdb57567a42f8b3f0066622b87c690e84d3c24c2c32a35ffe5aec6ddd8" }, "downloads": -1, "filename": "django-countries-1.3.tar.gz", "has_sig": true, "md5_digest": "5e0a3a96fdb4a038dc82566f05b4b343", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 164057, "upload_time": "2014-12-29T20:14:02", "url": "https://files.pythonhosted.org/packages/7d/4c/e81dee5f6cdb1403e19de2fe2a23fc7b5bf50d8dc8225ee138c0ebccda5a/django-countries-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "1e07db39e94a6b87ee767d4519f17d4b", "sha256": "c58d5a3fc77eb1c9b9f51684bb53888c95b22d148b8e81c0687228222ec94aa6" }, "downloads": -1, "filename": "django-countries-1.4.tar.gz", "has_sig": true, "md5_digest": "1e07db39e94a6b87ee767d4519f17d4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 173649, "upload_time": "2014-12-28T22:13:40", "url": "https://files.pythonhosted.org/packages/1d/ec/41c2fb958abc9ac706dbaba9a52386cebebcda661bdd5b897111db2c44ff/django-countries-1.4.tar.gz" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "f16595ef51727397a9a1a43f41671d4c", "sha256": "c9155d97d1b6892047c6a3d22fac0c29e38c8b968645412174d0d2ccaecb5ccc" }, "downloads": -1, "filename": "django-countries-1.5.tar.gz", "has_sig": true, "md5_digest": "f16595ef51727397a9a1a43f41671d4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 191770, "upload_time": "2014-12-28T22:14:00", "url": "https://files.pythonhosted.org/packages/8e/6c/308feb99647ebe29d1f3557d10d6c64435e8cd9ca95506b0322a972620cd/django-countries-1.5.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "fff0f6b26e70669f9e5cefd07cd52027", "sha256": "056c52484d09dc8db81e340b749669fa7120811f400a9e178a38c6fa1870248d" }, "downloads": -1, "filename": "django-countries-2.0.tar.gz", "has_sig": true, "md5_digest": "fff0f6b26e70669f9e5cefd07cd52027", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 182310, "upload_time": "2014-12-28T22:12:21", "url": "https://files.pythonhosted.org/packages/b1/d6/155e0f578cfc9c1aebeb07d4c6c44debb1fd2cc6a71f6c0b2c5bbbf4e971/django-countries-2.0.tar.gz" } ], "2.1": [ { "comment_text": "", "digests": { "md5": "6f58df251532c91af100c9f3bcc7eec4", "sha256": "675bc24644611cddc73f73e5dc3bde6126529d41e717938253df6842e48bdb86" }, "downloads": -1, "filename": "django-countries-2.1.tar.gz", "has_sig": true, "md5_digest": "6f58df251532c91af100c9f3bcc7eec4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 184038, "upload_time": "2014-12-28T22:14:22", "url": "https://files.pythonhosted.org/packages/65/ba/92cb9801b311c928738b283946894ac02ebaabe4e91f96bc019ad4f25205/django-countries-2.1.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "dfaa86f8213493e93f8c9a0793e0e972", "sha256": "ed62537cad4e77455aff59f61df067b573b47f78b1f812dda3f342a912da38e6" }, "downloads": -1, "filename": "django-countries-2.1.1.tar.gz", "has_sig": true, "md5_digest": "dfaa86f8213493e93f8c9a0793e0e972", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 184156, "upload_time": "2014-12-28T22:14:36", "url": "https://files.pythonhosted.org/packages/5e/15/4547ed4477ad9535ae37125aa31407da9a8d5e27de7a3602ac229c848ad7/django-countries-2.1.1.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "276dd046da36c5b849693be4190b4722", "sha256": "6815b078391bec912bc441aa083bde3cebd154b8abcb73c14866f61666ed602f" }, "downloads": -1, "filename": "django-countries-2.1.2.tar.gz", "has_sig": true, "md5_digest": "276dd046da36c5b849693be4190b4722", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 184167, "upload_time": "2014-12-28T22:14:49", "url": "https://files.pythonhosted.org/packages/3d/b6/041f98fdc3d21d00fbd46bdbb5a27b4a503a83ab75baa7622890d68ffc88/django-countries-2.1.2.tar.gz" } ], "3.0": [ { "comment_text": "", "digests": { "md5": "872266f22ab87dcb24c7c93af984201a", "sha256": "906b36b43a12134fbe8ee7f9d5350821e8703408f404b0b98c57052bbe3c991b" }, "downloads": -1, "filename": "django-countries-3.0.tar.gz", "has_sig": true, "md5_digest": "872266f22ab87dcb24c7c93af984201a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 219190, "upload_time": "2014-12-28T22:16:27", "url": "https://files.pythonhosted.org/packages/a0/6e/17fd9b939a4545deaa1ad90b9c2ab1cfa44b8c00abc9ca7c5da9bce1f713/django-countries-3.0.tar.gz" } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "0586460839abc45bdea3224ebc2b097d", "sha256": "27aa493ba593da8ba68bb449c4324d861d5d6b7152a3210a7bd8cc2ee754cd2b" }, "downloads": -1, "filename": "django-countries-3.0.1.tar.gz", "has_sig": true, "md5_digest": "0586460839abc45bdea3224ebc2b097d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 219301, "upload_time": "2014-12-28T22:16:38", "url": "https://files.pythonhosted.org/packages/62/81/bd500d05bb27c9175fd8180f8c5ae6cd298014210e0766f2e0571059d9c7/django-countries-3.0.1.tar.gz" } ], "3.0.2": [ { "comment_text": "", "digests": { "md5": "fd628b39ea4e1bced95f55a236994585", "sha256": "d90b7ef753c37f10caa0de00488349fbcfbb260acdd2bfe76cac907cbadb6fbd" }, "downloads": -1, "filename": "django-countries-3.0.2.tar.gz", "has_sig": true, "md5_digest": "fd628b39ea4e1bced95f55a236994585", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 219352, "upload_time": "2014-12-28T22:17:20", "url": "https://files.pythonhosted.org/packages/ab/cc/3249417e62a337cea55a74ef863b30ff61d38bdcb7004c5912a987434701/django-countries-3.0.2.tar.gz" } ], "3.1": [ { "comment_text": "", "digests": { "md5": "6766b7f821c866358249a63eca7d8c92", "sha256": "7869e45f94ad819767a86cb35ca003c5f909c93a4c02728ce08eb1b735ea7eff" }, "downloads": -1, "filename": "django-countries-3.1.tar.gz", "has_sig": true, "md5_digest": "6766b7f821c866358249a63eca7d8c92", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 234326, "upload_time": "2015-01-15T00:36:53", "url": "https://files.pythonhosted.org/packages/4b/d6/425b8d0d65feaf7ada35c4b880272fdc757e1d7bf2fed9a07255dcf65fd5/django-countries-3.1.tar.gz" } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "c723a76d0c047c95ce8c617da49a8034", "sha256": "7a53f5f1030fbc81f17cea8055bbb4e3d94e294897e6e680fc3657226122a3b0" }, "downloads": -1, "filename": "django-countries-3.1.1.tar.gz", "has_sig": true, "md5_digest": "c723a76d0c047c95ce8c617da49a8034", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 234593, "upload_time": "2015-01-15T02:01:30", "url": "https://files.pythonhosted.org/packages/74/30/e0156794daf114c3ee6beaa45f5f09e98616ecc99daba6e7730f98dd21b5/django-countries-3.1.1.tar.gz" } ], "3.2": [ { "comment_text": "", "digests": { "md5": "45043c6be85d6c887a7335706d8c8fec", "sha256": "2fabaffbf5e6ef9033ec76219cf47d79af766362aa1a58f661c02e79b0126297" }, "downloads": -1, "filename": "django-countries-3.2.tar.gz", "has_sig": true, "md5_digest": "45043c6be85d6c887a7335706d8c8fec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 235194, "upload_time": "2015-02-24T02:16:22", "url": "https://files.pythonhosted.org/packages/5d/c4/43b82133fcbec4978bc846b25ffb9c1f10b938d1db425623e47e3787577f/django-countries-3.2.tar.gz" } ], "3.3": [ { "comment_text": "", "digests": { "md5": "a981d1ae636ef8b5f05a0c73f7a7806e", "sha256": "11827070ebcf201d22ea531aa90e18146ca89580bd1897a132eb8afbc6b35b7d" }, "downloads": -1, "filename": "django-countries-3.3.tar.gz", "has_sig": true, "md5_digest": "a981d1ae636ef8b5f05a0c73f7a7806e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 245716, "upload_time": "2015-03-29T23:39:40", "url": "https://files.pythonhosted.org/packages/a4/86/7948d078aa5220479c89480b83dfca449d627cdefcf1d70adcfbe9a21dc0/django-countries-3.3.tar.gz" } ], "3.4": [], "3.4.1": [ { "comment_text": "", "digests": { "md5": "bb0cd17a2249fd0cec008d7624013602", "sha256": "23c6b5455a2e68ed02601cee0d3c80481965d0c3a6bd2f07ca56902b0a4c55a6" }, "downloads": -1, "filename": "django_countries-3.4.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "bb0cd17a2249fd0cec008d7624013602", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 444087, "upload_time": "2015-10-22T03:05:56", "url": "https://files.pythonhosted.org/packages/67/bc/e6a24a63a1592fae7585223cd02c30ee768c37f492d75764ad608038879e/django_countries-3.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ac9063777e4a988b3b932a273a033d37", "sha256": "5bdda9d2c3473b519371428d88517f29befad7e35dfc489e8b0f95cb2aa941dc" }, "downloads": -1, "filename": "django-countries-3.4.1.tar.gz", "has_sig": true, "md5_digest": "ac9063777e4a988b3b932a273a033d37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 267627, "upload_time": "2015-10-22T03:06:45", "url": "https://files.pythonhosted.org/packages/60/a6/7a82c369d75491466a9121b469d4d11c6c42f99a3f0b99220193dba8d216/django-countries-3.4.1.tar.gz" } ], "4.0": [ { "comment_text": "", "digests": { "md5": "f6ec90eacb043dbc0e8c88cc5ca9426e", "sha256": "b08bf13f46d05917074662a4222e6a614f7caf40ecccbbbc321a572f1029214f" }, "downloads": -1, "filename": "django_countries-4.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "f6ec90eacb043dbc0e8c88cc5ca9426e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 457205, "upload_time": "2016-08-16T01:00:21", "url": "https://files.pythonhosted.org/packages/9f/18/f35319565bc9d14aab6a48db59a56853b984d1776032f5bf537acf680f84/django_countries-4.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "618dea684d36d80f94bf46a0aef843f2", "sha256": "8762ed8863e818c44619e10ab47a861546f465afe945fd5ddecb6f2ba294a646" }, "downloads": -1, "filename": "django-countries-4.0.tar.gz", "has_sig": true, "md5_digest": "618dea684d36d80f94bf46a0aef843f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 265371, "upload_time": "2016-08-16T01:00:27", "url": "https://files.pythonhosted.org/packages/91/88/c99df63539deafc9306158e65965e1774eebf3a9f39c8bb2314369fb79a8/django-countries-4.0.tar.gz" } ], "4.1": [ { "comment_text": "", "digests": { "md5": "339eb720fc481a0279b69af270fb60d4", "sha256": "584534fc41d69427aad7e7a032a9163fb1d7afa74827ce6bb15a1dfd6306587e" }, "downloads": -1, "filename": "django_countries-4.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "339eb720fc481a0279b69af270fb60d4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 473449, "upload_time": "2017-02-22T04:31:46", "url": "https://files.pythonhosted.org/packages/1d/fe/231c1e756352bc9079d38be711ceb8d7f34ab065d5dc47d944cb2c407857/django_countries-4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5ab444bfc32b8a0ba6e156ebd1a22ab4", "sha256": "1966af42d46bf12f1c7f3d961480e2f0d1f47a58f645f0ce7c394193d5911776" }, "downloads": -1, "filename": "django-countries-4.1.tar.gz", "has_sig": true, "md5_digest": "5ab444bfc32b8a0ba6e156ebd1a22ab4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 282647, "upload_time": "2017-02-22T04:31:52", "url": "https://files.pythonhosted.org/packages/c2/66/a7b82208a06a79248c978f97ee72df069d9e2d256159aebb05a8ad419a37/django-countries-4.1.tar.gz" } ], "4.2": [ { "comment_text": "", "digests": { "md5": "e7f50ca49e427b5f9496bb887c97dfdf", "sha256": "b60f8e76936b830eac53dbe8ca8e3c343b3b0312c01144961a22a324a88d4d13" }, "downloads": -1, "filename": "django_countries-4.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "e7f50ca49e427b5f9496bb887c97dfdf", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 584957, "upload_time": "2017-03-10T01:40:50", "url": "https://files.pythonhosted.org/packages/bf/a5/a5d4ec2dfe4980f5cb7afe0010a94b3306eb8667cd9c8746ed6780ed33b3/django_countries-4.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c6b82038feed9378c94195e4d8f612f9", "sha256": "45626cb8ce568111f96efa19d8da1abf6ad1def3d271d9f0c22699b27e810b5f" }, "downloads": -1, "filename": "django-countries-4.2.tar.gz", "has_sig": true, "md5_digest": "c6b82038feed9378c94195e4d8f612f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 394856, "upload_time": "2017-03-10T01:40:53", "url": "https://files.pythonhosted.org/packages/4b/98/4e27bb79b94e11bf0359c8bc1b36368e1832c6ab5d5d17e2fa6a1fc20180/django-countries-4.2.tar.gz" } ], "4.3": [ { "comment_text": "", "digests": { "md5": "e6a739825027505adfe60ccbc97f5e99", "sha256": "0f855fbc4fbfe96e51f0064fc7bb947b523992a236c01c3281298ffae5676ffc" }, "downloads": -1, "filename": "django_countries-4.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "e6a739825027505adfe60ccbc97f5e99", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 599655, "upload_time": "2017-03-28T21:33:37", "url": "https://files.pythonhosted.org/packages/ec/a5/2f5d3865637f7439806f7ac2e26284a30160c120f69e924243891f470d12/django_countries-4.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a5d07085fd44314e49fa7bee036dd291", "sha256": "44b3dc3725bce724580af15cfeff8ff2c01139b14bb3155d50ecfb0c01f5daa8" }, "downloads": -1, "filename": "django-countries-4.3.tar.gz", "has_sig": true, "md5_digest": "a5d07085fd44314e49fa7bee036dd291", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 400002, "upload_time": "2017-03-28T21:33:41", "url": "https://files.pythonhosted.org/packages/39/68/018bea53028d838c91506f13bbb9e15f20fb8cc3b9d28fc35368f46e647d/django-countries-4.3.tar.gz" } ], "4.4": [ { "comment_text": "", "digests": { "md5": "f2e91abed21a4c16415d07f70204b538", "sha256": "32336a4b5c15224d54c302cf2519358f06223216134840ca9fbd6fff8cab4b7b" }, "downloads": -1, "filename": "django_countries-4.4-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "f2e91abed21a4c16415d07f70204b538", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 599548, "upload_time": "2017-04-06T10:56:35", "url": "https://files.pythonhosted.org/packages/b3/d6/83724633b5700cc5708caf1c385755d6585ebd63c6c8dd3a8213e40a7637/django_countries-4.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2ee1d47d1b159acfc0ec1ddce87df4d1", "sha256": "e6abcacca0592a6ad3e76b503a70467b16e460b7720f26c91905ec0d0c339a75" }, "downloads": -1, "filename": "django-countries-4.4.tar.gz", "has_sig": true, "md5_digest": "2ee1d47d1b159acfc0ec1ddce87df4d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 391888, "upload_time": "2017-04-06T10:56:41", "url": "https://files.pythonhosted.org/packages/50/8c/8deed71b101ffa5a2db850eedc8a7597925d1f49fab94a00e30aecb4f5c5/django-countries-4.4.tar.gz" } ], "4.5": [ { "comment_text": "", "digests": { "md5": "d797190bc72d61322fa900cca3f38c1a", "sha256": "b7e1c6c3c20feec874145237513749c9d7208817bf377f53c92001934f13813e" }, "downloads": -1, "filename": "django_countries-4.5-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "d797190bc72d61322fa900cca3f38c1a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 612508, "upload_time": "2017-04-18T05:05:05", "url": "https://files.pythonhosted.org/packages/d5/09/fbd2a336cae46494ea3c16c4b121ee5f8b3c5fbb3548de96df4740203881/django_countries-4.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e318c996488a5385d94615ea23727f2a", "sha256": "1ea16125b93895fdb5c85c17a8233ad145313fbc4a64a3a915e3ad4ee2b15631" }, "downloads": -1, "filename": "django-countries-4.5.tar.gz", "has_sig": true, "md5_digest": "e318c996488a5385d94615ea23727f2a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 413597, "upload_time": "2017-04-18T05:05:09", "url": "https://files.pythonhosted.org/packages/72/ef/46ff08cdd1e94b9b09121f08f875e4547a46bda322c586ccd6ddfa1c5117/django-countries-4.5.tar.gz" } ], "4.6": [ { "comment_text": "", "digests": { "md5": "ba6a5b18bd2303c58cd5372aa5c1a562", "sha256": "859286c2cf7d70223b73bdcf180f1f7b9889d646c1974f47159b3b20f3545b99" }, "downloads": -1, "filename": "django_countries-4.6-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "ba6a5b18bd2303c58cd5372aa5c1a562", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 627168, "upload_time": "2017-06-15T22:24:27", "url": "https://files.pythonhosted.org/packages/d2/28/b95de58f2da5981493e7df52869fb1d80a6bf5b5fb6e6dccd0a4772350da/django_countries-4.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "59dde4960585be371e69145275b6df08", "sha256": "9df78f0fd7d6df20185de7e56248f91928826a1916a0331ed485b8c5c5b0e397" }, "downloads": -1, "filename": "django-countries-4.6.tar.gz", "has_sig": true, "md5_digest": "59dde4960585be371e69145275b6df08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 423895, "upload_time": "2017-06-15T22:24:31", "url": "https://files.pythonhosted.org/packages/a2/9e/f52ae191c8b412a677f197dfda67c1f06d130b7e9da72057f8f17389516d/django-countries-4.6.tar.gz" } ], "4.6.1": [ { "comment_text": "", "digests": { "md5": "9d16db541ad177201ab37d047e688114", "sha256": "56ea197b4ed9dca1e1044f4f0d1509612a9715a167e1eea8f79a8f5a7848caf8" }, "downloads": -1, "filename": "django_countries-4.6.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "9d16db541ad177201ab37d047e688114", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 627250, "upload_time": "2017-06-15T22:33:55", "url": "https://files.pythonhosted.org/packages/42/87/553fa604ccc8c306eac4551f7b5553273c93fc3d03a29d3373138bc92cf9/django_countries-4.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c0db823fd701b6698807b531c52b0fb1", "sha256": "a56707b5bd3d13d50177b4f1dbd650a40734698bf4693965b805c86d2d9fbb45" }, "downloads": -1, "filename": "django-countries-4.6.1.tar.gz", "has_sig": true, "md5_digest": "c0db823fd701b6698807b531c52b0fb1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 424039, "upload_time": "2017-06-15T22:34:01", "url": "https://files.pythonhosted.org/packages/84/df/19790ac0f5392d08a9fdd007aff85eb1916bbc5a0588a8eefbf2a022e5f2/django-countries-4.6.1.tar.gz" } ], "4.6.2": [ { "comment_text": "", "digests": { "md5": "6f4edf4958ce02f582586d7ac1ca963c", "sha256": "8653c909f0b6ffda283d4c6c93c889eeb2b225fcdd10333ebacc36665a8df1d6" }, "downloads": -1, "filename": "django_countries-4.6.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "6f4edf4958ce02f582586d7ac1ca963c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 659333, "upload_time": "2017-09-22T02:08:33", "url": "https://files.pythonhosted.org/packages/99/27/0fc08b2d885822f4258cfce3079f144d83ac9beac3ad8cef877fce77b88c/django_countries-4.6.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a1d018a45eda7a198accc7dda7c27665", "sha256": "7a56ba694dad81d2520848903ac09bc140737a494e70c689599b53f11ab03acd" }, "downloads": -1, "filename": "django-countries-4.6.2.tar.gz", "has_sig": true, "md5_digest": "a1d018a45eda7a198accc7dda7c27665", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 447263, "upload_time": "2017-09-22T02:08:36", "url": "https://files.pythonhosted.org/packages/58/35/dbf97b51a04727743e163d0e97c7898bf662c4fcb3c8715919e932d039f5/django-countries-4.6.2.tar.gz" } ], "5.0": [ { "comment_text": "", "digests": { "md5": "aa0cb16c9d0a1341c5cf8012163574f8", "sha256": "6af8d38d0482e74369b314882c412a3006d4f7125a98d554b3d7a473d57aa2ab" }, "downloads": -1, "filename": "django_countries-5.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "aa0cb16c9d0a1341c5cf8012163574f8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 661365, "upload_time": "2017-10-09T23:35:50", "url": "https://files.pythonhosted.org/packages/8c/ea/84ccdf17b4c526ade615d3465b03b0a57b866b72aca204fe7cdb6e2f27c1/django_countries-5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9d28aef483dbe662e486df11391d897d", "sha256": "f9acf49a1d6a5a47dbe96833d2c8fd3680c480f5c4cbc05c3a4028554cc4415c" }, "downloads": -1, "filename": "django-countries-5.0.tar.gz", "has_sig": true, "md5_digest": "9d28aef483dbe662e486df11391d897d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 444232, "upload_time": "2017-10-09T23:35:53", "url": "https://files.pythonhosted.org/packages/f1/73/becb562050bf3be7b47cbeb88f745d49242bed80bdd20397b8e8369170f8/django-countries-5.0.tar.gz" } ], "5.1": [ { "comment_text": "", "digests": { "md5": "bf1f0cded694ac084a9ff25ebe03b19c", "sha256": "fb7954650e5457f5e7f21f26f37d400585f23757d308ab5d9a704c19dc7d243b" }, "downloads": -1, "filename": "django_countries-5.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "bf1f0cded694ac084a9ff25ebe03b19c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 671612, "upload_time": "2018-01-30T01:01:48", "url": "https://files.pythonhosted.org/packages/a4/9d/07ff8603fb1a48b0317feb858157b4e2a799654c4cdbdf294740ff177e72/django_countries-5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8c7e503b6a06586d2b9568996e08358e", "sha256": "ff5ea77a17a2fb901f37fb756b12af38a3d9fab714ae2912beee8c9b68bb53b2" }, "downloads": -1, "filename": "django-countries-5.1.tar.gz", "has_sig": true, "md5_digest": "8c7e503b6a06586d2b9568996e08358e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 449394, "upload_time": "2018-01-30T01:01:52", "url": "https://files.pythonhosted.org/packages/e8/77/e5fff102c5175b1f43042f0adeb1851d8dc0d251647d63fabc3158a3de01/django-countries-5.1.tar.gz" } ], "5.1.1": [ { "comment_text": "", "digests": { "md5": "6598b9ec03b7358e716c6043a040d3d0", "sha256": "3c7cfeb396150b899116e46b5c6109e13b880db96792f9d5d4a953a9b9085111" }, "downloads": -1, "filename": "django_countries-5.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6598b9ec03b7358e716c6043a040d3d0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 682896, "upload_time": "2018-01-31T08:35:31", "url": "https://files.pythonhosted.org/packages/ae/c5/6a9ea5b339fc37638d5fb4df0bd2d8e3849498a9dfbf0e9ce0388aca262b/django_countries-5.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f8db03934fcaa14062bc2e9ae6382e8f", "sha256": "f7f450fb58cdf125daa15dd49a1f578337f69ee7df546d36f135207c515a9c6e" }, "downloads": -1, "filename": "django-countries-5.1.1.tar.gz", "has_sig": false, "md5_digest": "f8db03934fcaa14062bc2e9ae6382e8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 457184, "upload_time": "2018-01-31T08:35:26", "url": "https://files.pythonhosted.org/packages/0a/1e/1ef97563a0018707488076865023032073c4a7cf47ee0e12da2259dfcba1/django-countries-5.1.1.tar.gz" } ], "5.2": [ { "comment_text": "", "digests": { "md5": "ba6c775a74a58008233ba2cd3287100b", "sha256": "9f3323862590aac899c8f2b0b83583fe88a747bdc285008ef0330e42b91b1384" }, "downloads": -1, "filename": "django_countries-5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ba6c775a74a58008233ba2cd3287100b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 684070, "upload_time": "2018-03-08T22:47:07", "url": "https://files.pythonhosted.org/packages/3d/15/a57969f35edf7a1be4ef6f7574176f8554c80b09fd55c5ffcb3a38ef78f5/django_countries-5.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1ae0a89a45ac11b56b9629f33769e342", "sha256": "00b24c5d798e076e9168c9cf28c7c315cff8a9620908800f9ef5bae1f8a20688" }, "downloads": -1, "filename": "django-countries-5.2.tar.gz", "has_sig": false, "md5_digest": "1ae0a89a45ac11b56b9629f33769e342", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 451754, "upload_time": "2018-03-08T22:47:03", "url": "https://files.pythonhosted.org/packages/7b/90/64cfd980cec40b2dcd43f4161c22616053e6050ee47118fd0c830189f5f1/django-countries-5.2.tar.gz" } ], "5.3": [ { "comment_text": "", "digests": { "md5": "409a442e4ca978ac3789ddb84b7f5d66", "sha256": "4d22fca8536e7c6c1f134fbaf861a953a94fde0572486bdc199b9f1844acdb49" }, "downloads": -1, "filename": "django_countries-5.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "409a442e4ca978ac3789ddb84b7f5d66", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 700989, "upload_time": "2018-04-19T23:10:37", "url": "https://files.pythonhosted.org/packages/09/84/b6a91736da0c17741b1a2fdb26e99d1ffe013b6a99b7eaa669495ef40f1a/django_countries-5.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3240f57a43e9fac2d37e7c81ca64847c", "sha256": "4b296e18010e2d97d69f98247511ab5490e8a5c4823da29f06a09de0011dbd17" }, "downloads": -1, "filename": "django-countries-5.3.tar.gz", "has_sig": false, "md5_digest": "3240f57a43e9fac2d37e7c81ca64847c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 468547, "upload_time": "2018-04-19T23:10:33", "url": "https://files.pythonhosted.org/packages/23/12/d3b77cdae0d0b703337ad281e6241fbeb6dbc7e6e75eef30240d2067c988/django-countries-5.3.tar.gz" } ], "5.3.1": [ { "comment_text": "", "digests": { "md5": "8c6fcab9d12e8753fc5ef6f3afc0ffa8", "sha256": "d906112bb66ee1e07be9644ed700d0644612c56df777e6e3af996a979a9866a2" }, "downloads": -1, "filename": "django_countries-5.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8c6fcab9d12e8753fc5ef6f3afc0ffa8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 710193, "upload_time": "2018-06-11T21:16:13", "url": "https://files.pythonhosted.org/packages/a1/d8/1020db2b17cab5f8b1d83fcd8c7ff38d57bdc3c540358151f446cc09872a/django_countries-5.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "98e994fef718ab8f94eb49aae3a0371e", "sha256": "b141cba3adce58d7c3f1422be55f0b4deb265d4fdd7524e0f6ad6ab35299664f" }, "downloads": -1, "filename": "django-countries-5.3.1.tar.gz", "has_sig": false, "md5_digest": "98e994fef718ab8f94eb49aae3a0371e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 473884, "upload_time": "2018-06-11T21:16:10", "url": "https://files.pythonhosted.org/packages/e7/30/d7e6211a97cbd811c625b3dd06504534587b48b6463c24f36b7bbac431a2/django-countries-5.3.1.tar.gz" } ], "5.3.2": [ { "comment_text": "", "digests": { "md5": "96b10f61f0d54be02a9776ca77058a41", "sha256": "2f684e2c2b8afdfd80137c8bcbb2d75f62a4a7863101cc62b4d84d3c9f27fdab" }, "downloads": -1, "filename": "django_countries-5.3.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "96b10f61f0d54be02a9776ca77058a41", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 704051, "upload_time": "2018-08-27T04:43:41", "url": "https://files.pythonhosted.org/packages/53/9a/010dde87cca2256616b54fba3b2cdd8cf54e08dcf85536ef56e5b9472bc9/django_countries-5.3.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6a36b8e3e296256c17b5f0d4b634159d", "sha256": "74ebe919aeccea818dafea17b0b243fb1280c55226cb315b9622f0c0416536d2" }, "downloads": -1, "filename": "django-countries-5.3.2.tar.gz", "has_sig": false, "md5_digest": "6a36b8e3e296256c17b5f0d4b634159d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 466138, "upload_time": "2018-08-27T04:43:38", "url": "https://files.pythonhosted.org/packages/6e/a3/43e18c840c1f52511c28baf7b5e2fb204c568f141fbf49ca321b47616357/django-countries-5.3.2.tar.gz" } ], "5.3.3": [ { "comment_text": "", "digests": { "md5": "ac98d6ef26b9cdadc52cf95f12586307", "sha256": "e4eaaec9bddb9365365109f833d1fd0ecc0cfee3348bf5441c0ccefb2d6917cd" }, "downloads": -1, "filename": "django_countries-5.3.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ac98d6ef26b9cdadc52cf95f12586307", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 706001, "upload_time": "2019-02-15T20:02:33", "url": "https://files.pythonhosted.org/packages/26/c9/05a5718a403eb8e7f4d7164be8ab42e72a1d37ea67b15b5581ca3b3a6b11/django_countries-5.3.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d64c22a5eaf463b041828cec4438d778", "sha256": "5307a61172eee5740720e44ea08721858b7d8bf8509ec7701ccd7a8d21120b9a" }, "downloads": -1, "filename": "django-countries-5.3.3.tar.gz", "has_sig": false, "md5_digest": "d64c22a5eaf463b041828cec4438d778", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 461831, "upload_time": "2019-02-15T20:02:29", "url": "https://files.pythonhosted.org/packages/0c/7d/b0f497c16650d09022c4db2c53a8643742062c4ffc85cd3129e34f2e2c6e/django-countries-5.3.3.tar.gz" } ], "5.4": [ { "comment_text": "", "digests": { "md5": "aecadb33a0f8b9310e18ae8c0c165f30", "sha256": "fdcbbd6cd4740614e07b48f30714a57b95033913108d4a878b5ac73dbf3708e0" }, "downloads": -1, "filename": "django_countries-5.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aecadb33a0f8b9310e18ae8c0c165f30", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 763537, "upload_time": "2019-08-10T13:57:51", "url": "https://files.pythonhosted.org/packages/a0/97/627371c034e38dafd99de49030db709888260ba4e12ae3e430edd4d2523e/django_countries-5.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5852b99da0955b40c734eb3f46ce73ad", "sha256": "73476e80877936e072cf0935109590def986d528083c9c1a99c0291f68f7d08a" }, "downloads": -1, "filename": "django-countries-5.4.tar.gz", "has_sig": false, "md5_digest": "5852b99da0955b40c734eb3f46ce73ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 492797, "upload_time": "2019-08-10T13:57:48", "url": "https://files.pythonhosted.org/packages/f0/c9/6cda79ac02083d45b23828badad6f85a334590b33cb5530e405b3d5b5ddf/django-countries-5.4.tar.gz" } ], "5.5": [ { "comment_text": "", "digests": { "md5": "722b005a976529674c863b32f58ad3d5", "sha256": "22e96236101783cfe5222ef5174972242a7e8176336d119a4dc111aedce35897" }, "downloads": -1, "filename": "django_countries-5.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "722b005a976529674c863b32f58ad3d5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 764917, "upload_time": "2019-09-11T00:44:17", "url": "https://files.pythonhosted.org/packages/be/84/b32a3cc24f3dfee1a16b5cdcfdbf4fe0c5ead2a12616f9feeb2bd3e57392/django_countries-5.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0e7d67f1573c720e11ffb6f618282738", "sha256": "1cefad9ec804d6a0318b91c5394b5aef00336755928f44d0a6420507719d65c8" }, "downloads": -1, "filename": "django-countries-5.5.tar.gz", "has_sig": false, "md5_digest": "0e7d67f1573c720e11ffb6f618282738", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 476957, "upload_time": "2019-09-11T00:44:21", "url": "https://files.pythonhosted.org/packages/fa/23/533882269b59706abc1ab0bccc5d24d25d58554b70f68be86c5947562718/django-countries-5.5.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "722b005a976529674c863b32f58ad3d5", "sha256": "22e96236101783cfe5222ef5174972242a7e8176336d119a4dc111aedce35897" }, "downloads": -1, "filename": "django_countries-5.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "722b005a976529674c863b32f58ad3d5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 764917, "upload_time": "2019-09-11T00:44:17", "url": "https://files.pythonhosted.org/packages/be/84/b32a3cc24f3dfee1a16b5cdcfdbf4fe0c5ead2a12616f9feeb2bd3e57392/django_countries-5.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0e7d67f1573c720e11ffb6f618282738", "sha256": "1cefad9ec804d6a0318b91c5394b5aef00336755928f44d0a6420507719d65c8" }, "downloads": -1, "filename": "django-countries-5.5.tar.gz", "has_sig": false, "md5_digest": "0e7d67f1573c720e11ffb6f618282738", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 476957, "upload_time": "2019-09-11T00:44:21", "url": "https://files.pythonhosted.org/packages/fa/23/533882269b59706abc1ab0bccc5d24d25d58554b70f68be86c5947562718/django-countries-5.5.tar.gz" } ] }