

Book/venv 虚拟环境Book/manage.py 启动文件(还可以各种操作)Book/templates HTML、CSS、JavascriptBook/Book 主模块Book/Book/__init__.py 指python包Book/Book/asgi.py ASGI兼容的Web服务器Book/Book/settings.py 全局配置文件Book/Book/urls.py 路由,驱动网站目录Book/Book/wsgi.py WSGI兼容的Web服务器Book/Login 登录模块Book/Login/__init__.py 指python包Book/Login/models.py 数据库模型Book/Login/apps.py 子模块配置Book/Login/admin.py 后台管理系统配置Book/Login/tests.py 测试单元Book/Login/views.py 视图Book/Login/migrations/__init__.py 数据移植迁移模块
├── README.md├── VERSION├── __init__.py├── app.yml├── blueapps│ ├── __init__.py│ ├── account│ │ ├── __init__.py│ │ ├── admin.py│ │ ├── apps.py│ │ ├── backends.py│ │ ├── components│ │ │ ├── __init__.py│ │ │ ├── bk_jwt│ │ │ │ ├── __init__.py│ │ │ │ ├── backends.py│ │ │ │ └── middlewares.py│ │ │ ├── bk_token│ │ │ │ ├── __init__.py│ │ │ │ ├── backends.py│ │ │ │ ├── forms.py│ │ │ │ ├── middlewares.py│ │ │ │ └── models.py│ │ │ ├── null│ │ │ │ └── __init__.py│ │ │ └── weixin│ │ │ ├── __init__.py│ │ │ ├── backends.py│ │ │ ├── forms.py│ │ │ └── middlewares.py│ │ ├── conf.py│ │ ├── decorators.py│ │ ├── forms.py│ │ ├── handlers│ │ │ ├── __init__.py│ │ │ └── response.py│ │ ├── middlewares.py│ │ ├── migrations│ │ │ ├── 0001_initial.py│ │ │ ├── 0002_init_superuser.py│ │ │ ├── 0003_verifyinfo.py│ │ │ ├── 0004_create_cache_table.py│ │ │ └── __init__.py│ │ ├── models.py│ │ ├── readme.md│ │ ├── sites│ │ │ ├── __init__.py│ │ │ ├── default.py│ │ │ └── open│ │ │ ├── __init__.py│ │ │ └── conf.py│ │ ├── static│ │ │ └── account│ │ │ └── login.js│ │ ├── templates│ │ │ └── account│ │ │ ├── login_page.html│ │ │ └── login_success.html│ │ ├── urls.py│ │ ├── utils│ │ │ ├── __init__.py│ │ │ ├── http.py│ │ │ └── sms.py│ │ └── views.py│ ├── conf│ │ ├── __init__.py│ │ ├── database.py│ │ ├── default_settings.py│ │ ├── environ.py│ │ ├── log.py│ │ └── sites│ │ ├── __init__.py│ │ └── open│ │ └── __init__.py│ ├── contrib│ │ ├── __init__.py│ │ └── bk_commands│ │ ├── __init__.py│ │ ├── management│ │ │ ├── __init__.py│ │ │ ├── commands│ │ │ │ ├── __init__.py│ │ │ │ ├── init.py│ │ │ │ ├── startexample.py│ │ │ │ ├── startweixin.py│ │ │ │ └── startwxapp.py│ │ │ └── templates.py│ │ └── test.py│ ├── core│ │ ├── __init__.py│ │ ├── celery│ │ │ ├── __init__.py│ │ │ └── celery.py│ │ ├── exceptions│ │ │ ├── __init__.py│ │ │ ├── base.py│ │ │ └── middleware.py│ │ ├── handler│ │ │ ├── __init__.py│ │ │ └── wsgi.py│ │ ├── sites│ │ │ ├── __init__.py│ │ │ └── middleware.py│ │ └── wsgi.py│ ├── middleware│ │ ├── __init__.py│ │ ├── bkui│ │ │ ├── __init__.py│ │ │ └── middlewares.py│ │ ├── request_provider.py│ │ └── xss│ │ ├── __init__.py│ │ ├── decorators.py│ │ ├── middlewares.py│ │ ├── pxfilter.py│ │ └── utils.py│ ├── patch│ │ ├── __init__.py│ │ ├── log.py│ │ ├── settings_open_saas.py│ │ └── settings_paas_services.py│ ├── template│ │ ├── __init__.py│ │ ├── backends│ │ │ ├── __init__.py│ │ │ └── mako.py│ │ └── context_processors.py│ └── utils│ ├── __init__.py│ ├── esbclient.py│ ├── logger.py│ ├── request_provider.py│ ├── sites│ │ ├── __init__.py│ │ ├── clouds│ │ │ └── __init__.py│ │ ├── ieod│ │ │ └── __init__.py│ │ ├── open│ │ │ └── __init__.py│ │ ├── qcloud│ │ │ └── __init__.py│ │ └── tencent│ │ └── __init__.py│ ├── tools.py│ └── unique.py├── blueking│ ├── __init__.py│ ├── component│ │ ├── README.md│ │ ├── __init__.py│ │ ├── apis│ │ │ ├── __init__.py│ │ │ ├── bk_login.py│ │ │ ├── bk_paas.py│ │ │ ├── cc.py│ │ │ ├── cmsi.py│ │ │ ├── gse.py│ │ │ ├── itsm.py│ │ │ ├── job.py│ │ │ ├── sops.py│ │ │ └── usermanage.py│ │ ├── base.py│ │ ├── client.py│ │ ├── collections.py│ │ ├── compat.py│ │ ├── conf.py│ │ ├── exceptions.py│ │ ├── shortcuts.py│ │ └── utils.py│ └── tests│ ├── README.md│ ├── __init__.py│ ├── test_client.py│ ├── test_shortcuts.py│ ├── test_utils.py│ └── utils│ ├── __init__.py│ └── utils.py├── config│ ├── __init__.py│ ├── default.py│ ├── dev.py│ ├── prod.py│ └── stag.py├── home_application│ ├── __init__.py│ ├── admin.py│ ├── demo.py│ ├── models.py│ ├── tasks.py│ ├── templates│ │ └── home_application│ │ ├── contact.html│ │ ├── dev_guide.html│ │ └── index_home.html│ ├── tests.py│ ├── urls.py│ └── views.py├── inspection│ ├── __init__.py│ ├── admin.py│ ├── apps.py│ ├── common│ │ ├── __init__.py│ │ ├── aes_encrypt.py│ │ ├── base_config.py│ │ ├── basic_views.py│ │ ├── db.py│ │ ├── db_pymysql.py│ │ ├── djdb.py│ │ ├── error.py│ │ ├── helpers.py│ │ ├── http_tool.py│ │ ├── inter_config.py│ │ ├── methods.py│ │ ├── token_helper.py│ │ └── utils.py│ ├── migrations│ │ ├── 0001_initial.py│ │ ├── xx.py│ │ ├── 0010_auto_20210825_1022.py│ │ └── __init__.py│ ├── models│ │ ├── __init__.py│ │ ├── bk_cycle.py│ ├── models.py│ ├── modules│ │ ├── __init__.py│ │ └── username_modules.py│ ├── schedule│ │ └── __init__.py│ ├── tests│ │ ├── __init__.py│ │ └── mock_itsm_apis.py│ ├── tests.py│ ├── urls.py│ └── views.py├── locale│ ├── en│ │ └── LC_MESSAGES│ │ ├── django.mo│ │ └── django.po│ └── zh-hans│ └── LC_MESSAGES│ ├── django.mo│ └── django.po├── manage.py├── requirements.txt├── runtime.txt├── settings.py├── static├── sync_to_dev_.sh├── templates│ ├── 403.html│ ├── 500.html│ ├── admin│ │ ├── base_site.html│ │ └── login.html│ └── base.html├── urls.py└── wsgi.py