from django.core.management import BaseCommand
class Command(BaseCommand):
help = ‘Run parser’
def handle(self, *args, **options):
print('Hello!')
I do not understand what this error is related to.
The command “run_parser” should have started the parser in Django.
New contributor
user590103 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.