{ "info": { "author": "Timothee Mazzucotelli", "author_email": "timothee.mazzucotelli@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: ISC License (ISCL)", "Operating System :: Unix", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Utilities" ], "description": "=====================\nDjango Suit Dashboard\n=====================\n\n\n\nCreate a dashboard within Django admin interface.\n\nThis application was originally designed to work within `Django Suit`_\n(hence the name), but it is now decoupled from it, you can use it without Suit.\n\nHere is a quick explanation of how it works:\n\n- you write a base template to add CSS/JavaScript libraries (optional)\n- you write a custom AdminSite to override default URLs and/or add others\n- you write the corresponding views, inheriting from DashboardView\n- each view render the base template (or an extended one) with a grid in\n the context (layout of rows and columns)\n- columns can contain boxes of content (visual separation on the page)\n- boxes can contain widgets, for which you write the HTML/CSS/JS\n\nSo basically django-suit-dashboard does not do much, it just provides a way\nto create a dashboard in admin interface without touching too much to HTML\n(which not everyone will approve).\n\n.. _`Django Suit`: https://github.com/darklow/django-suit\n\nScreenshot\n==========\n\n.. image:: https://cloud.githubusercontent.com/assets/3999221/14685134/8cde04be-0733-11e6-8eda-b59f2e2fa6c3.png\n :alt: Screenshot\n\nLicense\n=======\n\nSoftware licensed under `ISC`_ license.\n\n.. _ISC: https://www.isc.org/downloads/software-support-policy/isc-license/\n\nInstallation\n============\n\n::\n\n pip install django-suit-dashboard\n\nDocumentation\n=============\n\n`On ReadTheDocs`_\n\n.. _`On ReadTheDocs`: http://django-suit-dashboard.readthedocs.io/\n\nDemo project\n============\n\nFollow these instructions to run the demo locally:\n\n.. code:: bash\n\n git clone https://github.com/Pawamoy/suit-dashboard-demo\n cd suit-dashboard-demo\n ./install.sh\n ^C (Ctrl-c)\n ./run.sh [with-suit] # any non-empty arg will do\n\nConnect to the admin interface with your system username and password `admin_password`.\n\nDon't hesitate to send me Pull Requests to share your boxes and widgets,\nI will add them into the demo pages!\n\nApplications using Suit-Dashboard\n=================================\n\nHere is a list of Django Apps using Suit-Dashboard. You might find some\ninteresting ways of using it.\n\n- `django-cerberus-ac`_: role-based access control for Django (early development)\n- `django-meerkat`_: security audit application for Django sites (work in progress)\n\n.. _`django-cerberus-ac`: https://github.com/Deavelleye/dj-CerberusAC\n.. _`django-meerkat`: https://github.com/Pawamoy/django-meerkat\n\nDevelopment\n===========\n\nTo run all the tests: ``tox``\n\n=========\nChangelog\n=========\n\n2.0.6 (2017-05-29)\n==================\n\n- Update to support django-app-settings 0.3.0.\n\n2.0.5 (2017-05-29)\n==================\n\n- Update tests.\n\n2.0.4 (2017-05-29)\n==================\n\n* Fix `dashboard_js` block not being added while rendering when not using Django Suit.\n* Add demo project.\n* Add diagram in documentation.\n* Remove display templates (if you were using them, please copy them\n back from the docs into your project).\n\n2.0.3 (2017-04-10)\n==================\n\n* Use instance's crumbs.\n* As for boxes, accept keyword arguments to set in widgets.\n* Fix real-time setting default ``url_name``.\n* Remove ``PartialResponse`` from ``__init__.__all__``.\n* Update breadcrumbs to strictly match classic and Suit's styles.\n\n\n2.0.2 (2017-04-03)\n==================\n\n* Add title option to views.\n* Don't display crumbs if none.\n* Move PartialResponse into real-time function to avoid ``AppsNotReady`` (fix #30).\n\n2.0.1 (2017-03-29)\n==================\n\n* All objects are now importable directly from ``suit_dashboard``.\n* Moved application settings into an ``apps`` module.\n\n\n2.0.0 (2017-03-20)\n==================\n\nThe version 2.0.0 adds more flexibility and simplicity of usage\nto the application. It doesn't try to be smart anymore, nor force usage\nof particular CSS/JS libraries.\n\n* Add app settings (currently just SUIT_DASH_DEFAULT_TIME_INTERVAL).\n* Uncouple from Django Suit. The name will remain django-suit-dashboard because\n it was originally designed to work within Django Suit. The application sees\n if Suit is in use and set the breadcrumbs accordingly (it supports both\n classic and Suit style).\n* A ``suit`` variable is injected into template's context so you can update\n behavior according to it. Use it like ``{% if suit %}...{% endif %}``.\n* Various API changes, check the documentation to see them.\n\n1.0.3 (2016-12-31)\n==================\n\n* Updates from upstream cookiecutter-pydjama.\n\n1.0.2 (2016-10-19)\n==================\n\n* Fix Python 3 compatibility.\n\n1.0.1 (2016-09-30)\n==================\n\n* Fix type check of column elements.\n* Fix missing dependency django-braces.\n\n1.0.0 (2016-09-01)\n==================\n\nVarious fixes and behavior changes.\n\n* Fix bumpversion configuration.\n* Add possibility to give grid as argument to super get.\n* Change persistent to false (unpredictable behavior with cache?).\n* Fix changing URL for refreshable items.\n* Update docs, decorator now supports args or not, fix case when multiple series in template.\n* Allow lazy initialization for boxes (or not).\n* Change Box behavior, improve refreshable decorator, implement JSON refresh in box template.\n* Fix URLs in README.\n* Configure isort to understand django apps, fix imports order.\n* Add refreshable data view and decorator and display.\n* Fix inconsistent title error.\n* Remove BSD2 link from README.\n* Display item names only if they exist.\n* Change context to kwargs, add context as argument.\n* Fix issue #4.\n* Fix overwriting default value if variable's parent was defined. Also log exceptions in console.\n* Add id for each item in table.\n* Move element title inside 'group' condition.\n* Fix issue #1.\n\n0.1.0 (2016-04-19)\n==================\n\n* Alpha release on PyPI.\n\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/Pawamoy/django-suit-dashboard", "keywords": "django-suit-dashboard", "license": "ISC", "maintainer": "", "maintainer_email": "", "name": "django-suit-dashboard", "package_url": "https://pypi.org/project/django-suit-dashboard/", "platform": "", "project_url": "https://pypi.org/project/django-suit-dashboard/", "project_urls": { "Homepage": "https://github.com/Pawamoy/django-suit-dashboard" }, "release_url": "https://pypi.org/project/django-suit-dashboard/2.0.6/", "requires_dist": [ "django-app-settings", "django-braces" ], "requires_python": "", "summary": "Create a dashboard within Django admin interface", "version": "2.0.6" }, "last_serial": 3408169, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "8cb6425bcb59e6022a186a73e99e93a9", "sha256": "a3b9ee619e74ca9ce9aa5f9cef77af9a9669728c4d43209ebb894aa30f307e1a" }, "downloads": -1, "filename": "django_suit_dashboard-0.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8cb6425bcb59e6022a186a73e99e93a9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 8033, "upload_time": "2016-04-19T18:32:57", "url": "https://files.pythonhosted.org/packages/5d/59/f0572a65ecad86c39c7b66c9023695803b8b1f4fa80b78bac10a5f8bdf50/django_suit_dashboard-0.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6605ffbb43d41d51697a6ababec3ed6a", "sha256": "82208a2f5ae4e02f60d164f1476c73d25bf42fbdfb1cf8721d5aa35517509cb3" }, "downloads": -1, "filename": "django-suit-dashboard-0.1.0.tar.gz", "has_sig": false, "md5_digest": "6605ffbb43d41d51697a6ababec3ed6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18664, "upload_time": "2016-04-19T18:33:15", "url": "https://files.pythonhosted.org/packages/2a/36/709501b9f573a133d76492071457ed821f55bb43d5dca49698ac43054f5e/django-suit-dashboard-0.1.0.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "25761b23a2bda891999b699dc4c31cab", "sha256": "bc0c87dab398eef5d9ce23eda6c665c30ea09b354450e436a647c57c0682442a" }, "downloads": -1, "filename": "django_suit_dashboard-1.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "25761b23a2bda891999b699dc4c31cab", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10636, "upload_time": "2016-09-01T11:45:34", "url": "https://files.pythonhosted.org/packages/39/78/da72bdba9e3bf2bd4f6d1d7637848ba288d554a1e98eb835f07b9368bca5/django_suit_dashboard-1.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0ff2624df50afd6ea32a3df424a7560c", "sha256": "f1428fcc5e466a8c36a6e3c882957f4ea59d66f54ce98c529d3bf8828797bc8a" }, "downloads": -1, "filename": "django-suit-dashboard-1.0.0.tar.gz", "has_sig": false, "md5_digest": "0ff2624df50afd6ea32a3df424a7560c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17955, "upload_time": "2016-09-01T11:45:37", "url": "https://files.pythonhosted.org/packages/49/7c/41ef5e194617a0782ec5875f2d57b8cfe0479236e860ef12d2bc4e140cd6/django-suit-dashboard-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "63dddd8f4fa4b23b7af614f63cc7c357", "sha256": "8277a9f4f76cd1e99924d808df512e0e94652db9b2fc42e13e423fd04a5b1f54" }, "downloads": -1, "filename": "django_suit_dashboard-1.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "63dddd8f4fa4b23b7af614f63cc7c357", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10691, "upload_time": "2016-09-30T09:07:39", "url": "https://files.pythonhosted.org/packages/e3/2b/50321a1a6b3dba5fae3c648a07a29f590b8d1fe148d5758bd97438677002/django_suit_dashboard-1.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "561aa6a00fa50089ce239ed179e33a8b", "sha256": "06dd59cf0c0c2508ec17a2922eccc747ab09ea5bd8495acae881b5a77fbb4f41" }, "downloads": -1, "filename": "django-suit-dashboard-1.0.1.tar.gz", "has_sig": false, "md5_digest": "561aa6a00fa50089ce239ed179e33a8b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18422, "upload_time": "2016-09-30T09:07:41", "url": "https://files.pythonhosted.org/packages/12/bc/23ee28cb09a8004d7f299af9ebdcd73b0691e8112f3df75a4189a82a0af6/django-suit-dashboard-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "fa13112b2a2e56b6da65698890f0725f", "sha256": "f89023c9e4f0131e9c8ccbc6b0d69df8a02a99412b91005b204b6a39475048ae" }, "downloads": -1, "filename": "django_suit_dashboard-1.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fa13112b2a2e56b6da65698890f0725f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 10700, "upload_time": "2016-10-19T12:42:11", "url": "https://files.pythonhosted.org/packages/92/1a/df367705ddf9b62044853431d73f02ab031e75fab0a69d8b5c89ee8863d3/django_suit_dashboard-1.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2175f4ca6427e249f7e73dfd29b4b885", "sha256": "e6c7d9620ef343ea8726323831615a43cc94caa610536ea811fef5512b6ce1ce" }, "downloads": -1, "filename": "django-suit-dashboard-1.0.2.tar.gz", "has_sig": false, "md5_digest": "2175f4ca6427e249f7e73dfd29b4b885", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18329, "upload_time": "2016-10-19T12:42:14", "url": "https://files.pythonhosted.org/packages/e7/d7/36b553e2deab6d7e612f883b8e891ebdb436e1b6b2193d930c2270fea607/django-suit-dashboard-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "7dbbfc609222e1c2005179600f2ba70b", "sha256": "038bf9209c073b2f0e7939935dce1292b22f0d9ac410585a7f23c34fb206ba32" }, "downloads": -1, "filename": "django_suit_dashboard-1.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7dbbfc609222e1c2005179600f2ba70b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 12267, "upload_time": "2016-12-31T19:51:53", "url": "https://files.pythonhosted.org/packages/f8/a7/2d8b3927d8cf6b347ceb8eba7558c599c4a6839c210d8a685eaefac9369c/django_suit_dashboard-1.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "24cd193a7d0a62c3d3849b1ecb0c5248", "sha256": "8281bb15f76ebbf25dc4dc78d83a801597131978af6d2d3be18b5ec240b66ac1" }, "downloads": -1, "filename": "django-suit-dashboard-1.0.3.tar.gz", "has_sig": false, "md5_digest": "24cd193a7d0a62c3d3849b1ecb0c5248", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23071, "upload_time": "2016-12-31T19:51:56", "url": "https://files.pythonhosted.org/packages/78/23/9c3f5153c7d0f2f7503c67d687322bbb78a584fefac3554b6598093ca0e3/django-suit-dashboard-1.0.3.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "66c06458bcd09ea03dcd45bf2dfc3dcd", "sha256": "26cbb2dfdf515b5d14428b9eb1e8418cd05fba1b08c5d8e6679da046501c462f" }, "downloads": -1, "filename": "django_suit_dashboard-2.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "66c06458bcd09ea03dcd45bf2dfc3dcd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16515, "upload_time": "2017-03-20T16:37:35", "url": "https://files.pythonhosted.org/packages/68/68/51fca41159a8417bb1de0b6e8c1dea82685aed3e0ffd6f6d5bba98020826/django_suit_dashboard-2.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "31679758741ea76eef4946cde9af3d49", "sha256": "78beef6c441c03a3a30f67037ba76fd21fcc9363c4c69ec56ba9882c100ab3b2" }, "downloads": -1, "filename": "django-suit-dashboard-2.0.0.tar.gz", "has_sig": false, "md5_digest": "31679758741ea76eef4946cde9af3d49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29694, "upload_time": "2017-03-20T16:37:37", "url": "https://files.pythonhosted.org/packages/5b/96/c8deb18bc34ba54efeec89192db9603c149b2afdda51126893ec60dd65ee/django-suit-dashboard-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "b9c818c03e0946830043e1d92490d208", "sha256": "d29d24c4014b0113dccdfcfdca92157c10b6bda408c7191fc4628d338ec691bc" }, "downloads": -1, "filename": "django_suit_dashboard-2.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b9c818c03e0946830043e1d92490d208", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17109, "upload_time": "2017-03-29T16:26:46", "url": "https://files.pythonhosted.org/packages/f8/01/98c50d173ac6890a93806efb4bcfa1a1fa935d2f65d6222e5ea3518897bf/django_suit_dashboard-2.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "621d8aad36851f412d046cb680973ce7", "sha256": "a6026fe616e89643fdbcd07980efdd2acc86d60eefb08c6084006f10965165b8" }, "downloads": -1, "filename": "django-suit-dashboard-2.0.1.tar.gz", "has_sig": false, "md5_digest": "621d8aad36851f412d046cb680973ce7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30051, "upload_time": "2017-03-29T16:26:48", "url": "https://files.pythonhosted.org/packages/36/47/c03795cd31485177fd6e1770cda15799adaff58a42865e1aec9327332919/django-suit-dashboard-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "046dc6fd94888ee12dc7791f8ccb147f", "sha256": "44e885217c026b564b09a0559089ce9262b31c3e35772bf87a3aa4ccb25dd20b" }, "downloads": -1, "filename": "django_suit_dashboard-2.0.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "046dc6fd94888ee12dc7791f8ccb147f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17112, "upload_time": "2017-04-03T12:15:10", "url": "https://files.pythonhosted.org/packages/34/4a/00950ae1c64f27207da630e2c626c5b28d8de956bd4e6ff4791d170e0feb/django_suit_dashboard-2.0.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8dca1c6d26b92c218def9684d5d7aeba", "sha256": "08e757ef1a77d623c02bf3edaa7c4ba8da92d0f372e36e45cdad57270cd2dc92" }, "downloads": -1, "filename": "django-suit-dashboard-2.0.2.tar.gz", "has_sig": false, "md5_digest": "8dca1c6d26b92c218def9684d5d7aeba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30959, "upload_time": "2017-04-03T12:15:12", "url": "https://files.pythonhosted.org/packages/7c/32/295a37a84d35f66f8362f9621e99e2aadab862351cecbd9386a5f7b0b9db/django-suit-dashboard-2.0.2.tar.gz" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "78d1d9dfc333a8657d4f4b392be3499a", "sha256": "d53cd02b19051ef7489dc994a8854df05bfca9442876ff2e967bc0333a210c04" }, "downloads": -1, "filename": "django_suit_dashboard-2.0.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "78d1d9dfc333a8657d4f4b392be3499a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 17349, "upload_time": "2017-04-10T11:56:10", "url": "https://files.pythonhosted.org/packages/52/b8/7044123a15d970bf230f64e10b35d5a8390629b9819ba90a48375f64dbed/django_suit_dashboard-2.0.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "10fa5cebfe42c35d574c12081d64519f", "sha256": "6ec578e27b83c24609720dddcd162516855177a5dc7a6d1f0d5623da3b20084a" }, "downloads": -1, "filename": "django-suit-dashboard-2.0.3.tar.gz", "has_sig": false, "md5_digest": "10fa5cebfe42c35d574c12081d64519f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31217, "upload_time": "2017-04-10T11:56:12", "url": "https://files.pythonhosted.org/packages/4f/1a/c4a6bda1c743f86c5e9f8c3015e1ea819237b4ff62e65cb50d8a2e7b5cc7/django-suit-dashboard-2.0.3.tar.gz" } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "53740edb2869f0786c6a482f83b50843", "sha256": "992cdfa26828a89d6803b16f1c40afb8b4463b5b2fb427cfd6bf072fdc057676" }, "downloads": -1, "filename": "django_suit_dashboard-2.0.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "53740edb2869f0786c6a482f83b50843", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15612, "upload_time": "2017-05-29T17:30:34", "url": "https://files.pythonhosted.org/packages/ec/5f/d986986c7803e7dbded3ca7c5e2e7f6b12c478b954c16b5a3666aa64c169/django_suit_dashboard-2.0.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4ee24890e2440219dcdc43634c683f86", "sha256": "6482a3d8078849c34ce95d414bfd46ed2604d589ef0b6d62642d2013ed344c5c" }, "downloads": -1, "filename": "django-suit-dashboard-2.0.4.tar.gz", "has_sig": false, "md5_digest": "4ee24890e2440219dcdc43634c683f86", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31471, "upload_time": "2017-05-29T17:30:36", "url": "https://files.pythonhosted.org/packages/90/f2/df3fc47d0df3cb1964cd56fb05211569a450948ecf3078de7b2f6bf9f48e/django-suit-dashboard-2.0.4.tar.gz" } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "9711eaeeffd5c5bd68a404ead8c7368a", "sha256": "3de13937fb727879dcb92d319ec15e66ad4d13a4a3fb70f8c63ff45cefc5f2cd" }, "downloads": -1, "filename": "django_suit_dashboard-2.0.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9711eaeeffd5c5bd68a404ead8c7368a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15608, "upload_time": "2017-07-06T12:59:43", "url": "https://files.pythonhosted.org/packages/69/59/4ea29cf6cf72874e9f7bc4550951f40fe1fda88e27607a6e8b8be747a821/django_suit_dashboard-2.0.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "232e14fc1bacd8310669e4dd70a8fafb", "sha256": "9b050cfc947de2eac1fe6f97e84f52049db80e7db9257706bcc671565107ae08" }, "downloads": -1, "filename": "django-suit-dashboard-2.0.5.tar.gz", "has_sig": false, "md5_digest": "232e14fc1bacd8310669e4dd70a8fafb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74473, "upload_time": "2017-07-06T12:59:45", "url": "https://files.pythonhosted.org/packages/b8/4f/56ff886969ddab24d08ad60f7c46632ad65df6f7be392cd375ee95757979/django-suit-dashboard-2.0.5.tar.gz" } ], "2.0.6": [ { "comment_text": "", "digests": { "md5": "e4f708b857e5a894158e6b11b09632c0", "sha256": "97206bcfd066440859a8ffcffea9d9a3f82b8a5823f8ce69d9d7f329a6bc34c9" }, "downloads": -1, "filename": "django_suit_dashboard-2.0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e4f708b857e5a894158e6b11b09632c0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15704, "upload_time": "2017-12-11T18:41:52", "url": "https://files.pythonhosted.org/packages/96/69/e10bf611820fc8c2b5523cd16808a6c073ca31e742e0b37e1ca64a274629/django_suit_dashboard-2.0.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f0e259b20f21509d7fa8c6085b971f63", "sha256": "2c4f435192db9d7384440384f23fa92377eaff7a23abb08fd4ac5e859c7e64a7" }, "downloads": -1, "filename": "django-suit-dashboard-2.0.6.tar.gz", "has_sig": false, "md5_digest": "f0e259b20f21509d7fa8c6085b971f63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74602, "upload_time": "2017-12-11T18:41:55", "url": "https://files.pythonhosted.org/packages/ba/74/a0279fcabeca59c7cea9f70d9c182b8d5b4ff5e71f07fa2b47d1ef1e5dc0/django-suit-dashboard-2.0.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e4f708b857e5a894158e6b11b09632c0", "sha256": "97206bcfd066440859a8ffcffea9d9a3f82b8a5823f8ce69d9d7f329a6bc34c9" }, "downloads": -1, "filename": "django_suit_dashboard-2.0.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e4f708b857e5a894158e6b11b09632c0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 15704, "upload_time": "2017-12-11T18:41:52", "url": "https://files.pythonhosted.org/packages/96/69/e10bf611820fc8c2b5523cd16808a6c073ca31e742e0b37e1ca64a274629/django_suit_dashboard-2.0.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f0e259b20f21509d7fa8c6085b971f63", "sha256": "2c4f435192db9d7384440384f23fa92377eaff7a23abb08fd4ac5e859c7e64a7" }, "downloads": -1, "filename": "django-suit-dashboard-2.0.6.tar.gz", "has_sig": false, "md5_digest": "f0e259b20f21509d7fa8c6085b971f63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74602, "upload_time": "2017-12-11T18:41:55", "url": "https://files.pythonhosted.org/packages/ba/74/a0279fcabeca59c7cea9f70d9c182b8d5b4ff5e71f07fa2b47d1ef1e5dc0/django-suit-dashboard-2.0.6.tar.gz" } ] }