How to Solve NameError: name 'BaseCommand' is not defined -- django

Erorr: name 'BaseCommand' is not defined

NameError: name 'BaseCommand' is not defined

Solution: Import the 'BaseCommand' module

# Add the following line to the top of your code
from django.core.management.base import BaseCommand

 

For more information:
django BaseCommand