export_lexemes.py 253 Bytes
#-*- coding:utf-8 -*-

from django.core.management.base import BaseCommand
from dictionary.export import export_lexemes

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

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