{ "info": { "author": "Basil Shubin", "author_email": "basil.shubin@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 :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content" ], "description": "django-easy-maps\n================\n\nThis app makes it easy to display a map for any given address in\ndjango_ templates. No manual geocoding, html/js copy-pasting or Django\nmodel changes are needed.\n\nAuthored by `Mikhail Korobov `_, and some great\n`contributors `_.\n\n.. image:: https://img.shields.io/pypi/v/django-easy-maps.svg\n :target: https://pypi.python.org/pypi/django-easy-maps/\n\n.. image:: https://img.shields.io/pypi/dm/django-easy-maps.svg\n :target: https://pypi.python.org/pypi/django-easy-maps/\n\n.. image:: https://img.shields.io/github/license/bashu/django-easy-maps.svg\n :target: https://pypi.python.org/pypi/django-easy-maps/\n\n.. image:: https://img.shields.io/travis/bashu/django-easy-maps.svg\n :target: https://travis-ci.org/bashu/django-easy-maps/\n\nInstallation\n============\n\nFirst install the module, preferably in a virtual environment. It can be installed from PyPI:\n\n.. code-block:: shell\n\n pip install django-easy-maps\n\nSetup\n=====\n\nYou'll need to add ``easy_maps`` to ``INSTALLED_APPS`` in your project's ``settings.py`` file:\n\n.. code-block:: python\n\n INSTALLED_APPS += [\n 'easy_maps',\n ]\n\nThen run ``./manage.py migrate`` to create the required database tables.\n\nConfiguration\n=============\n\nThe only mandatory configuration is the ``EASY_MAPS_GOOGLE_KEY`` variable:\n\n.. code-block:: python\n\n EASY_MAPS_GOOGLE_KEY = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ___0123456789'\n\nIf you need a place to center the map at when no address is inserted\nyet, add the latitude and longitude to the ``EASY_MAPS_CENTER`` variable in\nyour ``settings.py`` like the following:\n\n.. code-block:: python\n\n EASY_MAPS_CENTER = (-41.3, 32)\n\nPlease see the ``example`` application. This application is used to\nmanually test the functionalities of this package. This also serves as\na good example.\n\nYou need Django 1.8 or above to run that. It might run on older versions but that is not tested.\n\nUsage\n=====\n\nFirst of all, load the ``easy_map_tags`` in every template where you want to use it:\n\n.. code-block:: html+django\n\n {% load easy_maps_tags %}\n\nUse:\n\n.. code-block:: html+django\n\n {% easy_map
[ ] [] [using ] %}\n\nFor example:\n\n.. code-block:: html+django\n\n {% load easy_maps_tags %}\n\n \n {% easy_map \"Russia, Ekaterinburg, Mira 32\" 300 400 %}\n\n \n {% easy_map address 200 200 5 using \"map.html\" %}\n\nThe coordinates for map will be obtained using google geocoder on first\naccess. Then they'll be cached in DB. Django's template caching can be used\nlater in order to prevent DB access on each map render:\n\n.. code-block:: html+django\n\n {% load easy_maps_tags cache %}\n\n {% cache 600 my_map firm.address %}\n {% easy_map firm.address 300 400 %}\n {% endcache %}\n\nTemplates\n---------\n\nIf the default map template is not sufficient then a custom map template can be\nused. For example:\n\n.. code-block:: html+django\n\n {% easy_map address using \"map.html\" %}\n {% easy_map address 200 300 5 using \"map.html\" %}\n\nThe template will have ``map`` (``easy_maps.Address`` instance\nauto-created for passed address on first access), ``width``, ``height``\nand ``zoom`` variables. The outer template context is passed to the rendered\ntemplate as well.\n\nYou can start your own template from scratch or just override some blocks in the\ndefault template.\n\nPlease refer to https://developers.google.com/maps/documentation/javascript/ for\ndetailed Google Maps JavaScript API help.\n\nWidgets\n-------\n\n``django-easy-maps`` provides a basic widget that displays a map under the address\nfield. It can be used in the admin for map previews. For example:\n\n.. code-block:: python\n\n from django import forms\n from django.contrib import admin\n\n from easy_maps.widgets import AddressWithMapWidget\n\n from .models import Firm\n\n class FirmAdmin(admin.ModelAdmin):\n class form(forms.ModelForm):\n class Meta:\n widgets = {\n 'address': AddressWithMapWidget({'class': 'vTextField'})\n }\n\n admin.site.register(Firm, FirmAdmin)\n\n``address`` field should be either a ``CharField`` or ``TextField``.\n\nContributing\n------------\n\nIf you've found a bug, implemented a feature or customized the template and\nthink it is useful then please consider contributing. Patches, pull requests or\njust suggestions are welcome!\n\nLicense\n-------\n\n``django-easy-maps`` is released under the MIT license.\n\n.. _django: https://www.djangoproject.com\n", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/bashu/django-easy-maps/zipball/master", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/bashu/django-easy-maps", "keywords": "", "license": "MIT License", "maintainer": "", "maintainer_email": "", "name": "django-easy-maps", "package_url": "https://pypi.org/project/django-easy-maps/", "platform": "", "project_url": "https://pypi.org/project/django-easy-maps/", "project_urls": { "Download": "https://github.com/bashu/django-easy-maps/zipball/master", "Homepage": "https://github.com/bashu/django-easy-maps" }, "release_url": "https://pypi.org/project/django-easy-maps/1.0.2/", "requires_dist": null, "requires_python": "", "summary": "This app makes it easy to display a map for a given address", "version": "1.0.2" }, "last_serial": 5324562, "releases": { "0.5": [ { "comment_text": "", "digests": { "md5": "ed5c4a84f4aacb90147afcba115771e1", "sha256": "9f3d41046ffaeba358163ce07ecc87f3c7feb9bf0cd34105ec65512f4ad36b8d" }, "downloads": -1, "filename": "django-easy-maps-0.5.tar.gz", "has_sig": false, "md5_digest": "ed5c4a84f4aacb90147afcba115771e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4971, "upload_time": "2010-12-01T14:15:08", "url": "https://files.pythonhosted.org/packages/40/39/ab06ae35b43dbf65bbf92f004035641d167ee05a1f3540173bb3a475f347/django-easy-maps-0.5.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "eed6f89c99107cc96b3b1fbe8bb0cc5e", "sha256": "82ec2e630087fd0e0420e1915847b5d7804bd345294ef5adcabe5a5141e91cea" }, "downloads": -1, "filename": "django-easy-maps-0.5.1.tar.gz", "has_sig": false, "md5_digest": "eed6f89c99107cc96b3b1fbe8bb0cc5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5226, "upload_time": "2010-12-01T17:09:53", "url": "https://files.pythonhosted.org/packages/5d/59/50b41aefaf6fe03b1dcb3b48573848070bfb947000b0b597082fdd3f1de8/django-easy-maps-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "5cecb98c08d558ede59b4ed31768acab", "sha256": "a7d1ce95fba1756a56e14fe35eb276bb003915d9d505fae5b41ac0d896588136" }, "downloads": -1, "filename": "django-easy-maps-0.5.2.tar.gz", "has_sig": false, "md5_digest": "5cecb98c08d558ede59b4ed31768acab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5239, "upload_time": "2010-12-01T17:34:27", "url": "https://files.pythonhosted.org/packages/65/22/2ea1a934e6154578ce17a1dd5a343b81ad1c65710b45a0f54e579a40db8e/django-easy-maps-0.5.2.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "97fbed3da5a90f43414ca8d98d05b137", "sha256": "429701ba7aa769474b934c05cfc02e119420dfcd971d51ffe468ddb7d657d153" }, "downloads": -1, "filename": "django-easy-maps-0.5.3.tar.gz", "has_sig": false, "md5_digest": "97fbed3da5a90f43414ca8d98d05b137", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5250, "upload_time": "2010-12-01T23:26:47", "url": "https://files.pythonhosted.org/packages/05/b6/d86b0b6a31feaa7d1e76b62e1db726adef2017270af8e304262b400cb727/django-easy-maps-0.5.3.tar.gz" } ], "0.5.4": [ { "comment_text": "", "digests": { "md5": "1176f6e2a2b37c26b78b55e6b37705f0", "sha256": "a835d088720a7ef25e38e18d88e14dbbc1e8231fe5afad5192b054e6e301d188" }, "downloads": -1, "filename": "django-easy-maps-0.5.4.tar.gz", "has_sig": false, "md5_digest": "1176f6e2a2b37c26b78b55e6b37705f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5459, "upload_time": "2010-12-02T11:11:37", "url": "https://files.pythonhosted.org/packages/27/69/9a1e10593d93d456d5971ba27c46b05909f367ab1c7a4df893c0dd2302d1/django-easy-maps-0.5.4.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "9462efb1a840887b5380f077ee9f24b8", "sha256": "969502b572fc423ac03d46a9fc3cb13621f110df5dd6df0a48be19957183b7d2" }, "downloads": -1, "filename": "django-easy-maps-0.6.tar.gz", "has_sig": false, "md5_digest": "9462efb1a840887b5380f077ee9f24b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5883, "upload_time": "2010-12-02T12:08:37", "url": "https://files.pythonhosted.org/packages/06/f2/f7b62558287aafdccf4efaa0496a1d0bb8cb1fdc404b900ccb58f5f8ac67/django-easy-maps-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "9315ceb9fb753842b5884106516beb2a", "sha256": "108eb2671618d9e16a03fc040c56100cb93651c6f87785342a370b924c568390" }, "downloads": -1, "filename": "django-easy-maps-0.7.tar.gz", "has_sig": false, "md5_digest": "9315ceb9fb753842b5884106516beb2a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6266, "upload_time": "2010-12-24T15:37:20", "url": "https://files.pythonhosted.org/packages/f5/b3/0f7d2a6cb67229f223a241d330b120854693eb7ccc4c2d3978440d078c45/django-easy-maps-0.7.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "86e748d56f0b8998dd799904e19bb2fb", "sha256": "95e4cda10e1a17285ee03b4f32b3d22a6c7f1843606fee9e0c19fe326c2ad8f5" }, "downloads": -1, "filename": "django-easy-maps-0.7.1.tar.gz", "has_sig": false, "md5_digest": "86e748d56f0b8998dd799904e19bb2fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6483, "upload_time": "2011-03-15T23:24:23", "url": "https://files.pythonhosted.org/packages/d0/8e/00ddbcec878bcbf0881bbfce2015eb8222827ee47e68c01d300d1fe51863/django-easy-maps-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "975f8def7bc88ad697e487a07b20f120", "sha256": "1ec6041aaccc59f50489f91216959bb38c441cfa273e51813cb4c520cb98c13f" }, "downloads": -1, "filename": "django-easy-maps-0.7.2.tar.gz", "has_sig": false, "md5_digest": "975f8def7bc88ad697e487a07b20f120", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6789, "upload_time": "2012-01-07T14:35:34", "url": "https://files.pythonhosted.org/packages/12/da/7e122983ca25ad3fce21efd8d433fbbae5065882226937491470f58fc76c/django-easy-maps-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "0377e785c43f25dd53df3872183bbadd", "sha256": "cff519744c78f012d24e0fc9e2872520417d88038ada490509dce6752fdfe42b" }, "downloads": -1, "filename": "django-easy-maps-0.7.3.tar.gz", "has_sig": false, "md5_digest": "0377e785c43f25dd53df3872183bbadd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6814, "upload_time": "2012-09-21T15:09:20", "url": "https://files.pythonhosted.org/packages/bb/31/52fe0192180443f732041016c24072d5d599165367d1aa187f20375d07b6/django-easy-maps-0.7.3.tar.gz" } ], "0.7.4": [ { "comment_text": "", "digests": { "md5": "f48f444916e1926dd8f7e4e37412983b", "sha256": "66cdc6667242b353181c77cc0a7f4517269442135f80f181d2e4f62031711f11" }, "downloads": -1, "filename": "django-easy-maps-0.7.4.tar.gz", "has_sig": false, "md5_digest": "f48f444916e1926dd8f7e4e37412983b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7159, "upload_time": "2013-01-02T20:53:37", "url": "https://files.pythonhosted.org/packages/a9/c8/47a3738b307b7b5402cef8cced75f147599968900def7e7dd985fec962ad/django-easy-maps-0.7.4.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "c5d66182fa0e425f4138876ea96cd2be", "sha256": "44b952696d29d0e8a51645510f59ddf8eab43dc368486b99856435cfd9acb84d" }, "downloads": -1, "filename": "django-easy-maps-0.8.tar.gz", "has_sig": false, "md5_digest": "c5d66182fa0e425f4138876ea96cd2be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9789, "upload_time": "2013-03-24T16:39:53", "url": "https://files.pythonhosted.org/packages/b7/d6/250adb3cdc4e75b88185472332393c2c3a329de0c92ce15aaa2339acc81a/django-easy-maps-0.8.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "012e7fd398b69800ef6ad52b5b9a794a", "sha256": "f8bf7460f76a2350765c6b7f5dd19808fe3155ef08c6ca093f29b660c0e1a734" }, "downloads": -1, "filename": "django-easy-maps-0.8.1.tar.gz", "has_sig": false, "md5_digest": "012e7fd398b69800ef6ad52b5b9a794a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9870, "upload_time": "2013-03-25T16:57:25", "url": "https://files.pythonhosted.org/packages/e9/05/b17e5df29a8c5aeb3bfdc4ac43299736c635cce0d65e98d65f89560dc051/django-easy-maps-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "2276e9224aeed188f45bfbb418f04cbb", "sha256": "e1c3f553fa45dacd6cfe7bb023cb3682dbac1c8ed020a1dfbfd5835eca46e502" }, "downloads": -1, "filename": "django-easy-maps-0.8.2.tar.gz", "has_sig": false, "md5_digest": "2276e9224aeed188f45bfbb418f04cbb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11292, "upload_time": "2013-07-01T20:44:56", "url": "https://files.pythonhosted.org/packages/9a/e9/e80342d0f905e712d32b377a21024079210b063f74c838d6c3bbf0ab0bc0/django-easy-maps-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "eeb93839d87258e8f8977a6db2c81b49", "sha256": "fb330d4ca0f3cc54701db62496b2a8e22037b9ea0459ab3b7fc91cfaede24e49" }, "downloads": -1, "filename": "django-easy-maps-0.8.3.tar.gz", "has_sig": false, "md5_digest": "eeb93839d87258e8f8977a6db2c81b49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11432, "upload_time": "2013-08-26T22:04:08", "url": "https://files.pythonhosted.org/packages/8e/92/fbba8e081b3177f17aa46bd9f50dc286023d7bb85ec3c1e4ebfeb3413843/django-easy-maps-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "52d3c9670abfe3260f926ebee7bfe9bf", "sha256": "bd57e64544ce20d070bd03a8d13d16a05cc79b1ed90f94c3645e30400dd8a726" }, "downloads": -1, "filename": "django-easy-maps-0.8.4.tar.gz", "has_sig": false, "md5_digest": "52d3c9670abfe3260f926ebee7bfe9bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11454, "upload_time": "2013-08-26T22:06:22", "url": "https://files.pythonhosted.org/packages/41/ea/7f550983229f71c2b53fc67abdf5fe717940454974778119c851a250c84f/django-easy-maps-0.8.4.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "34e43bc75ad3f9b6e56542f516ad02b1", "sha256": "df8d569066acc13d700000965e5fa1e272885a4a7c1080d9fb43ede8ab13e4ed" }, "downloads": -1, "filename": "django-easy-maps-0.9.tar.gz", "has_sig": false, "md5_digest": "34e43bc75ad3f9b6e56542f516ad02b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11620, "upload_time": "2014-02-11T12:01:05", "url": "https://files.pythonhosted.org/packages/22/1c/b3c354b765b740c945334a9754093195c8355355b372277635bff23d41a3/django-easy-maps-0.9.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "5047e26244766a6da1b75b1804a7c02f", "sha256": "09398be5f9b5ae257ffe9ffbb57b9c16b9bc90e453eb8ecfc9c448f00d4fb542" }, "downloads": -1, "filename": "django-easy-maps-0.9.2.tar.gz", "has_sig": true, "md5_digest": "5047e26244766a6da1b75b1804a7c02f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14179, "upload_time": "2015-07-12T04:15:05", "url": "https://files.pythonhosted.org/packages/2b/95/aed0ef56d75c4dd6f9dc337da5aa9b29cbec3ed07fbe0bb4b6a1a5602020/django-easy-maps-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "b937bf39dd2c2acacfdabb5515a911fa", "sha256": "9a89b7448871b4d43d181cabffa80e52d455fa33f8ae78fdecbccb14817550ef" }, "downloads": -1, "filename": "django_easy_maps-0.9.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "b937bf39dd2c2acacfdabb5515a911fa", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 21551, "upload_time": "2016-11-11T04:12:03", "url": "https://files.pythonhosted.org/packages/3c/0f/b61a5e506d4de1a258c11fb2f7d985630570cebd4eeedd8f853690003436/django_easy_maps-0.9.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fa50fa7f6bd4c228a0baadc37af536ea", "sha256": "d35d0d10200feb71c39b0cfbdf589c663cac324153d05070ea30298b124b740a" }, "downloads": -1, "filename": "django-easy-maps-0.9.3.tar.gz", "has_sig": true, "md5_digest": "fa50fa7f6bd4c228a0baadc37af536ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15719, "upload_time": "2016-11-11T04:11:57", "url": "https://files.pythonhosted.org/packages/4f/08/6296ecb254e48060cbce5dd993ddd9bb7bc29fe3029b87efe99ea8ca5f74/django-easy-maps-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "a9964b28bd843ee89da08e4b71751c8d", "sha256": "df69003a30676d9ecdb66d40c0f923b53bd92ac0c33c00286437f52d8b06c063" }, "downloads": -1, "filename": "django_easy_maps-0.9.4-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "a9964b28bd843ee89da08e4b71751c8d", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 15630, "upload_time": "2019-03-28T14:00:52", "url": "https://files.pythonhosted.org/packages/bd/63/9017a65819ad3e7a0e7117dfdb511b5c3bea34f917fa18464531f6f206f8/django_easy_maps-0.9.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "04a46c9e3f6171f2290b0d4ddb906122", "sha256": "b51648d619183c5b5550d93ec2ee55c1ae9fc55f6151e883de2a716a6ebae47b" }, "downloads": -1, "filename": "django-easy-maps-0.9.4.tar.gz", "has_sig": true, "md5_digest": "04a46c9e3f6171f2290b0d4ddb906122", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12471, "upload_time": "2019-03-28T14:00:49", "url": "https://files.pythonhosted.org/packages/12/e1/511ac4ef814f64977efa06f0fb52c6de24444cc8948321068e95f72a5bc1/django-easy-maps-0.9.4.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "e5e14b08a534b06d5e2ce50e48bd038a", "sha256": "1da195f3c0f7bd5578b16673fe96fa0500d791ef1e978e15695903ac9dcdd01d" }, "downloads": -1, "filename": "django_easy_maps-1.0.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "e5e14b08a534b06d5e2ce50e48bd038a", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 17241, "upload_time": "2019-03-29T07:42:39", "url": "https://files.pythonhosted.org/packages/69/6f/7e9b3b407a504da4430f876dcbc5c10293d5dfe0638eaa20c4b8f6f3e839/django_easy_maps-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4a7c84d53d47fcd3195e5753f7cc0530", "sha256": "19861d66ad2a54c49c8d1644b86982c00529eaae2716a4c930248b8e273d5c35" }, "downloads": -1, "filename": "django-easy-maps-1.0.0.tar.gz", "has_sig": true, "md5_digest": "4a7c84d53d47fcd3195e5753f7cc0530", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13278, "upload_time": "2019-03-29T07:42:36", "url": "https://files.pythonhosted.org/packages/57/4d/e90b6c4366a4077f0eb0b992606930020a7a3e6ba20da146c31ae422f998/django-easy-maps-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "7114e0adc3647517a09557e0f56f1f2f", "sha256": "e988e21fc7f103345e2564fbe8b333c92d86275ab1b6e343ca00b3da2430955e" }, "downloads": -1, "filename": "django_easy_maps-1.0.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "7114e0adc3647517a09557e0f56f1f2f", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 17848, "upload_time": "2019-04-21T04:41:45", "url": "https://files.pythonhosted.org/packages/b6/7c/89a1104ca2a63ba5029c2bd656d91e846b616e455524dcb3b7f1aeeb6fb6/django_easy_maps-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6b1a9bf66ce4f3f9292f4818d2f4721c", "sha256": "0d46cda1243eb9d506175ebe038b1131ac8ec5bda945b6de66684797c10e4b70" }, "downloads": -1, "filename": "django-easy-maps-1.0.1.tar.gz", "has_sig": true, "md5_digest": "6b1a9bf66ce4f3f9292f4818d2f4721c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13917, "upload_time": "2019-04-21T04:41:42", "url": "https://files.pythonhosted.org/packages/01/3d/59f0bca582bb0fe984b5918da690b5b7cee56f6e9620599b539bf041d01c/django-easy-maps-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "93e8ab124236e69ff78bd439581febfc", "sha256": "0c8362d54ef04efa2625ed70c170b6217aef7fe86a47cf828831cc80a7d1b13c" }, "downloads": -1, "filename": "django_easy_maps-1.0.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "93e8ab124236e69ff78bd439581febfc", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 17845, "upload_time": "2019-05-28T02:16:14", "url": "https://files.pythonhosted.org/packages/db/ab/813e249f002eddd711339009e18f1d3f4e146439db82de253729fcd3b040/django_easy_maps-1.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "df7d6aa45c60a141f9da173eca90dbaf", "sha256": "50851bf146b65180f616c8955b67f734165402878f43b9c2d7c194189ffb48dd" }, "downloads": -1, "filename": "django-easy-maps-1.0.2.tar.gz", "has_sig": true, "md5_digest": "df7d6aa45c60a141f9da173eca90dbaf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13970, "upload_time": "2019-05-28T02:16:10", "url": "https://files.pythonhosted.org/packages/3f/1c/0ca4ea488d5e0513df6fb787cccbf0ebb5bd82c6eac6f0f5b193ce8969ad/django-easy-maps-1.0.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "93e8ab124236e69ff78bd439581febfc", "sha256": "0c8362d54ef04efa2625ed70c170b6217aef7fe86a47cf828831cc80a7d1b13c" }, "downloads": -1, "filename": "django_easy_maps-1.0.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "93e8ab124236e69ff78bd439581febfc", "packagetype": "bdist_wheel", "python_version": "3.7", "requires_python": null, "size": 17845, "upload_time": "2019-05-28T02:16:14", "url": "https://files.pythonhosted.org/packages/db/ab/813e249f002eddd711339009e18f1d3f4e146439db82de253729fcd3b040/django_easy_maps-1.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "df7d6aa45c60a141f9da173eca90dbaf", "sha256": "50851bf146b65180f616c8955b67f734165402878f43b9c2d7c194189ffb48dd" }, "downloads": -1, "filename": "django-easy-maps-1.0.2.tar.gz", "has_sig": true, "md5_digest": "df7d6aa45c60a141f9da173eca90dbaf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13970, "upload_time": "2019-05-28T02:16:10", "url": "https://files.pythonhosted.org/packages/3f/1c/0ca4ea488d5e0513df6fb787cccbf0ebb5bd82c6eac6f0f5b193ce8969ad/django-easy-maps-1.0.2.tar.gz" } ] }