{ "info": { "author": "Adam Coddington", "author_email": "me@adamcoddington.net", "bugtrack_url": null, "classifiers": [ "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Scientific/Engineering :: GIS" ], "description": ".. image:: https://travis-ci.org/latestrevision/django-location.png?branch=master\n :target: https://travis-ci.org/latestrevision/django-location\n\ndjango-location\n===============\n\nDo you check-in on `Foursquare `__? Do you track\nyour runs or bike commutes with\n`Runmeter `__? Do you use an IOS device?\nWhy let third-party interfaces be your only window into your day-to-day\nmovements?\n\nThis Django application will consume location information provided by\nFoursquare, iCloud, and, if you happen to be a user of it, Runmeter, and\nstore it in your database for display at will.\n\nInstallation\n------------\n\nYou can either install from pip::\n\n pip install django-location\n\n\n*or* checkout and install the source from the `github\nrepository `__::\n\n git clone https://github.com/latestrevision/django-location.git\n cd django-location\n python setup.py install\n\nYou'll want to add both django-social-auth and django-location to your\nproject's ``urls.py``; you can technically use whatever URL you'd like,\nbut for the purposes of the instructions below, we'll expect that you'll\nadd them like::\n\n url(r'^location/', include('location.urls')),\n url(r'', include('social_auth.urls')),\n\nRecommended Extra Packages\n~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nEach point gathered will also be able to provide to you what\nneighborhood and city it is in if the following two packages are\ninstalled:\n\n- `django-neighborhoods `__\n- `django-census-places `__\n\nLocation Sources\n----------------\n\nFor some of the below consumers, iCloud and Runmeter specifically, you will\nneed to set up a cron job that will handle certain periodic tasks, you can\ndo this by adding a cron job running::\n\n python /path/to/your/manage.py location_consumer\n\nI'd suggest running this at five or ten minute intervals, but selecting longer\nintervals will have only minor effects; either reducing sample frequency \n(in the case of the iCloud consumer) or increasing update latency (in the\ncase of the Runmeter consumer).\n\nFoursquare\n~~~~~~~~~~\n\n`Foursquare `__ has options in its consumer\nsettings to allow it to instantly post check-in information to an API\nendpoint that this application provides. To support that, you'll need to\ndo the following:\n\n1. Go to the `Foursquare developer\n site `__ and create a new consumer.\n\n - Enter the callback URL for django-social-auth's Foursquare backend\n (generally http://yourdomain.com/complete/foursquare/).\n - Turn on Push API notifications ('Push checkins by this consumer's\n users').\n - Enter the push URL for the django-location app (usually\n https://yourdomain.com/location/foursquare/). Note: Foursquare\n requires that the connection be made via HTTPs.\n\n2. Configure the following settings::\n\n FOURSQUARE_CONSUMER_KEY = \"THECLIENTIDYOUJUSTGENERATED\"\n FOURSQUARE_CONSUMER_SECRET = \"THECLIENTSECRETYOUJUSTGENERATED\"\n\n3. Go to the configuration URL for the django-location app (usually\n http://yourdomain.com/admin/location/locationsource/configure-accounts/)\n while logged-in to the admin, and click on the 'Authorize Foursquare'\n button. This will bring you to Foursquare's site using your\n configured options, and authorize your web application to receive\n check-ins from the user with which you log-into Foursquare.\n4. If everything is set-up, you shouldn't need to do anything more, but\n Foursquare does offer a 'Send a test push' button on their consumer\n console that you can use to verify that everything is properly\n connected.\n\nRunmeter\n~~~~~~~~\n\n`Runmeter `__ does not provide an API,\nbut does allow you to configure the application to send out e-mail\nnotifications when you begin (and finish, etc) your run, bike, or\nanything else. To consume information from Runmeter, we'll configure it\nto e-mail to an otherwise-unused e-mail inbox (important), and configure\ndjango-location to consume those e-mail messages and extract coordinates\nfrom the linked-to KML file.\n\n1. Configure the Runmeter application to send start and finish\n notifications to a mailbox accessible by POP3 or IMAP.\n2. Set-up Django Mailbox to consume mail from such a mailbox (consult\n `django-mailbox's\n documentation `__).\n3. Update users' Location Consumer Settings record to set the field \n ``runmeter_email`` to match the e-mail address from which a user's device\n will be sending Runmeter updates.\n\niCloud\n~~~~~~\n\n`iCloud `__ provides a service named 'Find my iPhone'\nthat allows you to request your device's location at-will. This library\nprovides you with an easy way to use this service's location information\nas one of your location sources.\n\n1. Identify the devices associated with your account, you can\n do that by using the ``list_icloud_devices`` management command::\n\n python /path/to/your/manage.py list_icloud_devices \n\n replacing ```` and ```` with your\n iCloud username and password.\n \n This will print a list of devices and their IDs; in my case, it prints\n something like this::\n\n Name: MacBook Air 11\": sinclair -- ID: reGYDh9XwqNWTGIhNBuEwP1ds0F/Lg5t/fxNbZ3V939hhXawByErk+HYVNSUzmWV\n Name: iPhone 4S: Adam Coddingtons iPhone -- ID: i9vbKRGIcLYqJnXMc1b257kUWnoyEBcEh6yM+IfmiMLh7BmOpALU+w==\n\n2. Update users' Location Consumer Settings records to include the user's\n ``iCloud username``, ``iCloud password``, and ``iCloud device ID`` from\n which you would like to gather location information.\n\nDisplaying Location Using a Template Tag\n----------------------------------------\n\nYou can use the ``current_location`` template tag to gather the most\nrecent location for a given user.\n\nSimple example::\n\n {% load current_location %}\n {% current_location of 'adam' as location_of_adam %}\n\n

\n {{ location_of_adam.user.username }} is at {{ location_of_adam.location.coords.1 }}, {{ location_of_adam.location.coords.0 }}\n

\n\nIf you have installed 'django-neighborhoods' and 'django-census-places',\nyou can also print city and neighborhood information::\n\n {% load current_location %}\n {% current_location of 'adam' as location_of_adam %}\n\n

\n {{ location_of_adam.user.username }} is in the {{ location_of_adam.neighborhood.name }} neighborhood of {{ location_of_adam.city.name }}, {{ location_of_adam.city.get_state_display }}.\n

\n\nYou might not always have neighborhood or city information for a given\npoint, and maybe you would like to display a map using the Google Maps\nAPI; here's a fleshed-out version::\n\n {% load current_location %}\n \n\n {% current_location of 'somebody' as location %}\n {{ location.user.username }} is\n {% if location.neighborhood %}\n in the {{ location.neighborhood.name }} neighborhood of {{ location.neighborhood.city }},\n {{ location.neighborhood.state }}:\n {% elif location.city %}\n in {{ location.city.name }}, {{ location.city.get_state_display }}:\n {% else %}\n ({{ location.get_nearest_city.distance.mi }} miles from {{ location.get_nearest_city.name }}):\n {% endif %}\n
\n \n\n\n.. image:: https://d2weczhvl823v0.cloudfront.net/latestrevision/django-location/trend.png\n :alt: Bitdeli badge\n :target: https://bitdeli.com/free\n\n", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/latestrevision/django-location/", "keywords": null, "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "django-location", "package_url": "https://pypi.org/project/django-location/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/django-location/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://github.com/latestrevision/django-location/" }, "release_url": "https://pypi.org/project/django-location/2.1.1/", "requires_dist": null, "requires_python": null, "summary": "Gather, store, and display real-time location information from Foursquare, iCloud, and more.", "version": "2.1.1" }, "last_serial": 953765, "releases": { "0.1": [], "1.0": [ { "comment_text": "", "digests": { "md5": "89a277de964e9bc80f344c50a605c598", "sha256": "9dbb6c1213bb96cf2af5fd8e06a82ef55dcd3557d72df910e5559a940fa60588" }, "downloads": -1, "filename": "django-location-1.0.tar.gz", "has_sig": false, "md5_digest": "89a277de964e9bc80f344c50a605c598", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16670, "upload_time": "2012-07-23T00:19:48", "url": "https://files.pythonhosted.org/packages/31/f3/b16506b339e3517ece6011278b9f6e1b6eb2fbca14dc747d7db646298b53/django-location-1.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "2e3b3ab7b5af68189667d6b9e82638df", "sha256": "eefe302aa84465310c5d6746151a77bd5086d084d8476c7a02c5fbee870cf8c6" }, "downloads": -1, "filename": "django-location-1.0.1.tar.gz", "has_sig": false, "md5_digest": "2e3b3ab7b5af68189667d6b9e82638df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17411, "upload_time": "2012-07-23T00:41:34", "url": "https://files.pythonhosted.org/packages/e2/8d/209cc2d3abe56b355a2b9a79353f9a87a16345a040a6b250746751969ed2/django-location-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "4695a49b88108a1c20fe561bf8016e84", "sha256": "5af6e5920c4575e449ca45a6cedf2360b6efeaf6ff5efa9be54f70c3fbfa3f86" }, "downloads": -1, "filename": "django-location-1.0.2.tar.gz", "has_sig": false, "md5_digest": "4695a49b88108a1c20fe561bf8016e84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17430, "upload_time": "2012-07-23T04:06:12", "url": "https://files.pythonhosted.org/packages/4a/19/bd8cc3dba33607015c4ac2d5a700a295fd9899d58f9e5ed1cb87611e4ac2/django-location-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "3e227cf6012ddba77441328d0b55ddcb", "sha256": "c394e693fbcaba6041a4e824f73f25cc590fe196bd4cd5396d1d8c3795d522f4" }, "downloads": -1, "filename": "django-location-1.0.3.tar.gz", "has_sig": false, "md5_digest": "3e227cf6012ddba77441328d0b55ddcb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17451, "upload_time": "2012-07-23T16:41:03", "url": "https://files.pythonhosted.org/packages/e6/7b/59ad0368690412ea3f738e00c012e05e5810e43767090049e55022007f35/django-location-1.0.3.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "ff71f06742b4b143e5cd53b7418b893e", "sha256": "f69b17cbc526ce2282602d353734b8c6e95bb5d7ebae665dadd9244909c84977" }, "downloads": -1, "filename": "django-location-1.1.tar.gz", "has_sig": false, "md5_digest": "ff71f06742b4b143e5cd53b7418b893e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17514, "upload_time": "2012-11-28T03:21:38", "url": "https://files.pythonhosted.org/packages/cc/75/b44b1c349b6adb850e73ddbda1a4b2076f4b451eb5e6ca4902ef34c540ae/django-location-1.1.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "eba8dc37040e0d86caed1f427c2ab209", "sha256": "2763e6eb64e0c0449c020ae734eb504d15ac2e3ff075ab85d936ae5e104ba227" }, "downloads": -1, "filename": "django-location-1.1.1.tar.gz", "has_sig": false, "md5_digest": "eba8dc37040e0d86caed1f427c2ab209", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17508, "upload_time": "2012-11-28T03:31:35", "url": "https://files.pythonhosted.org/packages/50/d2/65ef7d64bbc83711fc6e2ed5d294a1d6e50569735ae0e41b27fe5b9ad523/django-location-1.1.1.tar.gz" } ], "1.1.10": [ { "comment_text": "", "digests": { "md5": "49b6d0eaefe89d69ee4a639a411aecc2", "sha256": "369438f1fae7136fbf4739db2f4ebcca33fb4317b2fb2d629edcb8f593379597" }, "downloads": -1, "filename": "django-location-1.1.10.tar.gz", "has_sig": false, "md5_digest": "49b6d0eaefe89d69ee4a639a411aecc2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18460, "upload_time": "2012-12-08T20:54:57", "url": "https://files.pythonhosted.org/packages/b1/6f/28564ebb8be310ab9ee47ac3d9cb77708a6dadece78d01549769c6b69f82/django-location-1.1.10.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "2780274e843b3a7f742ed757b1f375a5", "sha256": "b06a6737aaf8c74426f734c67ed1898c7a80271dc145d584d0e302434540ad35" }, "downloads": -1, "filename": "django-location-1.1.2.tar.gz", "has_sig": false, "md5_digest": "2780274e843b3a7f742ed757b1f375a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17522, "upload_time": "2012-11-28T03:34:50", "url": "https://files.pythonhosted.org/packages/80/89/fbacf37a7c52739d452a8de432821ea99395df65b4ecdaaf551ca0241ed8/django-location-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "8dbe3f09f95279e1d1e62dca234c876b", "sha256": "2272ab0b95b746fcd170370fcc18fcaf823d24c89c5334ff72f338bee0417ff0" }, "downloads": -1, "filename": "django-location-1.1.3.tar.gz", "has_sig": false, "md5_digest": "8dbe3f09f95279e1d1e62dca234c876b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17483, "upload_time": "2012-11-28T03:44:47", "url": "https://files.pythonhosted.org/packages/91/1a/17d205f413ccbe4d4d258566bdf878ba9b5c02847f473dd73b2df5fca8c7/django-location-1.1.3.tar.gz" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "69aa210852bcb2bd831bf39ed77c269c", "sha256": "7ebdc1d2417a632aef9512f33278f199136204041efe06b5b0a733358f26bdbd" }, "downloads": -1, "filename": "django-location-1.1.4.tar.gz", "has_sig": false, "md5_digest": "69aa210852bcb2bd831bf39ed77c269c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17517, "upload_time": "2012-11-28T03:54:14", "url": "https://files.pythonhosted.org/packages/51/30/75fb2fc618c0eb8a00f1e75e17882620dd5b3484e5e1062a5b61c4194be5/django-location-1.1.4.tar.gz" } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "1b7dc68f377347dd3bb1f7b3408e9e1a", "sha256": "fe15f1e478797f3e179626e25d598072add9e601d135401832575c03afc0e86b" }, "downloads": -1, "filename": "django-location-1.1.5.tar.gz", "has_sig": false, "md5_digest": "1b7dc68f377347dd3bb1f7b3408e9e1a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18318, "upload_time": "2012-11-28T14:52:13", "url": "https://files.pythonhosted.org/packages/91/b6/8591c7364bb99b4410da1b2ae41a370099b156202f80cb97533b9608f677/django-location-1.1.5.tar.gz" } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "f6546a2b27ef607634c66d1a7aa6cbe9", "sha256": "928b8406d771b5f5b911ffd9137a690852b0a7fd3303aeba864782e642397b2d" }, "downloads": -1, "filename": "django-location-1.1.6.tar.gz", "has_sig": false, "md5_digest": "f6546a2b27ef607634c66d1a7aa6cbe9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18317, "upload_time": "2012-11-28T15:05:05", "url": "https://files.pythonhosted.org/packages/f6/de/16607801bbd940f6f53e4c53c75b3eb02ae08f32c3204f04e35bdf0301fd/django-location-1.1.6.tar.gz" } ], "1.1.7": [ { "comment_text": "", "digests": { "md5": "b3cbe169834a84a5ed8d1d1d852321d8", "sha256": "ffbe0e153df47cc1dabeee812c109ef1b959070b2f5392eadb83a38840f011c1" }, "downloads": -1, "filename": "django-location-1.1.7.tar.gz", "has_sig": false, "md5_digest": "b3cbe169834a84a5ed8d1d1d852321d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18365, "upload_time": "2012-11-28T16:12:43", "url": "https://files.pythonhosted.org/packages/69/a4/f246cc480da722fc5895ff449c89eb15f2913ef3a03c310fee127b2db185/django-location-1.1.7.tar.gz" } ], "1.1.8": [ { "comment_text": "", "digests": { "md5": "b7f2570c14765646ba18a7f080f0419c", "sha256": "6c2beaebaca807f85f78d095cbdb6a9199ca63261a815026503e97d842de4e72" }, "downloads": -1, "filename": "django-location-1.1.8.tar.gz", "has_sig": false, "md5_digest": "b7f2570c14765646ba18a7f080f0419c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18446, "upload_time": "2012-11-28T16:21:10", "url": "https://files.pythonhosted.org/packages/bd/34/7af6426a64f06e4e94c2655f35f03ce51dfff50dd2afccf077f0113d0f09/django-location-1.1.8.tar.gz" } ], "1.1.9": [ { "comment_text": "", "digests": { "md5": "977bcebade7c314e1d7ea27003995af5", "sha256": "38a6258fb2726cb45a86e4b11eb96ddd2cb6093b76a168d29e3349c5a2c684af" }, "downloads": -1, "filename": "django-location-1.1.9.tar.gz", "has_sig": false, "md5_digest": "977bcebade7c314e1d7ea27003995af5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18453, "upload_time": "2012-11-28T16:22:39", "url": "https://files.pythonhosted.org/packages/22/f9/b01942f61540f90c40bdf4b5ebc7b6187bc030866dcdb77a4eed615831b1/django-location-1.1.9.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "8755a0861b3b2e2ea0fd01ccb769c681", "sha256": "665ca82eda697946308d9585c892c558b9017c5ebe5415a02ab63481310b009c" }, "downloads": -1, "filename": "django-location-1.2.tar.gz", "has_sig": false, "md5_digest": "8755a0861b3b2e2ea0fd01ccb769c681", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18927, "upload_time": "2012-12-08T21:34:43", "url": "https://files.pythonhosted.org/packages/56/10/d19cb553959dc2f01b5f4e0006040bfccb13576b48d9e473fea314d9392e/django-location-1.2.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "f374615d80d5f40a7ff40d067872cba7", "sha256": "8a056e8f8315ebe2fff1d03f2fd3d03caa91c769eed789f8af753d4f40768be6" }, "downloads": -1, "filename": "django-location-1.2.1.tar.gz", "has_sig": false, "md5_digest": "f374615d80d5f40a7ff40d067872cba7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18942, "upload_time": "2012-12-08T21:55:52", "url": "https://files.pythonhosted.org/packages/86/e7/bfd4b9e8cb1981532b18518bba5ae4f6090773a6141ab7fbdde72a520e90/django-location-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "3a7e8cc0196bb81b873aa0b01d8d9a98", "sha256": "e7949404c1b3dc7c9dd89e2d1420f6a329e1d34f912774141bcb59b7f2bf7669" }, "downloads": -1, "filename": "django-location-1.2.2.tar.gz", "has_sig": false, "md5_digest": "3a7e8cc0196bb81b873aa0b01d8d9a98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18768, "upload_time": "2013-02-24T10:52:24", "url": "https://files.pythonhosted.org/packages/90/b0/def8cbd74696e145d1e0396fcf9b3c04b369b9c69a43700e1ad6975bd955/django-location-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "b443488852c7aff5d1c3eaa3c8e2631e", "sha256": "71ce8c16b6d1b8756f871d06b1f6e37942e361df756d49a18f3dd51251b70daa" }, "downloads": -1, "filename": "django-location-1.2.3.tar.gz", "has_sig": false, "md5_digest": "b443488852c7aff5d1c3eaa3c8e2631e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18778, "upload_time": "2013-02-24T10:58:03", "url": "https://files.pythonhosted.org/packages/1d/49/f38de80dd8db7105cf3f932cacbb2ee84ef88b54b7c74658967f69b9a7fc/django-location-1.2.3.tar.gz" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "719bdb27f219f3ab423f0fba6522eba2", "sha256": "8a78ecca2f77abbd18af6fc2e0c8bdf437bd6b30d76b81ecc690fd559a397150" }, "downloads": -1, "filename": "django-location-1.2.4.tar.gz", "has_sig": false, "md5_digest": "719bdb27f219f3ab423f0fba6522eba2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18824, "upload_time": "2013-05-10T06:11:37", "url": "https://files.pythonhosted.org/packages/9a/7e/a2c084eb329ff26edfadba8c0f7a86b56717eb04ec2b873f849a84bc45c8/django-location-1.2.4.tar.gz" } ], "1.2.5": [ { "comment_text": "", "digests": { "md5": "b46452fe833b45fb8f5ac450c665473a", "sha256": "9907bc387d2256e005b46eddf785536ed4a1d4e9e42620fc06028278f443fd6d" }, "downloads": -1, "filename": "django-location-1.2.5.tar.gz", "has_sig": false, "md5_digest": "b46452fe833b45fb8f5ac450c665473a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18833, "upload_time": "2013-05-10T06:18:19", "url": "https://files.pythonhosted.org/packages/c3/98/81468bd28634e01955796a8f52fe14f5e665a0a92d8d6d7d0ffc4b499a01/django-location-1.2.5.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "e7fb04f587298d6a9da370837ccfa50b", "sha256": "5af75f84418921f80fb5fa0fa21076f93af74190894e89c9920298980ec17b96" }, "downloads": -1, "filename": "django-location-1.3.tar.gz", "has_sig": false, "md5_digest": "e7fb04f587298d6a9da370837ccfa50b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18974, "upload_time": "2013-05-13T05:25:15", "url": "https://files.pythonhosted.org/packages/ee/a3/fbb9f8e4415e2b607cafb7113ac5dbe74d8b4672e154f93e2e287c146b95/django-location-1.3.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "77fdf685726acd357e53c7b1fd34f6b2", "sha256": "2534d25e5adbdd06e19e95ca57d445a49375a3a8999890b284a3b32a9378cd8c" }, "downloads": -1, "filename": "django-location-1.3.1.tar.gz", "has_sig": false, "md5_digest": "77fdf685726acd357e53c7b1fd34f6b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19042, "upload_time": "2013-05-13T05:44:42", "url": "https://files.pythonhosted.org/packages/9c/b5/b5eeb4c949dc551268bc9b1b43a46a2a65989d198213ee2c6f72c61e0458/django-location-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "fdb699600c14383a4e758ac334c1131c", "sha256": "8ab597c319808e0d504531e2cf63299a55b2c679fa0aa5792fb6a0bf3b3903cd" }, "downloads": -1, "filename": "django-location-1.3.2.tar.gz", "has_sig": false, "md5_digest": "fdb699600c14383a4e758ac334c1131c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19005, "upload_time": "2013-05-13T06:07:51", "url": "https://files.pythonhosted.org/packages/1b/b1/fd17520ca83b453313ed91ab69bcffbf97f5070a9427fadbfe142ae94f1d/django-location-1.3.2.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "7bf8788c5941f9d7d1d6ccf4ef313325", "sha256": "2f741394802cda1df9d0fefcb9e45b8e10dc66609b715fe70618f4c6936981bc" }, "downloads": -1, "filename": "django-location-1.4.tar.gz", "has_sig": false, "md5_digest": "7bf8788c5941f9d7d1d6ccf4ef313325", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20398, "upload_time": "2013-05-20T00:39:22", "url": "https://files.pythonhosted.org/packages/2a/2d/9e7b344d1218381710d8f66dbb3c68cf8b510d5ccf5795f84c0dd2e25fd0/django-location-1.4.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "ff700cc33bcb38a702c6c2fcd4cb20e3", "sha256": "79ee047fc587828fc8033075d8b5bdc4e28dde6aceb4260a0c0b618887fd988b" }, "downloads": -1, "filename": "django-location-1.4.1.tar.gz", "has_sig": false, "md5_digest": "ff700cc33bcb38a702c6c2fcd4cb20e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20458, "upload_time": "2013-05-20T01:32:27", "url": "https://files.pythonhosted.org/packages/d4/ba/95367c4dc3fc8eb014e59c2052536f5562054c385084cb8b142038c83571/django-location-1.4.1.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "a5bafc4df7542acbf3588f5a752a3f23", "sha256": "ac55aead4b1e7eb369de56329cfd066484e5419f663f7427d0f77527dc7bd3eb" }, "downloads": -1, "filename": "django-location-2.0.tar.gz", "has_sig": false, "md5_digest": "a5bafc4df7542acbf3588f5a752a3f23", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47338, "upload_time": "2013-09-07T18:37:30", "url": "https://files.pythonhosted.org/packages/1d/6a/690bbfa0633a3ffc9b8dd3a3125340f62906da2e743ad1273bdecc154807/django-location-2.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "66854c70864c02f0ee0dc0f91673bb95", "sha256": "d398fa9ddc2b9741f40ab00a333539b8f2ffbc1a5958c1ea88c07c89e352bb9a" }, "downloads": -1, "filename": "django-location-2.0.1.tar.gz", "has_sig": false, "md5_digest": "66854c70864c02f0ee0dc0f91673bb95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47383, "upload_time": "2013-09-07T18:41:59", "url": "https://files.pythonhosted.org/packages/dc/a6/923e04e54941d86cc12f0b0ca4e821f3d541212e6599f3c0131952d2b874/django-location-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "e6ef4816cfded88f7fc8614094f9fb71", "sha256": "026dc98f97722b2450c39f2f57e26320d8bf9248174a8d9c158b22fe8f8e90d2" }, "downloads": -1, "filename": "django-location-2.0.2.tar.gz", "has_sig": false, "md5_digest": "e6ef4816cfded88f7fc8614094f9fb71", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47398, "upload_time": "2013-09-07T19:35:11", "url": "https://files.pythonhosted.org/packages/82/73/25bc22502260f147b0854f207a431578f7f48bb024b8de425cc3b26b8682/django-location-2.0.2.tar.gz" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "76322c4352bbca84d501c3a5fdf7d0fb", "sha256": "0f87148c03fba2270d8c052e6a7283328039688b8cf58cdd7dbe051197fde639" }, "downloads": -1, "filename": "django-location-2.0.3.tar.gz", "has_sig": false, "md5_digest": "76322c4352bbca84d501c3a5fdf7d0fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47378, "upload_time": "2013-09-15T04:05:00", "url": "https://files.pythonhosted.org/packages/a3/43/94554cd8dfccc450c148b774f7ac5de0eaf5ca1e9d8fb34498b26c015c7e/django-location-2.0.3.tar.gz" } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "2ded76aa8321a6c4feb5e2576f65788f", "sha256": "2b6285f693ec10c296a1288e4f14e1371bb66c59194658d08b995da3d0143920" }, "downloads": -1, "filename": "django-location-2.0.4.tar.gz", "has_sig": false, "md5_digest": "2ded76aa8321a6c4feb5e2576f65788f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47450, "upload_time": "2013-09-15T04:15:42", "url": "https://files.pythonhosted.org/packages/97/27/af2a4705f477307706a94c6972e8ae9631c4545f548fa3a404a6dc46626c/django-location-2.0.4.tar.gz" } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "70660dd3288f2214ceac9b719efeebfb", "sha256": "379a6342b7e904bd4a0b47d66b76963f5c50fa121891a54dbe798c06f4dd20f4" }, "downloads": -1, "filename": "django-location-2.0.5.tar.gz", "has_sig": false, "md5_digest": "70660dd3288f2214ceac9b719efeebfb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47445, "upload_time": "2013-09-15T04:18:21", "url": "https://files.pythonhosted.org/packages/e8/d1/83127544cf0f5809ddbf87def93f6451031103eca05d316b1ffb49dc7257/django-location-2.0.5.tar.gz" } ], "2.0.6": [ { "comment_text": "", "digests": { "md5": "0f60b2ec0a996551a2b60ec3fd78c4c7", "sha256": "4db01a06c315a24c38e4565e097e718022732a25291d4249603272e5b4b90f39" }, "downloads": -1, "filename": "django-location-2.0.6.tar.gz", "has_sig": false, "md5_digest": "0f60b2ec0a996551a2b60ec3fd78c4c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47457, "upload_time": "2013-10-10T16:13:36", "url": "https://files.pythonhosted.org/packages/1c/40/f6bba983a100af1d0b8b44c92c4a57c4c0997998d0476265ca494a2e3b28/django-location-2.0.6.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "57e1ff0bd7ccc3e3e10e6055538bbd12", "sha256": "aba7a0aaa0b995eac38d8386e79d80e5723ddfb0dda2b66763ffb704c54ae19e" }, "downloads": -1, "filename": "django-location-2.1.0.tar.gz", "has_sig": false, "md5_digest": "57e1ff0bd7ccc3e3e10e6055538bbd12", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46615, "upload_time": "2013-12-24T01:51:02", "url": "https://files.pythonhosted.org/packages/1c/15/67ce77f6be17e441225ca1b9363b2abef5999592b954025fa32db3d5e65e/django-location-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "207fc90bc2952bed621fa59196077f7d", "sha256": "226b3907ff66b29f78822a4b8209844e6440cf909cc8213a16506e41c3bdc70a" }, "downloads": -1, "filename": "django-location-2.1.1.tar.gz", "has_sig": false, "md5_digest": "207fc90bc2952bed621fa59196077f7d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46619, "upload_time": "2013-12-24T01:59:46", "url": "https://files.pythonhosted.org/packages/54/30/47a484933367afe0ffdfc9038954bf7e3ea32f00ec9c4711cd6f02189a1a/django-location-2.1.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "207fc90bc2952bed621fa59196077f7d", "sha256": "226b3907ff66b29f78822a4b8209844e6440cf909cc8213a16506e41c3bdc70a" }, "downloads": -1, "filename": "django-location-2.1.1.tar.gz", "has_sig": false, "md5_digest": "207fc90bc2952bed621fa59196077f7d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46619, "upload_time": "2013-12-24T01:59:46", "url": "https://files.pythonhosted.org/packages/54/30/47a484933367afe0ffdfc9038954bf7e3ea32f00ec9c4711cd6f02189a1a/django-location-2.1.1.tar.gz" } ] }