首页 > 代码库 > python manage.py 命令

python manage.py 命令

     在用命令django‐admin.py startproject <工程目录>建立一个django工程文件时,会生成一个manage.py文件,那么这个manage.py到底可以干嘛呢?

            manage.py是一种命令行工具,允许以多种方式与所建立的Django项目进行交互。键入python manage.py help就可以得到一个subcommand列表,通过这个列表,我们可以实现很多功能。

     要知道subcommand列表中的具体某一项命令怎么使用,可以键入 python manage.py help subcommand.

            比如,我们要查看startproject是干嘛的,键入:

                  python manage.py help startproject ,得到: 

     Creates a Django project directory structure for the given project name in the current directory or optionally in the given directory.

     从上面可以看出这个命令主要是针对指定的工程名建立一个Django工程路径结构。

     其他命令类似。