===================
Django Extensions
===================
.. image:: https://img.shields.io/pypi/l/django-extensions.svg
:target: https://raw.githubusercontent.com/django-extensions/django-extensions/master/LICENSE
.. image:: https://github.com/django-extensions/django-extensions/actions/workflows/compile_catalog.yml/badge.svg
:target: https://github.com/django-extensions/django-extensions/actions
.. image:: https://github.com/django-extensions/django-extensions/actions/workflows/linters.yml/badge.svg
:target: https://github.com/django-extensions/django-extensions/actions
.. image:: https://github.com/django-extensions/django-extensions/actions/workflows/precommit.yml/badge.svg
:target: https://github.com/django-extensions/django-extensions/actions
.. image:: https://github.com/django-extensions/django-extensions/actions/workflows/pytest.yml/badge.svg
:target: https://github.com/django-extensions/django-extensions/actions
.. image:: https://github.com/django-extensions/django-extensions/actions/workflows/security.yml/badge.svg
:target: https://github.com/django-extensions/django-extensions/actions
.. image:: https://img.shields.io/pypi/v/django-extensions.svg
:target: https://pypi.python.org/pypi/django-extensions/
:alt: Latest PyPI version
.. image:: https://img.shields.io/pypi/wheel/django-extensions.svg
:target: https://pypi.python.org/pypi/django-extensions/
:alt: Supports Wheel format
.. image:: https://coveralls.io/repos/django-extensions/django-extensions/badge.svg?branch=master
:target: https://coveralls.io/r/django-extensions/django-extensions?branch=master
:alt: Coverage
Django Extensions is a collection of custom extensions for the Django Framework.
Getting Started
===============
The easiest way to figure out what Django Extensions are all about is to watch the
`excellent screencast by Eric Holscher`__ (`watch the video on vimeo`__). In a couple
minutes Eric walks you through a half a dozen command extensions. There is also a
`short screencast on GoDjango's Youtube Channel`__ to help show you even more.
Requirements
============
Django Extensions requires Django 3.2 or later.
Getting It
==========
You can get Django Extensions by using pip::
$ pip install django-extensions
If you want to install it from source, grab the git repository from GitHub and run setup.py::
$ git clone git://github.com/django-extensions/django-extensions.git
$ cd django-extensions
$ python setup.py install
Installing It
=============
To enable `django_extensions` in your project you need to add it to `INSTALLED_APPS` in your projects
`settings.py` file:
.. code-block:: python
INSTALLED_APPS = (
...
'django_extensions',
...
)
Using It
========
Generate (and view) a graphviz graph of app models::
$ python manage.py graph_models -a -o myapp_models.png
Produce a tab-separated list of `(url_pattern, view_function, name)` tuples for a project::
$ python manage.py show_urls
Check templates for rendering errors::
$ python manage.py validate_templates
Run the enhanced django shell::
$ python manage.py shell_plus
Run the enhanced django runserver, (requires Werkzeug install)::
$ python manage.py runserver_plus
Getting Involved
================
Open Source projects can always use more help. Fixing a problem, documenting a feature, adding
translation in your language. If you have some time to spare and like to help us, here are the places to do so:
- GitHub: https://github.com/django-extensions/django-extensions
- Mailing list: https://groups.google.com/group/django-extensions
- Translations: https://www.transifex.com/projects/p/django-extensions/
Documentation
=============
You can view documentation online at:
- https://django-extensions.readthedocs.io
Or you can look at the docs/ directory in the repository.
Support
=======
Django Extensions is free and always will be. It is developed and maintained by developers in an Open Source manner.
Any support is welcome. You could help by writing documentation, pull-requests, report issues and/or translations.
Please remember that nobody is paid directly to develop or maintain Django Extensions so we do have to divide our time
between putting food on the table, family, this project and the rest of life :-)
__ https://ericholscher.com/blog/2008/sep/12/screencast-django-command-extensions/
__ https://vimeo.com/1720508
__ https://www.youtube.com/watch?v=1F6G3ONhr4k
Raw data
{
"_id": null,
"home_page": "https://github.com/django-extensions/django-extensions",
"name": "django-extensions",
"maintainer": "Bas van Oostveen",
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": "v.oostveen@gmail.com",
"keywords": "",
"author": "Michael Trier",
"author_email": "mtrier@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/8a/f1/318684c9466968bf9a9c221663128206e460c1a67f595055be4b284cde8a/django-extensions-3.2.3.tar.gz",
"platform": "any",
"description": "===================\n Django Extensions\n===================\n\n.. image:: https://img.shields.io/pypi/l/django-extensions.svg\n :target: https://raw.githubusercontent.com/django-extensions/django-extensions/master/LICENSE\n\n.. image:: https://github.com/django-extensions/django-extensions/actions/workflows/compile_catalog.yml/badge.svg\n :target: https://github.com/django-extensions/django-extensions/actions\n\n.. image:: https://github.com/django-extensions/django-extensions/actions/workflows/linters.yml/badge.svg\n :target: https://github.com/django-extensions/django-extensions/actions\n\n.. image:: https://github.com/django-extensions/django-extensions/actions/workflows/precommit.yml/badge.svg\n :target: https://github.com/django-extensions/django-extensions/actions\n\n.. image:: https://github.com/django-extensions/django-extensions/actions/workflows/pytest.yml/badge.svg\n :target: https://github.com/django-extensions/django-extensions/actions\n\n.. image:: https://github.com/django-extensions/django-extensions/actions/workflows/security.yml/badge.svg\n :target: https://github.com/django-extensions/django-extensions/actions\n\n.. image:: https://img.shields.io/pypi/v/django-extensions.svg\n :target: https://pypi.python.org/pypi/django-extensions/\n :alt: Latest PyPI version\n\n.. image:: https://img.shields.io/pypi/wheel/django-extensions.svg\n :target: https://pypi.python.org/pypi/django-extensions/\n :alt: Supports Wheel format\n\n.. image:: https://coveralls.io/repos/django-extensions/django-extensions/badge.svg?branch=master\n :target: https://coveralls.io/r/django-extensions/django-extensions?branch=master\n :alt: Coverage\n\nDjango Extensions is a collection of custom extensions for the Django Framework.\n\n\nGetting Started\n===============\n\nThe easiest way to figure out what Django Extensions are all about is to watch the\n`excellent screencast by Eric Holscher`__ (`watch the video on vimeo`__). In a couple\nminutes Eric walks you through a half a dozen command extensions. There is also a\n`short screencast on GoDjango's Youtube Channel`__ to help show you even more.\n\n\nRequirements\n============\n\nDjango Extensions requires Django 3.2 or later.\n\n\nGetting It\n==========\n\nYou can get Django Extensions by using pip::\n\n $ pip install django-extensions\n\nIf you want to install it from source, grab the git repository from GitHub and run setup.py::\n\n $ git clone git://github.com/django-extensions/django-extensions.git\n $ cd django-extensions\n $ python setup.py install\n\n\nInstalling It\n=============\n\nTo enable `django_extensions` in your project you need to add it to `INSTALLED_APPS` in your projects\n`settings.py` file:\n\n.. code-block:: python\n\n INSTALLED_APPS = (\n ...\n 'django_extensions',\n ...\n )\n\n\nUsing It\n========\n\nGenerate (and view) a graphviz graph of app models::\n\n $ python manage.py graph_models -a -o myapp_models.png\n\nProduce a tab-separated list of `(url_pattern, view_function, name)` tuples for a project::\n\n $ python manage.py show_urls\n\nCheck templates for rendering errors::\n\n $ python manage.py validate_templates\n\nRun the enhanced django shell::\n\n $ python manage.py shell_plus\n\nRun the enhanced django runserver, (requires Werkzeug install)::\n\n $ python manage.py runserver_plus\n\n\nGetting Involved\n================\n\nOpen Source projects can always use more help. Fixing a problem, documenting a feature, adding\ntranslation in your language. If you have some time to spare and like to help us, here are the places to do so:\n\n- GitHub: https://github.com/django-extensions/django-extensions\n- Mailing list: https://groups.google.com/group/django-extensions\n- Translations: https://www.transifex.com/projects/p/django-extensions/\n\n\nDocumentation\n=============\n\nYou can view documentation online at:\n\n- https://django-extensions.readthedocs.io\n\nOr you can look at the docs/ directory in the repository.\n\n\nSupport\n=======\n\nDjango Extensions is free and always will be. It is developed and maintained by developers in an Open Source manner.\nAny support is welcome. You could help by writing documentation, pull-requests, report issues and/or translations.\n\nPlease remember that nobody is paid directly to develop or maintain Django Extensions so we do have to divide our time\nbetween putting food on the table, family, this project and the rest of life :-)\n\n\n__ https://ericholscher.com/blog/2008/sep/12/screencast-django-command-extensions/\n__ https://vimeo.com/1720508\n__ https://www.youtube.com/watch?v=1F6G3ONhr4k\n",
"bugtrack_url": null,
"license": "MIT License",
"summary": "Extensions for Django",
"version": "3.2.3",
"project_urls": {
"Changelog": "https://github.com/django-extensions/django-extensions/blob/main/CHANGELOG.md",
"Documentation": "https://django-extensions.readthedocs.io/",
"Homepage": "https://github.com/django-extensions/django-extensions",
"Source": "https://github.com/django-extensions/django-extensions",
"Tracker": "https://github.com/django-extensions/django-extensions/issues"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "a77eba12b9660642663f5273141018d2bec0a1cae1711f4f6d1093920e157946",
"md5": "f69c92103faea71679850a009f3f0d1d",
"sha256": "9600b7562f79a92cbf1fde6403c04fee314608fefbb595502e34383ae8203401"
},
"downloads": -1,
"filename": "django_extensions-3.2.3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "f69c92103faea71679850a009f3f0d1d",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 229868,
"upload_time": "2023-06-05T17:08:58",
"upload_time_iso_8601": "2023-06-05T17:08:58.197910Z",
"url": "https://files.pythonhosted.org/packages/a7/7e/ba12b9660642663f5273141018d2bec0a1cae1711f4f6d1093920e157946/django_extensions-3.2.3-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8af1318684c9466968bf9a9c221663128206e460c1a67f595055be4b284cde8a",
"md5": "84f453a92aa7e47570be8c0865765ec7",
"sha256": "44d27919d04e23b3f40231c4ab7af4e61ce832ef46d610cc650d53e68328410a"
},
"downloads": -1,
"filename": "django-extensions-3.2.3.tar.gz",
"has_sig": false,
"md5_digest": "84f453a92aa7e47570be8c0865765ec7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 277216,
"upload_time": "2023-06-05T17:09:01",
"upload_time_iso_8601": "2023-06-05T17:09:01.447667Z",
"url": "https://files.pythonhosted.org/packages/8a/f1/318684c9466968bf9a9c221663128206e460c1a67f595055be4b284cde8a/django-extensions-3.2.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2023-06-05 17:09:01",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "django-extensions",
"github_project": "django-extensions",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "django-extensions"
}