export_lexemes.py 292 Bytes
#-*- coding:utf-8 -*-
from django.core.management import BaseCommand

from dictionary.export import LexemeExport


class Command(BaseCommand):
    help = 'Temporary export script'

    def handle(self, export_data=None, **options):
        LexemeExport(export_data_name=export_data).export()