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

from dictionary.export import export_lexemes


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

    def handle(self, **options):
        export_lexemes()