我想运行一个类似这样的命令,但该函数handle (self,*args,**options)
似乎没有执行嵌套函数。
如何在其中包含我的功能handle()
?
from django.core.management.base import NoArgsCommand
class Command(NoArgsCommand):
def handle(self, *args, **options):
def hello():
print "hello1"
def hello1():
print "hello2"