A Django models extension to add soft deletion functionality
Project description
==================
Django Relative SoftDeletion
==================
Django Relative SoftDeletion is a custom made Django plugin which allows you to Soft Delete database values, which means while deleting any data, it will flag the data as deleted but will not remove the data completely from database. And at the time of fetching data from database, you will automatically get filtered result (excluding deleted values).
Another important implementation in this plugin is that it will filter out deleted values also while filtering on reverse relations. It means while using filter()
or exclude()
function on Foreign fields (reverse relation lookups also), it will not include the deleted data in the result.
If you want to include deleted data in filteration process, use all_objects()
function instead of objects()
.
Installing
Activate your environment and install the plugin using the command given below:
pip install django-relative-softdeletion
Usage
Import the SoftDeletionModel
from django_soft_deletion.models
and inherit in your Model classes:
For example,
from django_soft_deletion.models import SoftDeletionModel
class Employee(SoftDeletionModel):
pass
Functions
Model.objects()...
: Return result excluding deleted values
Model.all_objects()...
: Return result including deleted values
delete()
: Soft delete the item
hard_delete()
: Permanent delete the item
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
Hashes for django-relative-softdeletion-0.0.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1909a440196a91a7b8f68b59fe67c26afde39852a4e4104d946db5ef3793e59c |
|
MD5 | f22959abcc23a08b4a6c4b7e70b5fee7 |
|
BLAKE2b-256 | 8f18629672ee1cda822b56b1c0dd25285aace6fa6e49032a00f23291cdb56d4b |
Hashes for django_relative_softdeletion-0.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a2b26e7486c8bd9a40ddf1600b0708603c30e7ca6bdf10893e9e9f17ebfa2f41 |
|
MD5 | 3364f25476bad981d1894f5ec3a1cd88 |
|
BLAKE2b-256 | b4f70c7621378fca06c79213b3ee1039ca7a7ae6084f6a225b1fd320dc427a01 |