{"id":13415681,"url":"https://github.com/un1t/django-cleanup","last_synced_at":"2025-04-09T01:23:18.513Z","repository":{"id":4281602,"uuid":"5410782","full_name":"un1t/django-cleanup","owner":"un1t","description":"Automatically deletes old file for FileField and ImageField. It also deletes files on models instance deletion.","archived":false,"fork":false,"pushed_at":"2024-09-18T21:52:41.000Z","size":323,"stargazers_count":1102,"open_issues_count":0,"forks_count":78,"subscribers_count":10,"default_branch":"master","last_synced_at":"2024-10-29T15:33:13.604Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/un1t.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2012-08-14T09:27:02.000Z","updated_at":"2024-10-27T19:31:34.000Z","dependencies_parsed_at":"2023-01-13T13:03:32.414Z","dependency_job_id":"f2ec8fca-6747-4b10-ab00-8cbac8364baa","html_url":"https://github.com/un1t/django-cleanup","commit_stats":{"total_commits":149,"total_committers":18,"mean_commits":8.277777777777779,"dds":0.5973154362416108,"last_synced_commit":"2bc1a08d6363d9a3c130ec0f2ed26be5b940af33"},"previous_names":[],"tags_count":38,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/un1t%2Fdjango-cleanup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/un1t%2Fdjango-cleanup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/un1t%2Fdjango-cleanup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/un1t%2Fdjango-cleanup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/un1t","download_url":"https://codeload.github.com/un1t/django-cleanup/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247953942,"owners_count":21024121,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-07-30T21:00:51.295Z","updated_at":"2025-04-09T01:23:18.493Z","avatar_url":"https://github.com/un1t.png","language":"Python","readme":"Django Cleanup\n**************\n|Version| |Status| |License|\n\nFeatures\n========\nThe django-cleanup app automatically deletes files for :code:`FileField`, :code:`ImageField` and\nsubclasses. When a :code:`FileField`'s value is changed and the model is saved, the old file is\ndeleted. When a model that has a :code:`FileField` is deleted, the file is also deleted. A file that\nis set as the :code:`FileField`'s default value will not be deleted.\n\nCompatibility\n-------------\n- This app follows Django's `supported versions`_ and `Python version support`_.\n- Compatible with `sorl-thumbnail \u003chttps://github.com/jazzband/sorl-thumbnail\u003e`_\n- Compatible with `easy-thumbnail \u003chttps://github.com/SmileyChris/easy-thumbnails\u003e`_\n\nHow does it work?\n=================\nIn order to track changes of a :code:`FileField` and facilitate file deletions, django-cleanup\nconnects :code:`post_init`, :code:`pre_save`, :code:`post_save` and :code:`post_delete` signals to\nsignal handlers for each :code:`INSTALLED_APPS` model that has a :code:`FileField`. In order to tell\nwhether or not a :code:`FileField`'s value has changed a local cache of original values is kept on\nthe model instance. If a condition is detected that should result in a file deletion, a function to\ndelete the file is setup and inserted into the commit phase of the current transaction.\n\n**Warning! Please be aware of the known limitations documented below!**\n\nInstallation\n============\n::\n\n    pip install django-cleanup\n\n\nConfiguration\n=============\nAdd ``django_cleanup`` to the bottom of ``INSTALLED_APPS`` in ``settings.py``\n\n.. code-block:: py\n\n    INSTALLED_APPS = (\n        ...,\n        'django_cleanup.apps.CleanupConfig',\n    )\n\nThat is all, no other configuration is necessary.\n\nNote: Order of ``INSTALLED_APPS`` is important. To ensure that exceptions inside other apps' signal\nhandlers do not affect the integrity of file deletions within transactions, ``django_cleanup``\nshould be placed last in ``INSTALLED_APPS``.\n\nTroubleshooting\n===============\nIf you notice that ``django-cleanup`` is not removing files when expected, check that your models\nare being properly\n`loaded \u003chttps://docs.djangoproject.com/en/stable/ref/applications/#how-applications-are-loaded\u003e`_:\n\n    You must define or import all models in your application's models.py or models/__init__.py.\n    Otherwise, the application registry may not be fully populated at this point, which could cause\n    the ORM to malfunction.\n\nIf your models are not loaded, ``django-cleanup`` will not be able to discover their\n``FileField``'s.\n\nYou can check if your ``Model`` is loaded by using\n\n.. code-block:: py\n\n    from django.apps import apps\n    apps.get_models()\n\nKnown limitations\n=================\n\nDatabase should support transactions\n------------------------------------\nIf you are using a database that does not support transactions you may lose files if a\ntransaction will rollback at the right instance. This outcome is mitigated by our use of\npost_save and post_delete signals, and by following the recommended configuration in this README.\nThis outcome will still occur if there are signals registered after app initialization and there are\nexceptions when those signals are handled. In this case, the old file will be lost and the new file\nwill not be referenced in a model, though the new file will likely still exist on disk. If you are\nconcerned about this behavior you will need another solution for old file deletion in your project.\n\nFile referenced by multiple model instances\n-------------------------------------------\nThis app is designed with the assumption that each file is referenced only once. If you are sharing\na file over two or more model instances you will not have the desired functionality. Be cautious of\ncopying model instances, as this will cause a file to be shared by more than one instance. If you\nwant to reference a file from multiple models add a level of indirection. That is, use a separate\nfile model that is referenced from other models through a foreign key. There are many file\nmanagement apps already available in the django ecosystem that fulfill this behavior.\n\nAdvanced\n========\nThis section contains additional functionality that can be used to interact with django-cleanup for\nspecial cases.\n\nSignals\n-------\nTo facilitate interactions with other django apps django-cleanup sends the following signals which\ncan be imported from :code:`django_cleanup.signals`:\n\n- :code:`cleanup_pre_delete`: just before a file is deleted. Passes a :code:`file` keyword argument.\n- :code:`cleanup_post_delete`: just after a file is deleted. Passes a :code:`file` keyword argument.\n\nSignals example for sorl.thumbnail:\n\n.. code-block:: py\n\n    from django_cleanup.signals import cleanup_pre_delete\n    from sorl.thumbnail import delete\n\n    def sorl_delete(**kwargs):\n        delete(kwargs['file'])\n\n    cleanup_pre_delete.connect(sorl_delete)\n\nRefresh the cache\n-----------------\nThere have been rare cases where the cache would need to be refreshed. To do so the\n:code:`django_cleanup.cleanup.refresh` method can be used:\n\n.. code-block:: py\n\n    from django_cleanup import cleanup\n\n    cleanup.refresh(model_instance)\n\nIgnore cleanup for a specific model\n-----------------------------------\nTo ignore a model and not have cleanup performed when the model is deleted or its files change, use\nthe :code:`ignore` decorator to mark that model:\n\n.. code-block:: py\n\n    from django_cleanup import cleanup\n\n    @cleanup.ignore\n    class MyModel(models.Model):\n        image = models.FileField()\n\nOnly cleanup selected models\n----------------------------\nIf you have many models to ignore, or if you prefer to be explicit about what models are selected,\nyou can change the mode of django-cleanup to \"select mode\" by using the select mode app config. In\nyour ``INSTALLED_APPS`` setting you will replace ':code:`django_cleanup.apps.CleanupConfig`'\nwith ':code:`django_cleanup.apps.CleanupSelectedConfig`'. Then use the :code:`select` decorator to\nmark a model for cleanup:\n\n.. code-block:: py\n\n    from django_cleanup import cleanup\n\n    @cleanup.select\n    class MyModel(models.Model):\n        image = models.FileField()\n\nHow to run tests\n================\nInstall, setup and use pyenv_ to install all the required versions of cPython\n(see the `tox.ini \u003chttps://github.com/un1t/django-cleanup/blob/master/tox.ini\u003e`_).\n\nSetup pyenv_ to have all versions of python activated within your local django-cleanup repository.\nEnsuring that the latest supported python version that was installed is first priority.\n\nInstall tox_ on the latest supported python version and run the :code:`tox` command from your local\ndjango-cleanup repository.\n\nHow to write tests\n==================\nThis app requires the use of django.test.TransactionTestCase_ when writing tests.\n\nFor details on why this is required see `here\n\u003chttps://docs.djangoproject.com/en/stable/topics/db/transactions/#use-in-tests\u003e`_:\n\n    Django's :code:`TestCase` class wraps each test in a transaction and rolls back that transaction\n    after each test, in order to provide test isolation. This means that no transaction is ever\n    actually committed, thus your :code:`on_commit()` callbacks will never be run. If you need to\n    test the results of an :code:`on_commit()` callback, use a :code:`TransactionTestCase` instead.\n\npytest\n------\nWhen writing tests with pytest_ use `@pytest.mark.django_db(transaction=True)`_ with the\n:code:`transaction` argument set to :code:`True` to ensure that the behavior will be the same as \nusing a transaction test case.\n\nLicense\n=======\ndjango-cleanup is free software under terms of the:\n\nMIT License\n\nCopyright (C) 2012 by Ilya Shalyapin, ishalyapin@gmail.com\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n.. _django.test.TransactionTestCase: https://docs.djangoproject.com/en/stable/topics/testing/tools/#django.test.TransactionTestCase\n.. _pytest: https://docs.pytest.org\n.. _pyenv: https://github.com/pyenv/pyenv\n.. _tox: https://tox.readthedocs.io/en/latest/\n.. _supported versions: https://www.djangoproject.com/download/#supported-versions\n.. _Python version support: https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django\n.. _@pytest.mark.django_db(transaction=True): https://pytest-django.readthedocs.io/en/latest/helpers.html#pytest.mark.django_db\n\n.. |Version| image:: https://img.shields.io/pypi/v/django-cleanup.svg\n   :target: https://pypi.python.org/pypi/django-cleanup/\n   :alt: PyPI Package\n.. |Status| image:: https://github.com/un1t/django-cleanup/actions/workflows/main.yml/badge.svg\n   :target: https://github.com/un1t/django-cleanup/actions/workflows/main.yml\n   :alt: Build Status\n.. |License| image:: https://img.shields.io/badge/license-MIT-maroon\n   :target: https://github.com/un1t/django-cleanup/blob/master/LICENSE\n   :alt: MIT License\n","funding_links":[],"categories":["Third-Party Packages","Python","Django Utilities","File and Media Handling"],"sub_categories":["Files/Images"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fun1t%2Fdjango-cleanup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fun1t%2Fdjango-cleanup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fun1t%2Fdjango-cleanup/lists"}