├── .github └── workflows │ ├── lockThreads.yml │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── pyproject.toml ├── src └── django_cleanup │ ├── __init__.py │ ├── apps.py │ ├── cache.py │ ├── cleanup.py │ ├── handlers.py │ └── signals.py ├── test ├── __init__.py ├── conftest.py ├── media │ └── pic.jpg ├── models │ ├── __init__.py │ ├── app.py │ └── integration.py ├── requirements.txt ├── settings.py ├── storage.py ├── test_all.py ├── test_integration.py └── testing_helpers.py └── tox.ini /.github/workflows/lockThreads.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/.github/workflows/lockThreads.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include CHANGELOG.md 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/README.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/django_cleanup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/src/django_cleanup/__init__.py -------------------------------------------------------------------------------- /src/django_cleanup/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/src/django_cleanup/apps.py -------------------------------------------------------------------------------- /src/django_cleanup/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/src/django_cleanup/cache.py -------------------------------------------------------------------------------- /src/django_cleanup/cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/src/django_cleanup/cleanup.py -------------------------------------------------------------------------------- /src/django_cleanup/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/src/django_cleanup/handlers.py -------------------------------------------------------------------------------- /src/django_cleanup/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/src/django_cleanup/signals.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/media/pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/test/media/pic.jpg -------------------------------------------------------------------------------- /test/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/test/models/__init__.py -------------------------------------------------------------------------------- /test/models/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/test/models/app.py -------------------------------------------------------------------------------- /test/models/integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/test/models/integration.py -------------------------------------------------------------------------------- /test/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/test/requirements.txt -------------------------------------------------------------------------------- /test/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/test/settings.py -------------------------------------------------------------------------------- /test/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/test/storage.py -------------------------------------------------------------------------------- /test/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/test/test_all.py -------------------------------------------------------------------------------- /test/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/test/test_integration.py -------------------------------------------------------------------------------- /test/testing_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/test/testing_helpers.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/un1t/django-cleanup/HEAD/tox.ini --------------------------------------------------------------------------------