我正在尝试在此处的文档中显示自定义管理命令:https://docs.djangoproject.com/en/dev/howto/custom-management-commands/
当我尝试从项目目录运行命令时,遇到以下错误:
AttributeError: 'module' object has no attribute 'Command'
这是文件:
#event_expiration.py
from django.core.management.base import BaseCommand, CommandError
from app.models import Event
import datetime
class Command(BaseCommand):
help = 'deletes expired events'
def handle(self, *args, **options):
today = datetime.datetime.now()
events = Event.objects.filter(date=datetime.date(2011,11,11))
for e in events:
e.delete()
self.stdout.write('Expired events successfully deleted.')
我正在运行的命令是:
$ python manage.py event_expiration
我确保在管理和命令文件夹中添加event_expiration.py文件,并且这些文件夹包含init文件。这些都在我的app文件夹中。
我在这里俯瞰什么吗?感谢任何帮助,谢谢!
编辑:
SO用户Yuji帮助我尝试调试这一点,但我们仍然难过。继承人们做了什么:
首先,完整的回溯和命令:
(venv)matt@inspirion14z:~/Dropbox/PROD/ersvp.it$ python manage.py event_expiration
Traceback (most recent call last):
File "manage.py", line 10, in <module>
execute_from_command_line(sys.argv)
File "/home/matt/Dropbox/PROD/ersvp.it/venv/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 443, in execute_from_command_line
utility.execute()
File "/home/matt/Dropbox/PROD/ersvp.it/venv/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 382, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/home/matt/Dropbox/PROD/ersvp.it/venv/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 261, in fetch_command
klass = load_command_class(app_name, subcommand)
File "/home/matt/Dropbox/PROD/ersvp.it/venv/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 70, in load_command_class
return module.Command()
AttributeError: 'module' object has no attribute 'Command'
要查看django / core / management / init .py“的内容,第70行,我将import pdb; pdb.set_trace()放在文件中。
在调试模式下,我们尝试了:
module.__file__
检查模块是否在预期的位置,确实是,输出为:
'/home/matt/Dropbox/PROD/ersvp.it/app/management/commands/event_expiration.pyc'
接下来,我们尝试在shell中手动导入Command:
>>> from app.management.commands.event_expiration import Command
Traceback (most recent call last): File "<console>", line 1, in <module> ImportError: cannot import name Command
还在挠我的头!
答案 0 :(得分:25)
我遇到了同样的问题,问题是我的命令类没有被正确调用Command
,正如文档所说。例如:
class Command(NoArgsCommand):
# Do something here
答案 1 :(得分:3)
你的文件结构是什么样的?它应该是这样的:
app/
__init__.py
management/
__init__.py
commands/
__init__.py
event_expiration.py
如果结构如上,请尝试以下方法:
python manage.py shell
>>> from app.management.commands import event_expiration
>>> dir(event_expiration)
['Account', 'BaseCommand', 'Callback', 'Command', 'CommandError', 'Comment', 'Status', 'User', '__builtins__', '__doc__', '__file__', '__name__', '__package__', 'clean_phone_number', 'csv', 'models', 'os', 're']
我已经在我自己的管理命令中列出了运行dir
的纯输出。尝试一下,并报告模块可用的内容。此时您可能会发现自己收到错误,可能帮助诊断。我怀疑导入django本身有问题。我猜测python manage.py shell
会失败,这意味着它不是你的命令的问题,而是项目的问题。
编辑2:
在check_expiration
输出中dir
可见的事实支持我的理论,即文件夹结构在某种程度上是不对的。除非在你的模块中特别指定了一个函数。
请执行以下操作并显示输出:
cd /path/to/app/
find .
此外,还会显示event_expiration.py
文件的全部内容以及management/commands/__init__.py
文件的内容。警惕与标签混合的空格也是空白。
答案 2 :(得分:0)
直接打印查询集也会导致此错误。例如,我试图做这样的事情(只是测试,而不是实际的用例):
def handle(self, *args, **options):
ppl = People.objects.all()
print(ppl)
决议:
def handle(self, *args, **options):
ppl = People.objects.all()
print(str(ppl)) # Convert queryset to string
结论:Shell中有效的方法不一定在管理命令中有效。如果有人可以指出原因,那就太好了。