{ "info": { "author": "James Pic,Dominick Rivard,Alexey Evseev", "author_email": "jamespic@gmail.com, dominick.rivard@gmail.com, myhappydo@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", "Programming Language :: Python :: 3", "Topic :: Internet :: WWW/HTTP", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. image:: https://secure.travis-ci.org/yourlabs/django-cities-light.png?branch=master\n :target: http://travis-ci.org/yourlabs/django-cities-light\n.. image:: https://pypip.in/d/django-cities-light/badge.png\n :target: https://crate.io/packages/django-cities-light\n.. image:: https://pypip.in/v/django-cities-light/badge.png\n :target: https://crate.io/packages/django-cities-light\n.. image:: https://codecov.io/github/yourlabs/django-cities-light/coverage.svg?branch=stable/3.x.x\n :target: https://codecov.io/github/yourlabs/django-cities-light?branch=stable/3.x.x\n\ndjango-cities-light -- *Simple django-cities alternative*\n=========================================================\n\nThis add-on provides models and commands to import country, region/state, and\ncity data in your database.\n\nThe data is pulled from `GeoNames\n`_ and contains cities, regions/states and countries.\n\nSpatial query support is not required by this application.\n\nThis application is very simple and is useful if you want to make a simple\naddress book for example. If you intend to build a fully featured spatial\ndatabase, you should use\n`django-cities\n`_.\n\nRequirements:\n\n- Python 2.7 or 3.3,\n- Django >= 1.8\n- MySQL or PostgreSQL or SQLite.\n\nYes, for some reason, code that used to work on MySQL (not without pain xD)\ndoes not work anymore. So we're now using django.db.transaction.atomic which\ncomes from Django 1.6 just to support MySQL quacks.\n\nUpgrade\n-------\n\nSee CHANGELOG.\n\nInstallation\n------------\n\nInstall django-cities-light::\n\n pip install django-cities-light\n\nOr the development version::\n\n pip install -e git+git@github.com:yourlabs/django-cities-light.git#egg=cities_light\n\nAdd `cities_light` to your `INSTALLED_APPS`.\n\nConfigure filters to exclude data you don't want, ie.::\n\n CITIES_LIGHT_TRANSLATION_LANGUAGES = ['fr', 'en']\n CITIES_LIGHT_INCLUDE_COUNTRIES = ['FR']\n CITIES_LIGHT_INCLUDE_CITY_TYPES = ['PPL', 'PPLA', 'PPLA2', 'PPLA3', 'PPLA4', 'PPLC', 'PPLF', 'PPLG', 'PPLL', 'PPLR', 'PPLS', 'STLMT',]\n\nNow, run migrations, it will only create tables for models that are not\ndisabled::\n\n ./manage.py migrate\n\nData import/update\n------------------\n\nFinally, populate your database with command::\n\n ./manage.py cities_light\n\nThis command is well documented, consult the help with::\n\n ./manage.py help cities_light\n\nBy default, update procedure attempts to update all fields, including Country/Region/City slugs. But there is an option to keep them intact::\n\n ./manage.py cities_light --keep-slugs\n\n\nUsing fixtures\n--------------\n\nGeonames.org is updated on daily basis and its full import is quite slow, so\nif you want to import the same data multiple times (for example on different\nservers) it is convenient to use fixtures with the helper management command::\n\n ./manage.py cities_light_fixtures dump\n ./manage.py cities_light_fixtures load\n\nTo reduce space, JSON fixtures are compressed with bzip2 and can be fetched\nfrom any HTTP server or local filesystem.\n\nConsult the help with::\n\n ./manage.py help cities_light_fixtures\n\nDevelopment\n-----------\n\nCreate development virtualenv (you need to have tox installed in your base system)::\n\n tox -e dev\n source .tox/dev/bin/activate\n\nThen run the full import::\n\n test_project/manage.py migrate\n test_project/manage.py cities_light\n\nThere are several environment variables which affect project settings (like DB_ENGINE and CI), you can find them all in test_project/settings.py.\n\nTo run the test suite you need to have postgresql or mysql installed with passwordless login, or just use sqlite. Otherwise the tests which try to create/drop database will fail.\n\nRunning the full test suite::\n\n tox\n\nTo run the tests in specific environment use the following command::\n\n tox -e py27-django18-sqlite\n\nAnd to run one specific test use this one::\n\n tox -e py27-django18-sqlite -- cities_light/tests/test_form.py::FormTestCase::testCountryFormNameAndContinentAlone\n\nTo run it even faster, you can switch to specific tox virtualenv::\n\n source .tox/py27-django18-sqlite/bin/activate\n CI=true test_project/manage.py test cities_light.tests.test_form.FormTestCase.testCountryFormNameAndContinentAlone\n\nIf you want to build the docs, use the following steps::\n\n source .tox/dev/bin/activate\n cd docs\n make html\n\nIf you are ready to send a patch, please read YourLabs guidelines: https://github.com/yourlabs/community/blob/master/docs/guidelines.rst\n\nResources\n---------\n\nYou could subscribe to the mailing list ask questions or just be informed of\npackage updates.\n\n- `Mailing list graciously hosted\n `_ by `Google\n `_\n- For **Security** issues, please contact yourlabs-security@googlegroups.com\n- `Git graciously hosted\n `_ by `GitHub\n `_,\n- `Documentation graciously hosted\n `_ by `RTFD\n `_,\n- `Package graciously hosted\n `_ by `PyPi\n `_,\n- `Continuous integration graciously hosted\n `_ by `Travis-ci\n `_\n- `**Online paid support** provided via HackHands\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/yourlabs/django-cities-light", "keywords": "django cities countries postal codes", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "django-cities-light", "package_url": "https://pypi.org/project/django-cities-light/", "platform": "", "project_url": "https://pypi.org/project/django-cities-light/", "project_urls": { "Homepage": "https://github.com/yourlabs/django-cities-light" }, "release_url": "https://pypi.org/project/django-cities-light/3.5.0/", "requires_dist": null, "requires_python": "", "summary": "Simple alternative to django-cities", "version": "3.5.0" }, "last_serial": 4292382, "releases": { "0.19": [], "1.0": [ { "comment_text": "", "digests": { "md5": "b3b89f9ff7fd7f6df0db7182e56510a5", "sha256": "1c9c8d9a1144563fa1b904eacea21adbc3ed73e66f3581ec427bb563ff91014e" }, "downloads": -1, "filename": "django-cities-light-1.0.tar.gz", "has_sig": false, "md5_digest": "b3b89f9ff7fd7f6df0db7182e56510a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10544, "upload_time": "2012-05-11T09:39:07", "url": "https://files.pythonhosted.org/packages/43/27/96c5a83fd6a0e5e257dbc56700ff176aa4dccad4a011d5d019d9844d28c5/django-cities-light-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "0eb92340106de0698b0b284590921b66", "sha256": "136658873c2fa9298c0b3d55aff29c1d202a4a0d959ded0e91ef9d3d53af4790" }, "downloads": -1, "filename": "django-cities-light-1.1.tar.gz", "has_sig": false, "md5_digest": "0eb92340106de0698b0b284590921b66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12202, "upload_time": "2012-05-11T10:20:50", "url": "https://files.pythonhosted.org/packages/8d/7b/056859d531f30ef3d9ecbb8d1d43cfc2846ba63e39786b4900435e0dc978/django-cities-light-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "1d660aac18878890d12a9328f69f7dd1", "sha256": "0b78fbb0547abf5bedce2a7bef0739e47c39f2f0b4a2a262b7cc06e16ef9f3aa" }, "downloads": -1, "filename": "django-cities-light-1.2.tar.gz", "has_sig": false, "md5_digest": "1d660aac18878890d12a9328f69f7dd1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11366, "upload_time": "2012-05-11T11:48:34", "url": "https://files.pythonhosted.org/packages/01/58/d0c2f219df88450badf1e9814420db78dc8d564767e886500ce9324326fe/django-cities-light-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "72f2c71fa061af5a59fcef4fa4bb3541", "sha256": "20d3d483f44f14fc84746d84d0e14def9abcace4c4c47e07a37c299f1b59b7cf" }, "downloads": -1, "filename": "django-cities-light-1.3.tar.gz", "has_sig": false, "md5_digest": "72f2c71fa061af5a59fcef4fa4bb3541", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12215, "upload_time": "2012-05-20T08:55:54", "url": "https://files.pythonhosted.org/packages/c7/c5/43e02def3c938cc609120d1e94c47182111765c0c308e0e7049d89c82b83/django-cities-light-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "510b5caecb95c850bab3aaf0fc7e0a9b", "sha256": "4cf70049635da0816bed56679c8f907544afe8610519d5f9d87ffa285363828c" }, "downloads": -1, "filename": "django-cities-light-1.4.tar.gz", "has_sig": false, "md5_digest": "510b5caecb95c850bab3aaf0fc7e0a9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12302, "upload_time": "2012-05-20T21:36:40", "url": "https://files.pythonhosted.org/packages/ee/cb/0ca40010b8994e655c44aa5bc240c342052a87b1afa5d42ce10d9c20f24a/django-cities-light-1.4.tar.gz" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "4d351685d1a560614eae6f6987d14ed4", "sha256": "6eb8bc31ccf6b543e82920f97e3175ffede4ca47937168329f1dea51bdd7347a" }, "downloads": -1, "filename": "django-cities-light-1.5.tar.gz", "has_sig": false, "md5_digest": "4d351685d1a560614eae6f6987d14ed4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13190, "upload_time": "2012-05-22T10:53:44", "url": "https://files.pythonhosted.org/packages/36/0c/7367d9a464fe6a2c3d7283becbd0e205882027ce1434b74916213952e84a/django-cities-light-1.5.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "d964d16b032b3278ed87d5480893e279", "sha256": "07010f67f405042e5a2fa6659ac24709211d40c72b300ba2be41fd305319c2ac" }, "downloads": -1, "filename": "django-cities-light-1.5.1.tar.gz", "has_sig": false, "md5_digest": "d964d16b032b3278ed87d5480893e279", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13560, "upload_time": "2012-05-24T13:20:16", "url": "https://files.pythonhosted.org/packages/62/ee/59d8a2cce05212b04474d17ffbb4058e3bf478dbd0b77c360b647b99bcd2/django-cities-light-1.5.1.tar.gz" } ], "1.7": [ { "comment_text": "", "digests": { "md5": "4ffb9c1e1ed87040d29b4b2ece57fc2b", "sha256": "a9589ea117cf526fbc9d657ab8044f7eb1c7c4c386af1e3d09c3da5bad2c10c6" }, "downloads": -1, "filename": "django-cities-light-1.7.tar.gz", "has_sig": false, "md5_digest": "4ffb9c1e1ed87040d29b4b2ece57fc2b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13666, "upload_time": "2012-05-28T14:41:11", "url": "https://files.pythonhosted.org/packages/30/2f/c0c5ba3d0c42edf395ef05764faf288071f4c066f1f956e84618ce926b3f/django-cities-light-1.7.tar.gz" } ], "1.7rc2": [ { "comment_text": "", "digests": { "md5": "306c22e4dc029af7235bac0dad7fd999", "sha256": "76f63f0f8d2f5455e5c53ab9ae42636c1477613efeae335963e62710c6727ec3" }, "downloads": -1, "filename": "django-cities-light-1.7rc2.tar.gz", "has_sig": false, "md5_digest": "306c22e4dc029af7235bac0dad7fd999", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13759, "upload_time": "2012-06-05T13:30:52", "url": "https://files.pythonhosted.org/packages/99/fe/8339afbe1c870602b05dcfd687e8209bb1e6b1f174a192d1fb305b970cc9/django-cities-light-1.7rc2.tar.gz" } ], "1.8": [ { "comment_text": "", "digests": { "md5": "907ccfb7dfe94a45ce8cd3141f92c812", "sha256": "188f825b2522d1e515a99e36fde17afdb493dfda08fa00aa846cfe5152d92306" }, "downloads": -1, "filename": "django-cities-light-1.8.tar.gz", "has_sig": false, "md5_digest": "907ccfb7dfe94a45ce8cd3141f92c812", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13750, "upload_time": "2012-06-05T13:33:29", "url": "https://files.pythonhosted.org/packages/70/c3/ff6f37a3bf48c2c7e338c9d64b6ff718fe85e610417e326a7cc2a6d56ae8/django-cities-light-1.8.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "f389939d7502c2c7bb4c08bff7ffc526", "sha256": "c1980aeeb356b2af514f72d9976b35b77e1dcf3902a786f53beb02ba87a837ed" }, "downloads": -1, "filename": "django-cities-light-1.9.0.tar.gz", "has_sig": false, "md5_digest": "f389939d7502c2c7bb4c08bff7ffc526", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19576, "upload_time": "2012-06-08T20:41:49", "url": "https://files.pythonhosted.org/packages/cd/8d/29ba79708f8a29553dc508413d958b928ed5a6e155fab847d90156b0d845/django-cities-light-1.9.0.tar.gz" } ], "1.9.1": [ { "comment_text": "", "digests": { "md5": "ff2bc09dfe518b01aa3ab13c724577f4", "sha256": "8af1d199fd7fa00d7aea1cf45a0cc793a528de5c7094da6453a394aa725c6130" }, "downloads": -1, "filename": "django-cities-light-1.9.1.tar.gz", "has_sig": false, "md5_digest": "ff2bc09dfe518b01aa3ab13c724577f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18376, "upload_time": "2012-06-10T13:08:31", "url": "https://files.pythonhosted.org/packages/28/3c/18468705dcc8b44b51871f8f03e4f426d19b31d8489e2672f03fd84b040b/django-cities-light-1.9.1.tar.gz" } ], "1.9.2": [ { "comment_text": "", "digests": { "md5": "827c87363a1f9f5c6d995913744ca5c9", "sha256": "c6f70b1c7c7ce26931cb6047181d673e9b14196b357bf28581b0bb4d6c120ea8" }, "downloads": -1, "filename": "django-cities-light-1.9.2.tar.gz", "has_sig": false, "md5_digest": "827c87363a1f9f5c6d995913744ca5c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20159, "upload_time": "2012-06-12T10:59:02", "url": "https://files.pythonhosted.org/packages/54/a8/0792303654bd9ed67b918a0b5977581bdaf393dfad13f52182612d61a64a/django-cities-light-1.9.2.tar.gz" } ], "1.9.3": [ { "comment_text": "", "digests": { "md5": "f73c304d3037a824221d7bfd784641d6", "sha256": "f2323a750b69c6cf47c00f53a568e5a59450fa98eeb3aa5316ccacea97e12199" }, "downloads": -1, "filename": "django-cities-light-1.9.3.tar.gz", "has_sig": false, "md5_digest": "f73c304d3037a824221d7bfd784641d6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20075, "upload_time": "2012-06-12T15:03:17", "url": "https://files.pythonhosted.org/packages/26/6f/d263e3d277745a710f7fd55702b311d31e1c0ba1076741c319304572ad69/django-cities-light-1.9.3.tar.gz" } ], "1.9.4": [ { "comment_text": "", "digests": { "md5": "f3ebff0379c18cf1fac23b1522f743e3", "sha256": "f473fc791719d18e1c3093a1ed43bf94bdd0c622f0adbc836cc9f7f07ff94c7e" }, "downloads": -1, "filename": "django-cities-light-1.9.4.tar.gz", "has_sig": false, "md5_digest": "f3ebff0379c18cf1fac23b1522f743e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20468, "upload_time": "2012-06-25T17:31:20", "url": "https://files.pythonhosted.org/packages/34/41/6fd10eafa01f5deba0eb3c28244ea24ad0960b610d246703e63cdbb2049e/django-cities-light-1.9.4.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "ee6a468600a721b463f48bc3f80bd406", "sha256": "aeaa43e7c83d6aa03280fda666a47a32a6705ec500715cb5a8cfee5f283d2d69" }, "downloads": -1, "filename": "django-cities-light-2.0.0.tar.gz", "has_sig": false, "md5_digest": "ee6a468600a721b463f48bc3f80bd406", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19438, "upload_time": "2012-07-10T17:27:42", "url": "https://files.pythonhosted.org/packages/3a/d4/b5e190927b22d13e65e37b055bc3d40baed60c16b64cb67ecbe1f636362f/django-cities-light-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "b088eab820634838eafabb9c4aa23610", "sha256": "e43d6b62f2ecf6d6af565ddf17909fbeac14c0814069d7c3d277eac207d07fd4" }, "downloads": -1, "filename": "django-cities-light-2.0.1.tar.gz", "has_sig": false, "md5_digest": "b088eab820634838eafabb9c4aa23610", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19687, "upload_time": "2012-07-10T20:01:00", "url": "https://files.pythonhosted.org/packages/a0/39/40fc274fa46e58ac2b74b5a3318c960621fdfee6643c1d51fccf8317677c/django-cities-light-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "f28dda14649cdf92671cd011f3de8e92", "sha256": "e8e686751a7d3e9efb29265a56420346f3da703b227f668a6297d9d5e1db39be" }, "downloads": -1, "filename": "django-cities-light-2.0.2.tar.gz", "has_sig": false, "md5_digest": "f28dda14649cdf92671cd011f3de8e92", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19758, "upload_time": "2012-07-12T19:33:47", "url": "https://files.pythonhosted.org/packages/0f/e1/f6eefff9347000d00d0fd7d4b6c7406a1a421a3900e4fc4d9516d87a9ce9/django-cities-light-2.0.2.tar.gz" } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "a146a70a0809da3ebe6bff507e2ec503", "sha256": "be7d9f3343bc48a23fcb714728b86e1147126cfa0a86d4696a7dcca1b5a2e16e" }, "downloads": -1, "filename": "django-cities-light-2.0.4.tar.gz", "has_sig": false, "md5_digest": "a146a70a0809da3ebe6bff507e2ec503", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20082, "upload_time": "2012-08-22T19:23:28", "url": "https://files.pythonhosted.org/packages/df/44/314935d1ec4a652017d9f761349e3e53ec90cc69cf18644fd2a7098e09c4/django-cities-light-2.0.4.tar.gz" } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "55924f0e9e700176221fdf961724c5ef", "sha256": "5121cb65e7f8126d28db84d28932256e0deed5e22c5f3e73372469337a7417e9" }, "downloads": -1, "filename": "django-cities-light-2.0.5.tar.gz", "has_sig": false, "md5_digest": "55924f0e9e700176221fdf961724c5ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18897, "upload_time": "2012-10-26T09:18:19", "url": "https://files.pythonhosted.org/packages/60/81/debb2b033866662234b37bc7461260558049c50ca28b0fe518d9b7151987/django-cities-light-2.0.5.tar.gz" } ], "2.0.6": [ { "comment_text": "", "digests": { "md5": "db6e2564e60ff9e341a0b586fc9c6697", "sha256": "65d2f009a5e437b0ce81b822e1f6283063455e7d1d2412bbbad8c6e3d6bed210" }, "downloads": -1, "filename": "django-cities-light-2.0.6.tar.gz", "has_sig": false, "md5_digest": "db6e2564e60ff9e341a0b586fc9c6697", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19049, "upload_time": "2012-10-26T10:46:01", "url": "https://files.pythonhosted.org/packages/10/96/f58331fd4402b0b8341c2343d78712adf6ee501ef7aabc044e9a9efe5b83/django-cities-light-2.0.6.tar.gz" } ], "2.0.7": [ { "comment_text": "", "digests": { "md5": "e9009fb20553b184a30ddce5313dec90", "sha256": "1ea40f58ccf71a54c232722cff40c4043f62f8640613231e1ddfb0cc27a23e1d" }, "downloads": -1, "filename": "django-cities-light-2.0.7.tar.gz", "has_sig": false, "md5_digest": "e9009fb20553b184a30ddce5313dec90", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19103, "upload_time": "2012-10-26T18:10:57", "url": "https://files.pythonhosted.org/packages/76/8b/7b3e65e6037f10a94969fe4f4dd2fb0690898d6b1996c0da2a4bf12f2e9c/django-cities-light-2.0.7.tar.gz" } ], "2.0.8": [ { "comment_text": "", "digests": { "md5": "1e45bd6983600b251f42e2224c46e8bb", "sha256": "2c3328ffc488daef31b221aa63b576f0ebbaa3c8205b24fd017224ab1edf8321" }, "downloads": -1, "filename": "django-cities-light-2.0.8.tar.gz", "has_sig": false, "md5_digest": "1e45bd6983600b251f42e2224c46e8bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19765, "upload_time": "2013-06-26T20:02:16", "url": "https://files.pythonhosted.org/packages/38/9e/1f884afa0c2c22bd3c45cd3a49c7fb027684d23711b7197696c05ba32058/django-cities-light-2.0.8.tar.gz" } ], "2.0.9": [ { "comment_text": "", "digests": { "md5": "78efada71b3ada0844e0ce86f7536d8f", "sha256": "fcd2918b94f4ad9d9a3d286a061d8759d5f895468eb45d2a335a93f1603e5534" }, "downloads": -1, "filename": "django-cities-light-2.0.9.tar.gz", "has_sig": false, "md5_digest": "78efada71b3ada0844e0ce86f7536d8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20350, "upload_time": "2013-07-30T09:42:00", "url": "https://files.pythonhosted.org/packages/01/fc/5473aed2709df9c95ac564b4d6211b316fa3ccf2169be2dd8c973bc73087/django-cities-light-2.0.9.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "c28b6cb9717087d099d7c5416262f158", "sha256": "6b638f06e1b74d2b094ab9e19d2eb5a280a2f7a59d1b8fbc4861d7bf258c08b0" }, "downloads": -1, "filename": "django-cities-light-2.1.0.tar.gz", "has_sig": false, "md5_digest": "c28b6cb9717087d099d7c5416262f158", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21294, "upload_time": "2013-09-27T10:52:14", "url": "https://files.pythonhosted.org/packages/8a/41/5ddd15301997c5ae146fe3d8bc0829ec8e3f5cd83792ba51186350b9698e/django-cities-light-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "ccace4b2332ed23ae85a77b4fdf045b2", "sha256": "51f5e4cf716bdeb1be9cc1f3aae839094ebe794ffd33355345e4b2068907d81b" }, "downloads": -1, "filename": "django-cities-light-2.1.1.tar.gz", "has_sig": false, "md5_digest": "ccace4b2332ed23ae85a77b4fdf045b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21302, "upload_time": "2013-09-30T09:45:00", "url": "https://files.pythonhosted.org/packages/16/7d/3c34d07732dbd8f9a7040ff522c574de98b710cc39da55c25bb6d9c53ec3/django-cities-light-2.1.1.tar.gz" } ], "2.1.10": [ { "comment_text": "", "digests": { "md5": "9a1e5ec54492f99b01d65787c3426dc1", "sha256": "0b65d69b6d29f93d515d9bde65a77bfc91e292e110c9343c707157cfab4887f6" }, "downloads": -1, "filename": "django-cities-light-2.1.10.tar.gz", "has_sig": false, "md5_digest": "9a1e5ec54492f99b01d65787c3426dc1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26860, "upload_time": "2014-01-28T10:01:59", "url": "https://files.pythonhosted.org/packages/d3/7e/b13eeacc7f505f96f1380585688157df430792385f21b253b1829747ba2f/django-cities-light-2.1.10.tar.gz" } ], "2.1.11": [ { "comment_text": "", "digests": { "md5": "99d65a68e77d783d645ca4dd96efb950", "sha256": "f6e255be35da61817f38f93dec29d9e8248c7a1cc53198a7d966360361b719d9" }, "downloads": -1, "filename": "django-cities-light-2.1.11.tar.gz", "has_sig": false, "md5_digest": "99d65a68e77d783d645ca4dd96efb950", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26971, "upload_time": "2014-02-02T01:36:23", "url": "https://files.pythonhosted.org/packages/bf/18/f665be486e8c147fb574b427e26da50bc2bb408e18e209e48e0c5b027296/django-cities-light-2.1.11.tar.gz" } ], "2.1.12": [ { "comment_text": "", "digests": { "md5": "050022078fbeff78939a2ab97fb4cebe", "sha256": "efd3ccec78beb9bc1a9bd86f599e8d2a6d69da06cf361565e1127cb2ee02e05e" }, "downloads": -1, "filename": "django-cities-light-2.1.12.tar.gz", "has_sig": false, "md5_digest": "050022078fbeff78939a2ab97fb4cebe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27124, "upload_time": "2014-02-23T23:11:20", "url": "https://files.pythonhosted.org/packages/36/c7/2e32d59c02d81ee249c02d5d37e7e4955bf6b103959cd2350336925a9dc9/django-cities-light-2.1.12.tar.gz" } ], "2.1.13": [ { "comment_text": "", "digests": { "md5": "3cf1f9223bee0cb6b8c3268f2efc7220", "sha256": "56a8f3404aad7ed60e1be6c2cb0410d3bfb115547498b99349945ca6728f9f92" }, "downloads": -1, "filename": "django-cities-light-2.1.13.tar.gz", "has_sig": false, "md5_digest": "3cf1f9223bee0cb6b8c3268f2efc7220", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27191, "upload_time": "2014-02-27T19:15:13", "url": "https://files.pythonhosted.org/packages/30/5b/51b7c41c1985a9ba4ef57b8a4c65fe54dc7b8e8eaf073b5df811cf1bfd96/django-cities-light-2.1.13.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "bf450044a31485fae636c91074fbb084", "sha256": "04be5c55e9ede5c105acfa0775af9f6125aa6694cec0497f00a9df7dbf434f4e" }, "downloads": -1, "filename": "django-cities-light-2.1.2.tar.gz", "has_sig": false, "md5_digest": "bf450044a31485fae636c91074fbb084", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20541, "upload_time": "2013-11-02T17:18:26", "url": "https://files.pythonhosted.org/packages/ee/bf/de211b382c9040149363ece6b3a219c0c4f98fb8614f32bb1d9e9ef5e2c9/django-cities-light-2.1.2.tar.gz" } ], "2.1.3": [ { "comment_text": "", "digests": { "md5": "2dccea57d318f68446909f7f4b065e18", "sha256": "3cc4bfc5ef62b2e3bc35b7e05eabc2c00f7cf7f29620a6d9d50690af20f6b77b" }, "downloads": -1, "filename": "django-cities-light-2.1.3.tar.gz", "has_sig": false, "md5_digest": "2dccea57d318f68446909f7f4b065e18", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20696, "upload_time": "2013-11-02T17:44:21", "url": "https://files.pythonhosted.org/packages/0d/1b/3589b3babecf1edd06a174cbfe2158f322879fb46ee38184e1c974b35b31/django-cities-light-2.1.3.tar.gz" } ], "2.1.4": [ { "comment_text": "", "digests": { "md5": "6be891f3806505ea5a9dad56f58dceff", "sha256": "49ba2ee1a7470464a6ac2ee80166bdb783e152c3f626d2396c61e16a607030ed" }, "downloads": -1, "filename": "django-cities-light-2.1.4.tar.gz", "has_sig": false, "md5_digest": "6be891f3806505ea5a9dad56f58dceff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20782, "upload_time": "2013-11-03T01:05:27", "url": "https://files.pythonhosted.org/packages/d0/c1/3d3899f055f7a555f1cfc5f03d6b91bfa536ff347009d76d835c84fd469e/django-cities-light-2.1.4.tar.gz" } ], "2.1.5": [ { "comment_text": "", "digests": { "md5": "23599d9557fa4a92c15693ced80ceaa8", "sha256": "a35395b68d29c51be1a666ce363267c40de1dfe767c306937e365292da68dccd" }, "downloads": -1, "filename": "django-cities-light-2.1.5.tar.gz", "has_sig": false, "md5_digest": "23599d9557fa4a92c15693ced80ceaa8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20777, "upload_time": "2013-11-03T10:28:03", "url": "https://files.pythonhosted.org/packages/ae/47/5afb455fa3f769ac0869108a8d545cab7446f7abd63140f349c296bbbf23/django-cities-light-2.1.5.tar.gz" } ], "2.1.6": [ { "comment_text": "", "digests": { "md5": "22030b61f49fc05e91c4725723fbc8c5", "sha256": "880b68c98ad3ac2bf8301433dd2909430aeb714320d66bcfa446e2ac76dc8803" }, "downloads": -1, "filename": "django-cities-light-2.1.6.tar.gz", "has_sig": false, "md5_digest": "22030b61f49fc05e91c4725723fbc8c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20852, "upload_time": "2013-11-22T23:35:39", "url": "https://files.pythonhosted.org/packages/33/6d/2566964bb8d9fc8e909a680e255e924de452f1ae4e531dc31aaef17576b8/django-cities-light-2.1.6.tar.gz" } ], "2.1.7": [ { "comment_text": "", "digests": { "md5": "f48a51dc82f6b84aa1bdfa04105f7cea", "sha256": "93ff8dbfc28d06b03dec541d2bb6a065f87a4858e81f6cc76c6411fdcd92f59a" }, "downloads": -1, "filename": "django-cities-light-2.1.7.tar.gz", "has_sig": false, "md5_digest": "f48a51dc82f6b84aa1bdfa04105f7cea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21186, "upload_time": "2013-12-12T15:33:55", "url": "https://files.pythonhosted.org/packages/a0/79/57b452a2ba1ca7f86e0dc922125919d79b91c76b4cb4a12c957b64f94e5d/django-cities-light-2.1.7.tar.gz" } ], "2.1.8": [ { "comment_text": "", "digests": { "md5": "b45c5d901ba2133f2ac591d1efce574d", "sha256": "981cfdafa8d4aa5711a99f6b70676560bcbe8e4c91deb5b41a3a1c9340df8281" }, "downloads": -1, "filename": "django-cities-light-2.1.8.tar.gz", "has_sig": false, "md5_digest": "b45c5d901ba2133f2ac591d1efce574d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20902, "upload_time": "2013-12-12T20:11:50", "url": "https://files.pythonhosted.org/packages/70/72/66f2f431bf617db7c8f5b10a972343a29d5e43787031cad594cbe4ebf5f0/django-cities-light-2.1.8.tar.gz" } ], "2.1.9": [ { "comment_text": "", "digests": { "md5": "1e8aae9b9e08a76ae5aedd890c94fa87", "sha256": "59d0fe05a1b81f23b2dc428a969f2b436163d507964662be47438eee2aceedef" }, "downloads": -1, "filename": "django-cities-light-2.1.9.tar.gz", "has_sig": false, "md5_digest": "1e8aae9b9e08a76ae5aedd890c94fa87", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20994, "upload_time": "2014-01-27T20:45:29", "url": "https://files.pythonhosted.org/packages/63/91/80b66208d110f9522da84fad50bf933c1f4d99e7e3ab112739965c921c49/django-cities-light-2.1.9.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "c5e6d61cc1a0592eb4ea92f4e35bcc20", "sha256": "41ad47d22b5ee0118b34d520f947bfb40943ec8bc630dfcf7b386e52514d59a2" }, "downloads": -1, "filename": "django-cities-light-2.3.0.tar.gz", "has_sig": false, "md5_digest": "c5e6d61cc1a0592eb4ea92f4e35bcc20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27363, "upload_time": "2014-03-06T13:02:27", "url": "https://files.pythonhosted.org/packages/ea/4a/2b82ec06398d8a7e26547dd06a9870cc3dd79953affae3ee93b7a1a2ee1e/django-cities-light-2.3.0.tar.gz" } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "27279dfc3cf222be61ce407505f34a81", "sha256": "deb2798af815934d1ee032f37a002e7af585a937cdd50f7fb468b96d7f370db1" }, "downloads": -1, "filename": "django-cities-light-2.3.1.tar.gz", "has_sig": false, "md5_digest": "27279dfc3cf222be61ce407505f34a81", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28789, "upload_time": "2014-04-06T14:22:41", "url": "https://files.pythonhosted.org/packages/cf/3d/0eddec88ac92a6ce78d7ae74ffaccdee6375c9360d7b2f008d93d498f6d0/django-cities-light-2.3.1.tar.gz" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "90d20df71c9bab4fc4ff6e25ed647f7d", "sha256": "0ccaa0914a37f8416a8e37185f9391a0877f35bbd6d34d14998bdba5b4f12c06" }, "downloads": -1, "filename": "django-cities-light-2.4.0.tar.gz", "has_sig": false, "md5_digest": "90d20df71c9bab4fc4ff6e25ed647f7d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29793, "upload_time": "2014-04-27T17:11:15", "url": "https://files.pythonhosted.org/packages/cd/c5/badc614b05911b67ad5e51fc0871c51eb27b7267fa412f721fad8a2f739b/django-cities-light-2.4.0.tar.gz" } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "22b87b1fd33821ea582604ecc08ab409", "sha256": "c5cc4c4aced3d2dd5cf101a1c1916549ecde413263bbee6adf473fc8d662b7f6" }, "downloads": -1, "filename": "django-cities-light-2.4.1.tar.gz", "has_sig": false, "md5_digest": "22b87b1fd33821ea582604ecc08ab409", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29722, "upload_time": "2014-04-27T17:21:09", "url": "https://files.pythonhosted.org/packages/a2/cc/7efa774f16e78e0e96eb3b17f8f26c09fd7ac6781342c0e653a9ce6e2d5d/django-cities-light-2.4.1.tar.gz" } ], "2.4.2": [ { "comment_text": "", "digests": { "md5": "c1365e92d97cb0d7c73d7c00874a1d0c", "sha256": "9e3cf4d127eab56635bd8105cd4e05b973f08c6551c9ac02c6daae124ec02f96" }, "downloads": -1, "filename": "django-cities-light-2.4.2.tar.gz", "has_sig": false, "md5_digest": "c1365e92d97cb0d7c73d7c00874a1d0c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29929, "upload_time": "2014-04-29T22:06:59", "url": "https://files.pythonhosted.org/packages/33/29/d9b29aad89d86be64b765f1a9d4df81613bed9d2ed5e9888dddda31bac4a/django-cities-light-2.4.2.tar.gz" } ], "2.4.3": [ { "comment_text": "", "digests": { "md5": "dc33dd55b42235906259e54e3b601142", "sha256": "08a6be59f79308a27811240e371a5f79832e7b1b6905fef5c3c66d7741a61992" }, "downloads": -1, "filename": "django-cities-light-2.4.3.tar.gz", "has_sig": false, "md5_digest": "dc33dd55b42235906259e54e3b601142", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29934, "upload_time": "2014-10-01T09:55:32", "url": "https://files.pythonhosted.org/packages/cc/60/2cf03ccb5a88f52ad324bc9b284868c900f02945e436007f0090e78341ac/django-cities-light-2.4.3.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "7edf6777fbe1739475c4c5b965878784", "sha256": "7f6595170d23d60bb2c52929b3a9c5988058609033d91183bb85ece1197ecf80" }, "downloads": -1, "filename": "django-cities-light-3.0.0.tar.gz", "has_sig": false, "md5_digest": "7edf6777fbe1739475c4c5b965878784", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30174, "upload_time": "2014-11-01T00:39:09", "url": "https://files.pythonhosted.org/packages/48/22/bb3b0f4e1e835e49e3534eaaa19484fa2365d000b930c6bb2a2099dde555/django-cities-light-3.0.0.tar.gz" } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "70df996e26abaff4ef63356c8a133c7e", "sha256": "0f82750692536a18d31632b46b76fbbf31013d371d861209b68bc228a76cd562" }, "downloads": -1, "filename": "django-cities-light-3.0.1.tar.gz", "has_sig": false, "md5_digest": "70df996e26abaff4ef63356c8a133c7e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30188, "upload_time": "2014-11-06T12:24:59", "url": "https://files.pythonhosted.org/packages/32/2e/771c46da32b520bcfa041d9c09e214d33f9728977b414d73f49d665a3ebc/django-cities-light-3.0.1.tar.gz" } ], "3.0.2": [ { "comment_text": "", "digests": { "md5": "37632a16d5a42d7f3ba5c248bff61ba0", "sha256": "5253802e57cf809bc024157382dedae96f41cfc3ffba244469c554e3d641d4da" }, "downloads": -1, "filename": "django-cities-light-3.0.2.tar.gz", "has_sig": false, "md5_digest": "37632a16d5a42d7f3ba5c248bff61ba0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32502, "upload_time": "2014-11-24T17:06:36", "url": "https://files.pythonhosted.org/packages/da/67/3addc89b67a0aff2ff1827e1be6b7e0af1a385483a2d1b11f73d3bf4daa2/django-cities-light-3.0.2.tar.gz" } ], "3.0.3": [ { "comment_text": "", "digests": { "md5": "0f414c0ffa9db989ae79429c1f6f7ea0", "sha256": "0b08c9ce72b1579bef0a6db4c7eb561a48f4bba121056f9c69e9ebe3b7d383c4" }, "downloads": -1, "filename": "django-cities-light-3.0.3.tar.gz", "has_sig": false, "md5_digest": "0f414c0ffa9db989ae79429c1f6f7ea0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32500, "upload_time": "2015-01-21T10:21:13", "url": "https://files.pythonhosted.org/packages/bb/64/6614012296abf0bac60446550e6cd2ef38230dea89d7bab7736a49c1b988/django-cities-light-3.0.3.tar.gz" } ], "3.0.4": [ { "comment_text": "", "digests": { "md5": "d07e35bcc05543588d9d603f7a0d9885", "sha256": "e4ca4ff522b99929527e01ce2815a98e0433975c6557feab2f8ec30f33263e60" }, "downloads": -1, "filename": "django-cities-light-3.0.4.tar.gz", "has_sig": false, "md5_digest": "d07e35bcc05543588d9d603f7a0d9885", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32545, "upload_time": "2015-01-28T13:20:37", "url": "https://files.pythonhosted.org/packages/07/4a/22bba3734704147efb622dc057026c3c20b368a41a7f4cb1b42f184af991/django-cities-light-3.0.4.tar.gz" } ], "3.0.5": [ { "comment_text": "", "digests": { "md5": "22ea2fe7a1ac3a6898c362fcf8cec011", "sha256": "b73346fe1f4a2a5f46c5b802c51a9575d5001da427697baa95af1d5d59ed9b53" }, "downloads": -1, "filename": "django-cities-light-3.0.5.tar.gz", "has_sig": false, "md5_digest": "22ea2fe7a1ac3a6898c362fcf8cec011", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33174, "upload_time": "2015-02-19T09:47:19", "url": "https://files.pythonhosted.org/packages/bd/5a/c6b0b6b6cd64fcd8c5e86dd2c66d987ed3f254ced7d701bb8f56a8435c77/django-cities-light-3.0.5.tar.gz" } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "d80c3e8d6ac0d53619180db625a6302c", "sha256": "f32ceabd623ce09c857d403757d222ef7668f94dd360ba74d80ebd1e8ebd1aed" }, "downloads": -1, "filename": "django-cities-light-3.1.0.tar.gz", "has_sig": false, "md5_digest": "d80c3e8d6ac0d53619180db625a6302c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34996, "upload_time": "2015-03-03T23:25:16", "url": "https://files.pythonhosted.org/packages/ef/d1/ea5099b1d401c982e35854a623a1efd8c68193cb15855deb1b2a9b2691a1/django-cities-light-3.1.0.tar.gz" } ], "3.1.2": [ { "comment_text": "", "digests": { "md5": "1d270359ea5bfac35f926a4c74a77138", "sha256": "6fd8b353efc7e24a658843ec45cef9d0f2a45aecd6df06cc7e3d752e0764938d" }, "downloads": -1, "filename": "django-cities-light-3.1.2.tar.gz", "has_sig": false, "md5_digest": "1d270359ea5bfac35f926a4c74a77138", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35587, "upload_time": "2015-04-02T15:41:15", "url": "https://files.pythonhosted.org/packages/5a/bd/61e732b4e6226f6f72c666de81e6ebeeae6814aed30e007df439c4510396/django-cities-light-3.1.2.tar.gz" } ], "3.2.0": [ { "comment_text": "", "digests": { "md5": "e8b6c93c14d1b0fa02f469b504d6f039", "sha256": "dfd35bd18ae4ce412211e2adb28356992180179a7c26b35370935c299b04438d" }, "downloads": -1, "filename": "django-cities-light-3.2.0.tar.gz", "has_sig": true, "md5_digest": "e8b6c93c14d1b0fa02f469b504d6f039", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29370, "upload_time": "2016-01-10T05:58:46", "url": "https://files.pythonhosted.org/packages/ba/cb/9f8c594ce39611ef9232989a379b38894afb3819a2639316ec203f26ed8e/django-cities-light-3.2.0.tar.gz" } ], "3.3.0": [ { "comment_text": "", "digests": { "md5": "68ce573462da2a0517686b3465d6cd1a", "sha256": "39c91c2756fdbecdf758b6e5f262108f7a693a6689368e52f635f6f0363da877" }, "downloads": -1, "filename": "django-cities-light-3.3.0.tar.gz", "has_sig": true, "md5_digest": "68ce573462da2a0517686b3465d6cd1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33816, "upload_time": "2016-05-29T12:32:48", "url": "https://files.pythonhosted.org/packages/52/10/e94d8a67973c8692de870c11e36fc0e88829f0e92c675f2a6ef63157e1f3/django-cities-light-3.3.0.tar.gz" } ], "3.4.0": [ { "comment_text": "", "digests": { "md5": "1c0d36d7e7e5f8c59cf31a64f8c20cfd", "sha256": "9d77df04bece34e866513f3654bde1ed3a1897200fba383fe8483cf33e3bcc83" }, "downloads": -1, "filename": "django-cities-light-3.4.0.tar.gz", "has_sig": true, "md5_digest": "1c0d36d7e7e5f8c59cf31a64f8c20cfd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37375, "upload_time": "2018-02-12T09:35:53", "url": "https://files.pythonhosted.org/packages/da/ee/59eb734f63b698a47bcd82986690de55f473fa7c6dba38eaae854e51a348/django-cities-light-3.4.0.tar.gz" } ], "3.5.0": [ { "comment_text": "", "digests": { "md5": "ae1801d37d7f521e2ebc393c5fe56d62", "sha256": "8a87c9f52efda275eb25b6112688b35e72c07f378ddcfabfe5c4501bc8d684be" }, "downloads": -1, "filename": "django-cities-light-3.5.0.tar.gz", "has_sig": true, "md5_digest": "ae1801d37d7f521e2ebc393c5fe56d62", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37478, "upload_time": "2018-05-27T20:49:27", "url": "https://files.pythonhosted.org/packages/d0/9d/a3b7486fb2024c06234e3d5687e141f58a434e4070c74f85b8c57a4422ad/django-cities-light-3.5.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ae1801d37d7f521e2ebc393c5fe56d62", "sha256": "8a87c9f52efda275eb25b6112688b35e72c07f378ddcfabfe5c4501bc8d684be" }, "downloads": -1, "filename": "django-cities-light-3.5.0.tar.gz", "has_sig": true, "md5_digest": "ae1801d37d7f521e2ebc393c5fe56d62", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37478, "upload_time": "2018-05-27T20:49:27", "url": "https://files.pythonhosted.org/packages/d0/9d/a3b7486fb2024c06234e3d5687e141f58a434e4070c74f85b8c57a4422ad/django-cities-light-3.5.0.tar.gz" } ] }