> For the complete documentation index, see [llms.txt](https://www.dicas-de-django.com.br/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.dicas-de-django.com.br/002-django-extensions.md).

# Dica 2 - Django extensions

[![](/files/-MfuAOwUjEsk4qZiRsOx)](https://youtu.be/qUKzDSSuh2w)

<https://django-extensions.readthedocs.io/en/latest/index.html>

```
pip install django-extensions
```

```python
# settings.py
INSTALLED_APPS = (
    ...
    'django_extensions',
)
```

```
python manage.py show_urls
```

```
python manage.py shell_plus
```
