Denis helps you recovering accidentally deleted data from a django project
Project description
Denis helps you recovering accidentally deleted data from a django project.
Rationale
Humans make mistakes, sometimes they delete data accidentally from the django admin and you have to spend your afternoon recovering data from a db dump. Sometimes the human is called Denis.
Requirements
Django 1.8
Installation
pip install django-denis
Usage
Given a queryset django-denis finds what the django admin would delete and recover them from a backup database.
Here’s an example session:
$ python manage.py shell >>> from denis import Denis >>> from django.contrib.auth.models import User >>> User.objects.filter(pk=40182) [] >>> qs = User.objects.using('backup').filter(pk=40182) >>> denis = Denis(qs, using='backup') >>> denis.recover(using='default') >>> User.objects.using('default').filter(pk=40182) <User: cicciopasticcio>
The code above assumes a configuration entry called backup for DATABASES in settings.py that should point to a database containing the data you want to recover.
Be cautious
Please always test (and test again) recovery on a copy of your database so you can double check that everything works fine before doing it on your production db.
Of course we don’t take any responsibility with this code. Use at your own risk!
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
File details
Details for the file django-denis-0.1.0.tar.gz
.
File metadata
- Download URL: django-denis-0.1.0.tar.gz
- Upload date:
- Size: 2.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | da5b522c9bd10073af1d391a525ad8ecb75671a94588e52d96826909166cdcd1 |
|
MD5 | fbd08b87a20e750c827c6c7b5055ee82 |
|
BLAKE2b-256 | bce7894d4b17345fe73cb6b9e07a60c0a9e2b73f63607ba3ff8ed1e9d1966382 |