Golden Codes - armanexplorer planet

Practical code snippets for Django, Python, Bash, Git and All!

View on GitHub

call a command in code

from django.core.management import call_command
from elasticsearch.helpers import BulkIndexError


try:
    call_command('search_index', *args, *options)
except BulkIndexError as exc:
    self.print_error(exc.errors)