├── .editorconfig ├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── feature-request.yml │ └── issue.yml ├── SECURITY.md ├── dependabot.yml └── workflows │ └── main.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .typos.toml ├── CHANGELOG.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── img └── RichRunner.png ├── pyproject.toml ├── src └── django_rich │ ├── __init__.py │ ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── shell.py │ ├── py.typed │ └── test.py ├── tests ├── __init__.py ├── settings.py ├── test_management.py ├── test_shell.py ├── test_test.py └── testapp │ ├── __init__.py │ └── management │ ├── __init__.py │ └── commands │ ├── __init__.py │ └── example.py ├── tox.ini └── uv.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/.github/ISSUE_TEMPLATE/issue.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/.typos.toml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- 1 | See https://github.com/adamchainz/django-rich/blob/main/CHANGELOG.rst 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/README.rst -------------------------------------------------------------------------------- /img/RichRunner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/img/RichRunner.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/django_rich/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/django_rich/management/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/src/django_rich/management/__init__.py -------------------------------------------------------------------------------- /src/django_rich/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/django_rich/management/commands/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/src/django_rich/management/commands/shell.py -------------------------------------------------------------------------------- /src/django_rich/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/django_rich/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/src/django_rich/test.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/tests/test_management.py -------------------------------------------------------------------------------- /tests/test_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/tests/test_shell.py -------------------------------------------------------------------------------- /tests/test_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/tests/test_test.py -------------------------------------------------------------------------------- /tests/testapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/tests/testapp/__init__.py -------------------------------------------------------------------------------- /tests/testapp/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/testapp/management/commands/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/tests/testapp/management/commands/example.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/tox.ini -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamchainz/django-rich/HEAD/uv.lock --------------------------------------------------------------------------------