Skip to main content

A simple Django app to backup and restore your models data.

Project description

Backup2CSV is a simple Django app that allow you to download and restore your models content in a csv file.

Quick start

  1. Add “backup2csv” to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
            ...
            'backups',
    ]
  2. Include the backup2csv URLconf in your project urls.py like this:

    urlpatterns = [
            ...
            path('backup/', include('backups.urls', namespace='bkups')),
            ...
    ]
  3. Start the development server and visit http://127.0.0.1:8000/backup/ to see the list of all apps and models you have.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-backup2csv-0.4.tar.gz (11.0 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page