| 1234567891011121314 | from django.core.management.base import BaseCommand, CommandErrorfrom django.conf import settingsfrom games.utils import export_collectionsclass Command(BaseCommand):    help = "Export all collections to media directory"    def handle(self, *args, **options):        export_collections(dryrun=False)        return
 |