========
Overview
========
Django related examples/tricks/modules for uWSGI.
* Free software: MIT license
Installation
============
::
pip install django-uwsgi-admin
You can also install the in-development version with::
pip install https://github.com/ionelmc/django-uwsgi-admin/archive/master.zip
Documentation
=============
https://django-uwsgi-admin.readthedocs.io/
Screenshots
===========
`django-debug-toolbar <http://django-debug-toolbar.readthedocs.org/en/latest/>`_ panel
.. image:: https://github.com/ionelmc/django-uwsgi-admin/raw/master/docs/screenshots/screenshot1.png
`Wagtail <https://github.com/torchbox/wagtail>`_ admin interface:
.. image:: https://github.com/ionelmc/django-uwsgi-admin/raw/master/docs/screenshots/screenshot2.png
`django.contrib.admin <https://docs.djangoproject.com/en/1.10/ref/contrib/admin/>`_ interface
.. image:: https://github.com/ionelmc/django-uwsgi-admin/raw/master/docs/screenshots/screenshot3.png
.. image:: https://github.com/ionelmc/django-uwsgi-admin/raw/master/docs/screenshots/screenshot4.png
.. image:: https://github.com/ionelmc/django-uwsgi-admin/raw/master/docs/screenshots/screenshot5.png
.. image:: https://github.com/ionelmc/django-uwsgi-admin/raw/master/docs/screenshots/screenshot6.png
.. image:: https://github.com/ionelmc/django-uwsgi-admin/raw/master/docs/screenshots/screenshot7.png
.. image:: https://github.com/ionelmc/django-uwsgi-admin/raw/master/docs/screenshots/screenshot8.png
Development
===========
To run all the tests run::
tox
Note, to combine the coverage data from all the tox environments run:
.. list-table::
:widths: 10 90
:stub-columns: 1
- - Windows
- ::
set PYTEST_ADDOPTS=--cov-append
tox
- - Other
- ::
PYTEST_ADDOPTS=--cov-append tox
Changelog
=========
2.0.1 (2023-01-13)
------------------
* UwsgiWorkersPanel no longer tries to generate stats if there's no uwsgi.
2.0.0 (2023-01-12)
------------------
* Removed the decorators module, something that only existed to avoid installing a separate package. Instead you should install the updated
`uwsgidecorators <https://pypi.org/project/uwsgidecorators/>`_ package.
* Removed ``django_uwsgi.template.Loader`` (and the whole module) as it was broken and pretty hard to test without a custom build of uWSGI.
* Split all sections in the Status page into seperate admin pages: Actions, Applications, Jobs, Magic Table, Options, Status and Workers.
* Removed the old django debug toolbar and replaced with 2 new panes:
* ``django_uwsgi.panels.UwsgiWorkersPanel``
* ``django_uwsgi.panels.UwsgiActionsPanel``
1.0.0 (2023-01-10)
------------------
* Removed the ``runuwsgi`` management command as it was very broken.
Yes, I've looked at `django-uwsgi-ng <https://pypi.org/project/django-uwsgi-ng/>`_
(another fork, which has lots of changes for that command) and it's still pretty unusable in general (expects a certain project layout,
and still generates weird if not broken configuration).
Instead you should own your uWSGI configuration and not lets some tool generate it for you as some of the options have high impact on
the behavior and performance of uWSGI.
* Fixed stats page title.
* Made clear cache and reload actions be performed safely over POST requests (previously they were GET requests).
0.3.0 (2023-01-09)
------------------
Forked from https://github.com/unbit/django-uwsgi this adds:
* Support for latest Django releases (3.2+).
* A basic integration test suite.
* Removed lots of old compat cruft.
* Integrated the uWSGI stats pane directly in the Django admin. Adding urls manually is no longer necessary.
* Removed the old wagtail-styled admin page (it was broken anyway).
Raw data
{
"_id": null,
"home_page": "https://github.com/ionelmc/django-uwsgi-admin",
"name": "django-uwsgi-admin",
"maintainer": "Ionel Cristian Maries",
"docs_url": null,
"requires_python": ">=3.7",
"maintainer_email": "contact@ionelmc.ro",
"keywords": "uwsgi,django,mail,cache,template",
"author": "Eugene MechanisM",
"author_email": "eugene@mechanism.pro",
"download_url": "https://files.pythonhosted.org/packages/5a/e8/92f88b8fd855c5f1c9bc734b1d263e0704e0d8fa5f5b4d1e6d3734561365/django-uwsgi-admin-2.0.1.tar.gz",
"platform": null,
"description": "========\nOverview\n========\n\n\n\nDjango related examples/tricks/modules for uWSGI.\n\n* Free software: MIT license\n\nInstallation\n============\n\n::\n\n pip install django-uwsgi-admin\n\nYou can also install the in-development version with::\n\n pip install https://github.com/ionelmc/django-uwsgi-admin/archive/master.zip\n\n\nDocumentation\n=============\n\nhttps://django-uwsgi-admin.readthedocs.io/\n\nScreenshots\n===========\n\n`django-debug-toolbar <http://django-debug-toolbar.readthedocs.org/en/latest/>`_ panel\n\n.. image:: https://github.com/ionelmc/django-uwsgi-admin/raw/master/docs/screenshots/screenshot1.png\n\n`Wagtail <https://github.com/torchbox/wagtail>`_ admin interface:\n\n.. image:: https://github.com/ionelmc/django-uwsgi-admin/raw/master/docs/screenshots/screenshot2.png\n\n`django.contrib.admin <https://docs.djangoproject.com/en/1.10/ref/contrib/admin/>`_ interface\n\n.. image:: https://github.com/ionelmc/django-uwsgi-admin/raw/master/docs/screenshots/screenshot3.png\n.. image:: https://github.com/ionelmc/django-uwsgi-admin/raw/master/docs/screenshots/screenshot4.png\n.. image:: https://github.com/ionelmc/django-uwsgi-admin/raw/master/docs/screenshots/screenshot5.png\n.. image:: https://github.com/ionelmc/django-uwsgi-admin/raw/master/docs/screenshots/screenshot6.png\n.. image:: https://github.com/ionelmc/django-uwsgi-admin/raw/master/docs/screenshots/screenshot7.png\n.. image:: https://github.com/ionelmc/django-uwsgi-admin/raw/master/docs/screenshots/screenshot8.png\n\nDevelopment\n===========\n\nTo run all the tests run::\n\n tox\n\nNote, to combine the coverage data from all the tox environments run:\n\n.. list-table::\n :widths: 10 90\n :stub-columns: 1\n\n - - Windows\n - ::\n\n set PYTEST_ADDOPTS=--cov-append\n tox\n\n - - Other\n - ::\n\n PYTEST_ADDOPTS=--cov-append tox\n\n\nChangelog\n=========\n\n\n2.0.1 (2023-01-13)\n------------------\n\n* UwsgiWorkersPanel no longer tries to generate stats if there's no uwsgi.\n\n2.0.0 (2023-01-12)\n------------------\n\n* Removed the decorators module, something that only existed to avoid installing a separate package. Instead you should install the updated\n `uwsgidecorators <https://pypi.org/project/uwsgidecorators/>`_ package.\n* Removed ``django_uwsgi.template.Loader`` (and the whole module) as it was broken and pretty hard to test without a custom build of uWSGI.\n* Split all sections in the Status page into seperate admin pages: Actions, Applications, Jobs, Magic Table, Options, Status and Workers.\n* Removed the old django debug toolbar and replaced with 2 new panes:\n\n * ``django_uwsgi.panels.UwsgiWorkersPanel``\n * ``django_uwsgi.panels.UwsgiActionsPanel``\n\n1.0.0 (2023-01-10)\n------------------\n\n* Removed the ``runuwsgi`` management command as it was very broken.\n Yes, I've looked at `django-uwsgi-ng <https://pypi.org/project/django-uwsgi-ng/>`_\n (another fork, which has lots of changes for that command) and it's still pretty unusable in general (expects a certain project layout,\n and still generates weird if not broken configuration).\n\n Instead you should own your uWSGI configuration and not lets some tool generate it for you as some of the options have high impact on\n the behavior and performance of uWSGI.\n* Fixed stats page title.\n* Made clear cache and reload actions be performed safely over POST requests (previously they were GET requests).\n\n0.3.0 (2023-01-09)\n------------------\n\nForked from https://github.com/unbit/django-uwsgi this adds:\n\n* Support for latest Django releases (3.2+).\n* A basic integration test suite.\n* Removed lots of old compat cruft.\n* Integrated the uWSGI stats pane directly in the Django admin. Adding urls manually is no longer necessary.\n* Removed the old wagtail-styled admin page (it was broken anyway).\n\n\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "Django related examples/tricks/modules for uWSGI.",
"version": "2.0.1",
"split_keywords": [
"uwsgi",
"django",
"mail",
"cache",
"template"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "37bec18b4140db7d62b80dcdecfe4c7e07d8b42fc45396cf7713d4f425d93683",
"md5": "89ffa55a3a5ff2df504302816afd6b1c",
"sha256": "edc4bfb831da7765f79ace7fdaf371cb82a0b72c6a42f8fd19206ef6e435cb6b"
},
"downloads": -1,
"filename": "django_uwsgi_admin-2.0.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "89ffa55a3a5ff2df504302816afd6b1c",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.7",
"size": 20744,
"upload_time": "2023-01-13T13:36:01",
"upload_time_iso_8601": "2023-01-13T13:36:01.721526Z",
"url": "https://files.pythonhosted.org/packages/37/be/c18b4140db7d62b80dcdecfe4c7e07d8b42fc45396cf7713d4f425d93683/django_uwsgi_admin-2.0.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5ae892f88b8fd855c5f1c9bc734b1d263e0704e0d8fa5f5b4d1e6d3734561365",
"md5": "d1e75c2ac5c4df077da448b772859668",
"sha256": "5d344d28c26dd5c3509c829a98951ebb48a095e0f4b539e36942389294566c7c"
},
"downloads": -1,
"filename": "django-uwsgi-admin-2.0.1.tar.gz",
"has_sig": false,
"md5_digest": "d1e75c2ac5c4df077da448b772859668",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.7",
"size": 537811,
"upload_time": "2023-01-13T13:36:03",
"upload_time_iso_8601": "2023-01-13T13:36:03.556551Z",
"url": "https://files.pythonhosted.org/packages/5a/e8/92f88b8fd855c5f1c9bc734b1d263e0704e0d8fa5f5b4d1e6d3734561365/django-uwsgi-admin-2.0.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-01-13 13:36:03",
"github": true,
"gitlab": false,
"bitbucket": false,
"github_user": "ionelmc",
"github_project": "django-uwsgi-admin",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"tox": true,
"lcname": "django-uwsgi-admin"
}