1. from django.core.management.base import BaseCommand
    
  2. 
    
  3. 
    
  4. class Command(BaseCommand):
    
  5.     help = "Test No-args commands"
    
  6.     requires_system_checks = []
    
  7. 
    
  8.     def handle(self, **options):
    
  9.         print("EXECUTE: noargs_command options=%s" % sorted(options.items()))