{ "info": { "author": "Daniel Greenfeld", "author_email": "pydanny@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: JavaScript", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "================\ndjango-mongonaut\n================\n:Info: An introspective interface for Django and MongoDB.\n:Version: 0.2.21\n:Maintainer: Daniel Greenfeld (http://pydanny.com)\n\n.. image:: https://travis-ci.org/pydanny/django-mongonaut.png\n :alt: Build Status\n :target: https://travis-ci.org/pydanny/django-mongonaut\n\nAbout\n=====\n\ndjango-mongonaut is an introspective interface for working with MongoDB via mongoengine. Rather then attempt to staple this functionality into Django's Admin interface, django-mongonaut takes the approach of rolling a new framework from scratch.\n\nBy writing it from scratch I get to avoid trying to staple ORM functionality on top of MongoDB, a NoSQL key/value binary-tree store.\n\nFeatures\n=========\n\n- Automatic introspection of mongoengine documents.\n- Ability to constrain who sees what and can do what.\n- Full control to add, edit, and delete documents\n- More awesome stuff! See http://django-mongonaut.readthedocs.org/en/latest/index.html#features\n\nInstallation\n============\n\nMade as easy as possible, setup is actually easier than `django.contrib.admin`. Furthermore, the only dependencies are mongoengine and pymongo. Eventually django-mongonaut will be able to support installations without mongoengine.\n\nGet MongoDB::\n\n Download the right version per http://www.mongodb.org/downloads\n \nGet mongoengine (and pymongo):\n\n pip install mongoengine=>0.5.2\n\nGet the code::\n\n pip install django-mongonaut==0.2.20\n \nInstall the dependency in your settings.py::\n\n INSTALLED_APPS = (\n ...\n 'mongonaut',\n ...\n )\n \nYou will need the following also set up:\n\n* django.contrib.sessions\n* django.contrib.messages\n\n.. note:: No need for `autodiscovery()` with django-mongonaut!\n\nAdd the mongonaut urls.py file to your urlconf file:\n\n.. sourcecode:: python\n\n urlpatterns = patterns('',\n ...\n (r'^mongonaut/', include('mongonaut.urls')),\n ...\n )\n\n\nConfiguration\n=============\n\ndjango-mongonaut will let you duplicate much of what `django.contrib.admin` gives you, but in a way more suited for MongoDB. Still being implemented, but already works better than any other MongoDB solution for Django. A simple example::\n\n # myapp/mongoadmin.py\n\n # Import the MongoAdmin base class\n from mongonaut.sites import MongoAdmin\n\n # Import your custom models\n from blog.models import Post\n\n # Instantiate the MongoAdmin class \n # Then attach the mongoadmin to your model\n Post.mongoadmin = MongoAdmin()\n\n* http://django-mongonaut.readthedocs.org/en/latest/api.html\n\nDocumentation\n==============\n\nAll the documentation for this project is hosted at http://django-mongonaut.rtfd.org.\n\nDependencies\n============\n\n- mongoengine >=0.5.2\n- pymongo (comes with mongoengine)\n- sphinx (optional - for documentation generation)\n\nSupport this project!\n======================\n\nYou can hire the lead maintainer to perform dedicated work on this package. Please email pydanny@cartwheelweb.com.\n\n\n=========\nCHANGELOG\n=========\n\n* 0.2.21 (05/19/2014)\n\n * Backwards compatible templates so things work in Django 1.4 again. (@ashishsingh2205)\n\n* 0.2.20 (26/03/2014)\n\n * Python 3.3 compatibility (@haard)\n * Working test harness (@j1z0)\n * Fixed missing url function call in documentation (@JAORMX)\n\n* 0.2.19 (18/07/2013)\n\n * Use Select widget if choices defined for a field (@jeff-ogmento )\n * Use ordering if defined in MongoAdmin class (@jeff-ogmento )\n * Respect order of list_fields in admin class (@jeff-ogmento )\n * Fixed \"django.conf.urls.defaults is deprecated\" (@swaroopch)\n * Fix search (@swaroopch)\n * Make index page also password-protected (@swaroopch)\n\n* 0.2.18 Various things\n\n* 0.2.17 Can now add, and modify ListFields and Embedded document fields @garrypolley\n\n* 0.2.16 ListFields can be added and updated @garrypolley\n\n* 0.2.15 Editing or Adding a document does not require all fields to be filled out @garrypolley\n\n* 0.2.14 Fixed pymongo version thanks to @marsam and pagination fixes thanks to @jerzyk\n\n* 0.2.13 Fields validation and type conversion thanks to @jerzyk\n\n* 0.2.12 Bump to mongoengine 0.6.2, PEP-8, and fixing the is_authenticated problem in default permission controls.\n\n* 0.2.11 Change style over to Twitter Bootstrap 2.0.0, Add templates to manifest\n\n* 0.2.10 Proper Reference field saves, more permission fixes\n\n* 0.2.9 Permissions correction - Do remember this is in ALPHA!!!\n\n* 0.2.8 Test components, permission controls in the views, first pass on deletes, Reference field display and some really bad SELECT widget implementations on it.\n\n* authenticated Permissions refactor, list_fields implementation, and ability to add new documents\n\n* 0.2.6 Major performance enhancement of the DocumentListView\n\n* 0.2.5 Added EmbeddedDocument to form views\n\n* 0.2.4 Installation fix\n\n* 0.2.3 Installation fix\n\n* 0.2.2 Supporting of Boolean and Datetime fields and search to boot\n\n* 0.2.1 Project description fix\n\n* 0.2.0 basic form saves, pagination, and formatting\n\n* 0.1.0 Inception and fundamentals", "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/pydanny/django-mongonaut", "keywords": "mongodb,django", "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "django-mongonaut", "package_url": "https://pypi.org/project/django-mongonaut/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/django-mongonaut/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://github.com/pydanny/django-mongonaut" }, "release_url": "https://pypi.org/project/django-mongonaut/0.2.21/", "requires_dist": null, "requires_python": null, "summary": "An introspective interface for Django and MongoDB", "version": "0.2.21" }, "last_serial": 1098699, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "4d37f0a46ac6db21ba8ad643d9c8b990", "sha256": "fa5781f4c2c29a3c237f3a8c633bee9e325196f664c33cb4d38986a23a2840e9" }, "downloads": -1, "filename": "django-mongonaut-0.1.0.tar.gz", "has_sig": false, "md5_digest": "4d37f0a46ac6db21ba8ad643d9c8b990", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8556, "upload_time": "2012-01-17T00:03:25", "url": "https://files.pythonhosted.org/packages/a2/05/ef85b51da81b8ec2176a05ea8add3164e154ab10ca3c44b6b55a15003951/django-mongonaut-0.1.0.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "60e3359647e9969af55f8eab550ecbe7", "sha256": "f0bd10d81c684afbe09fdf916a62cf2139f051838faa668f615cce0c26d8402d" }, "downloads": -1, "filename": "django-mongonaut-0.2.0.tar.gz", "has_sig": false, "md5_digest": "60e3359647e9969af55f8eab550ecbe7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20691, "upload_time": "2012-01-17T19:02:29", "url": "https://files.pythonhosted.org/packages/11/d9/d3631e0c3f76bf7668706d0284141df62c3736d59ecd5beb0310d2516757/django-mongonaut-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "a94daf0037b66dde8169a5ab55002e3a", "sha256": "d81368c76061f240df9dbfe9a98941387011610e9cc863a0a09590dcf9746e0e" }, "downloads": -1, "filename": "django-mongonaut-0.2.1.tar.gz", "has_sig": false, "md5_digest": "a94daf0037b66dde8169a5ab55002e3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20682, "upload_time": "2012-01-17T19:04:43", "url": "https://files.pythonhosted.org/packages/14/e9/d296784e1dc3450936661831472169e180cae90fbaf464cdfb4b92d0dbe2/django-mongonaut-0.2.1.tar.gz" } ], "0.2.10": [ { "comment_text": "", "digests": { "md5": "17a72b41ee33e402d3763da7268c8689", "sha256": "c36b035fd5f30f6c97635a94cba8b48c127e6e26ab2b076a50abfb84af73ced9" }, "downloads": -1, "filename": "django-mongonaut-0.2.10.tar.gz", "has_sig": false, "md5_digest": "17a72b41ee33e402d3763da7268c8689", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26123, "upload_time": "2012-02-02T16:18:33", "url": "https://files.pythonhosted.org/packages/0a/24/d442e3aedc74d35e5b157452149ac85bcfb20b84e7a18e29e112f6e341eb/django-mongonaut-0.2.10.tar.gz" } ], "0.2.11": [ { "comment_text": "", "digests": { "md5": "dbf78cec3fd0a5a9ecdf1b34e11b9de3", "sha256": "36bbda5771db8d4b075504f2b7b88efa18d1e38d66d1d3189324f64151a095f0" }, "downloads": -1, "filename": "django-mongonaut-0.2.11.tar.gz", "has_sig": false, "md5_digest": "dbf78cec3fd0a5a9ecdf1b34e11b9de3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27592, "upload_time": "2012-02-20T01:40:29", "url": "https://files.pythonhosted.org/packages/3c/75/738c3245dc8c233c3c502cf9a94d562a379e5f5fce10ba0198187327d96a/django-mongonaut-0.2.11.tar.gz" } ], "0.2.12": [ { "comment_text": "", "digests": { "md5": "3c7748acc352328942dd43ef78a26759", "sha256": "4ab8963858cb3e345b20af5a31ed84894891b79f3e9e10f4f4978b5bf43e257c" }, "downloads": -1, "filename": "django-mongonaut-0.2.12.tar.gz", "has_sig": false, "md5_digest": "3c7748acc352328942dd43ef78a26759", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27539, "upload_time": "2012-04-10T20:23:49", "url": "https://files.pythonhosted.org/packages/e3/53/b5746bd7ae2860a1582b9f858620c9b10d9e0328a940d43c898d037e96aa/django-mongonaut-0.2.12.tar.gz" } ], "0.2.13": [ { "comment_text": "", "digests": { "md5": "50d1717b20a9265b6fce34f594c55eb8", "sha256": "465513c8b10f506d3f9656edb87b4c1cfd80d770f5eacaff49c43ac1cc789cd3" }, "downloads": -1, "filename": "django-mongonaut-0.2.13.tar.gz", "has_sig": false, "md5_digest": "50d1717b20a9265b6fce34f594c55eb8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27247, "upload_time": "2012-06-19T17:44:04", "url": "https://files.pythonhosted.org/packages/b0/6b/6df48ed2ec1292be9285a536c8c0551f165643e36c903c09ef28372b7a94/django-mongonaut-0.2.13.tar.gz" } ], "0.2.14": [ { "comment_text": "", "digests": { "md5": "6a519ea7756f0bb165ea32530052f4aa", "sha256": "ea2f68d9c7bcf61e6a3c17c35c63462c1f2e7cc7615fc63c4877f9cc95b5ed61" }, "downloads": -1, "filename": "django-mongonaut-0.2.14.tar.gz", "has_sig": false, "md5_digest": "6a519ea7756f0bb165ea32530052f4aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27316, "upload_time": "2012-07-14T22:44:52", "url": "https://files.pythonhosted.org/packages/74/36/78bb6b182628fc4a5a011e711e6081bbda8e16b9dbed3196a2ba2e929b5c/django-mongonaut-0.2.14.tar.gz" } ], "0.2.15": [ { "comment_text": "", "digests": { "md5": "fcd3494431103cc182c61c5e5f48ec0e", "sha256": "7afcaf3308d82e4ffa44afbcf0be32541337ee156153b3b8ce9202e712daadf9" }, "downloads": -1, "filename": "django-mongonaut-0.2.15.tar.gz", "has_sig": false, "md5_digest": "fcd3494431103cc182c61c5e5f48ec0e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27583, "upload_time": "2012-07-20T23:41:31", "url": "https://files.pythonhosted.org/packages/4b/12/e48f775804531cd4cdf6cd2f62e2b998fd9c522c58c67b261bb8da40ab8d/django-mongonaut-0.2.15.tar.gz" } ], "0.2.16": [ { "comment_text": "", "digests": { "md5": "16c9b60787e32cca39f3d8381288c622", "sha256": "d08b00813904e054551d1a3207af1a7e8d76ae6b3830b03d7a2d28cf51b3277c" }, "downloads": -1, "filename": "django-mongonaut-0.2.16.tar.gz", "has_sig": false, "md5_digest": "16c9b60787e32cca39f3d8381288c622", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30477, "upload_time": "2012-08-09T02:17:55", "url": "https://files.pythonhosted.org/packages/77/d6/6fc273942c806c3bd3fec5e084288920dd13e97c96216550077f90ff91e3/django-mongonaut-0.2.16.tar.gz" } ], "0.2.17": [ { "comment_text": "", "digests": { "md5": "873719c918dfeb34d44ded71e9509e59", "sha256": "33e4bba75f494d892c1f172be5e3a8c3bd97dd267ba964e2b0beb2b2f8643cb3" }, "downloads": -1, "filename": "django-mongonaut-0.2.17.tar.gz", "has_sig": false, "md5_digest": "873719c918dfeb34d44ded71e9509e59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35382, "upload_time": "2012-11-08T15:48:43", "url": "https://files.pythonhosted.org/packages/4b/e8/e079c1eafd62c04bd62060dc63ef83ccb65063c2b8002dcd5feb4dfb09c4/django-mongonaut-0.2.17.tar.gz" } ], "0.2.18": [ { "comment_text": "", "digests": { "md5": "255eb39d1bb8d7d6ab60e2bca525bf16", "sha256": "80c598c9c072d3feab72714562a1495ecdeb25738457008847df6cb1de4d7cd5" }, "downloads": -1, "filename": "django-mongonaut-0.2.18.tar.gz", "has_sig": false, "md5_digest": "255eb39d1bb8d7d6ab60e2bca525bf16", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35633, "upload_time": "2013-06-01T10:24:22", "url": "https://files.pythonhosted.org/packages/b2/f3/468173dc8bd7e902b60089e66caee0abce264a94ca510cf36999e1656949/django-mongonaut-0.2.18.tar.gz" } ], "0.2.19": [ { "comment_text": "", "digests": { "md5": "a46182fc963728e84dbfac961268b71f", "sha256": "29a056a5f759260422595a03673d2c2d4b88ffaa0930a0360e1e0990c5ab8910" }, "downloads": -1, "filename": "django-mongonaut-0.2.19.tar.gz", "has_sig": false, "md5_digest": "a46182fc963728e84dbfac961268b71f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37482, "upload_time": "2013-07-18T17:41:13", "url": "https://files.pythonhosted.org/packages/fa/20/102df5ab8c467ffd298409e6b7d785d4aec0c963b3ec4a909e6ac0eb425a/django-mongonaut-0.2.19.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "751ea2916cf3a471d62d9f7ac6a70acc", "sha256": "31de74d286940ea29ac884d700e579ea3e15d678da4536ee4954a0d84e1a1453" }, "downloads": -1, "filename": "django-mongonaut-0.2.2.tar.gz", "has_sig": false, "md5_digest": "751ea2916cf3a471d62d9f7ac6a70acc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21187, "upload_time": "2012-01-17T20:39:43", "url": "https://files.pythonhosted.org/packages/c9/6b/eb522d6fc83d3d5deaca38d16586fc0b52c62e4ca19f92aef80f32102aee/django-mongonaut-0.2.2.tar.gz" } ], "0.2.20": [ { "comment_text": "", "digests": { "md5": "d02ef5e32eafbf77a743a74e01405677", "sha256": "ff957cba202ea8eaf2adeda36bd1c65cc5d4796ab1e458af514fad9c8ceebe17" }, "downloads": -1, "filename": "django-mongonaut-0.2.20.tar.gz", "has_sig": false, "md5_digest": "d02ef5e32eafbf77a743a74e01405677", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38085, "upload_time": "2014-03-26T20:34:44", "url": "https://files.pythonhosted.org/packages/c0/db/eec28161b725ced1834861d9bae06b663ad4959af5f8077282e2bcf83330/django-mongonaut-0.2.20.tar.gz" } ], "0.2.21": [ { "comment_text": "", "digests": { "md5": "633d5f45917368b88d6346b60cb89cd9", "sha256": "0edd888df173067b6f44862155a72aa22c016553e8212ac3fddfa969b9378559" }, "downloads": -1, "filename": "django-mongonaut-0.2.21.tar.gz", "has_sig": false, "md5_digest": "633d5f45917368b88d6346b60cb89cd9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38274, "upload_time": "2014-05-20T15:35:29", "url": "https://files.pythonhosted.org/packages/fe/33/9a977dc01126fc84b4cee4277e2846230572a1bc5109675bb72901a73b21/django-mongonaut-0.2.21.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "8b5ff111781879fded0feb71613dc739", "sha256": "96ecfcdad730f33771514212eb641e895d5c2d20a338aa8f1c612c4ae2b3f48c" }, "downloads": -1, "filename": "django-mongonaut-0.2.3.tar.gz", "has_sig": false, "md5_digest": "8b5ff111781879fded0feb71613dc739", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21177, "upload_time": "2012-01-17T20:50:48", "url": "https://files.pythonhosted.org/packages/05/7e/d1375acb8c1706b099e79dddf9989bbf25465aa650d8bb1282100c310746/django-mongonaut-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "57a4131e6ac5a33b9d0d1aeed7111b29", "sha256": "50d2a10b837568808c4573ff62a1cc714c100122a8ec617ef5822472bcaa5c8e" }, "downloads": -1, "filename": "django-mongonaut-0.2.4.tar.gz", "has_sig": false, "md5_digest": "57a4131e6ac5a33b9d0d1aeed7111b29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21171, "upload_time": "2012-01-17T21:05:55", "url": "https://files.pythonhosted.org/packages/57/95/efb04a613e65f13f619febace6eca57ebbc91eedcef861b2d3c2483f0ad9/django-mongonaut-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "c4886fab70ea5366632b7ec1dd24490b", "sha256": "ceee6c0f2d5deacb495ab7d468b7d21ef51e97a8502336d51f87f7c5e2a39f9a" }, "downloads": -1, "filename": "django-mongonaut-0.2.5.tar.gz", "has_sig": false, "md5_digest": "c4886fab70ea5366632b7ec1dd24490b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21744, "upload_time": "2012-01-17T22:29:58", "url": "https://files.pythonhosted.org/packages/77/9d/3e193d7950c1a3edcd35b7c7a744e1ec604f3c84baa3be71e8bf8c74287a/django-mongonaut-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "11147ea605479fd6c0d6463ae2857064", "sha256": "a32b82b0422151b8f735f73ab7db90c6e26be1a6113ba0435562ab1d1156bf0c" }, "downloads": -1, "filename": "django-mongonaut-0.2.6.tar.gz", "has_sig": false, "md5_digest": "11147ea605479fd6c0d6463ae2857064", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21799, "upload_time": "2012-01-17T23:47:55", "url": "https://files.pythonhosted.org/packages/6b/11/16aa6045a687db86706fddb013bb97434a2178ae584e4872b3ef3cfdc8d1/django-mongonaut-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "496939c7948e16c16973ad43f95b7140", "sha256": "b9c3c2b92027d754ea9a96e989f86e9dd119260e5a3510251aee865ca0c43eea" }, "downloads": -1, "filename": "django-mongonaut-0.2.7.tar.gz", "has_sig": false, "md5_digest": "496939c7948e16c16973ad43f95b7140", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 101911, "upload_time": "2012-01-25T20:50:06", "url": "https://files.pythonhosted.org/packages/a9/24/0add0bb9371d63e65074558aabdd827abfe3f240d9bc1ae6caa7324191e7/django-mongonaut-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "143ba1c5c9375b52f105a38f11cf6a98", "sha256": "7348ea488c21cb57434cd14b054085fe66ad8009509510b596675a50fb446148" }, "downloads": -1, "filename": "django-mongonaut-0.2.8.tar.gz", "has_sig": false, "md5_digest": "143ba1c5c9375b52f105a38f11cf6a98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 114106, "upload_time": "2012-02-01T22:08:41", "url": "https://files.pythonhosted.org/packages/3d/49/8d94d63d51d518667a658ab042c63a22a4ee1d5137997a29c2289363f4f1/django-mongonaut-0.2.8.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "223465a68ca57148bff8356eb6e1396d", "sha256": "2d20e01932aa7cd62edaca44d488af60387c4465598b2a113252e706d39b4f93" }, "downloads": -1, "filename": "django-mongonaut-0.2.9.tar.gz", "has_sig": false, "md5_digest": "223465a68ca57148bff8356eb6e1396d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 114008, "upload_time": "2012-02-01T22:21:19", "url": "https://files.pythonhosted.org/packages/a7/a6/42da1e5c57ab52695e203b2650780f61c535e383900f33d10c9c538ab5aa/django-mongonaut-0.2.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "633d5f45917368b88d6346b60cb89cd9", "sha256": "0edd888df173067b6f44862155a72aa22c016553e8212ac3fddfa969b9378559" }, "downloads": -1, "filename": "django-mongonaut-0.2.21.tar.gz", "has_sig": false, "md5_digest": "633d5f45917368b88d6346b60cb89cd9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38274, "upload_time": "2014-05-20T15:35:29", "url": "https://files.pythonhosted.org/packages/fe/33/9a977dc01126fc84b4cee4277e2846230572a1bc5109675bb72901a73b21/django-mongonaut-0.2.21.tar.gz" } ] }