Install#

Install package in your environment :

pip install diskette

For development usage see Install for development.

Configuration#

Add it to your installed Django apps in settings :

INSTALLED_APPS = (
    ...
    "diskette",
)

Then load default Diskette Settings in your settings file:

from diskette.settings import *

Note

Instead if your project use django-configuration, your settings class can inherits from Django configuration class).

There is no migrations to apply.

At this point Diskette is correctly installed but won’t archive anything, you will need to define some applications and storages in settings, respectively DISKETTE_APPS and DISKETTE_STORAGES.