Deletes old files.
Project description
django-cleanup automatically deletes files for FileField
, ImageField
, and
subclasses. It will delete old files when a new file is being saved and it will delete
files on model instance deletion.
Warning! If you are using a database that does not support transactions you may lose files if a transaction will rollback at the right instance. Though this outcome is reduced by our use of post_save and post_delete signals, this outcome will still occur if there are errors in signals that are handled after our signals are handled. In this case, the old file will be lost and the new file will not be referenced in a model, though the new file will likely still exist on disk. If you are concerned about this behavior you will need another solution for old file deletion in your project.
Features
Support for Django 1.11, 2.0, 2.1
Python 2.7 and 3.4+ support
Compatible with sorl-thumbnail and easy-thumbnail
How does it work?
django-cleanup connects post_init
, pre_save
, post_save
, and
post_delete
signals to signal handlers for each model that has a FileField
and which
app is listed in INSTALLED_APPS
. In order to tell whether or not a FileField
’s value
has changed a local cache of original values is kept on the model instance.
Installation
pip install django-cleanup
Configuration
Add django_cleanup to settings.py
INSTALLED_APPS = ( ... 'django_cleanup.apps.CleanupConfig', )
Signals
django-cleanup sends the following signals which can be imported from
django_cleanup.signals
:
cleanup_pre_delete just before a file is deleted. Passes a
file
keyword argument.cleanup_post_delete just after a file is deleted. Passes a
file
keyword argument.
Signals example for sorl.thumbnail
from django_cleanup.signals import cleanup_pre_delete, cleanup_post_delete def sorl_delete(**kwargs): from sorl.thumbnail import delete delete(kwargs['file']) cleanup_pre_delete.connect(sorl_delete)
Refresh the cache
Refresh the cleanup cache on the instance.
from django_cleanup import cleanup ... cleanup.refresh(instance) ...
How to run tests
tox
How to write tests
This library requires the use of django.test.TransactionTestCase when writing tests.
For details on why this is required see here:
Django’s
TestCase
class wraps each test in a transaction and rolls back that transaction after each test, in order to provide test isolation. This means that no transaction is ever actually committed, thus youron_commit()
callbacks will never be run. If you need to test the results of anon_commit()
callback, use aTransactionTestCase
instead.
License
django-cleanup is free software under terms of the MIT License.
Copyright (C) 2012 by Ilya Shalyapin, ishalyapin@gmail.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-cleanup-3.0.1.tar.gz
.
File metadata
- Download URL: django-cleanup-3.0.1.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.0 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f74ff4ea49bd371a5f61a89dc8a8433e7f3b1220e079dfb430205b154b9ddf1a |
|
MD5 | 4cfcdcfe4b89560995b98b93cbdc36a5 |
|
BLAKE2b-256 | b4d939422e209d521ae99da8446fc4f6de69abd8513d1ae53d3c0f72583c897f |
File details
Details for the file django_cleanup-3.0.1-py2.py3-none-any.whl
.
File metadata
- Download URL: django_cleanup-3.0.1-py2.py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.0 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53316b04b9c91725fce9eac252cdc762a988b5a1640aeee8ab43048ccf9d98bd |
|
MD5 | fff2b6f7015bb985441f679db686636c |
|
BLAKE2b-256 | fd1e61351ae00f561516b4fcc8e20d3a4ee8988af6e8329967b93076c8239e95 |