├── .gitignore ├── README.md ├── manage.py ├── requirements.txt ├── static └── jquery-1.12.4.js ├── templates └── index.html ├── wdpy ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── websocket ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py └── views.py └── 效果图 ├── 安装软件.gif └── 执行脚本.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py3study/wdpy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py3study/wdpy/HEAD/README.md -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py3study/wdpy/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py3study/wdpy/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/jquery-1.12.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py3study/wdpy/HEAD/static/jquery-1.12.4.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py3study/wdpy/HEAD/templates/index.html -------------------------------------------------------------------------------- /wdpy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wdpy/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py3study/wdpy/HEAD/wdpy/settings.py -------------------------------------------------------------------------------- /wdpy/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py3study/wdpy/HEAD/wdpy/urls.py -------------------------------------------------------------------------------- /wdpy/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py3study/wdpy/HEAD/wdpy/wsgi.py -------------------------------------------------------------------------------- /websocket/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /websocket/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py3study/wdpy/HEAD/websocket/admin.py -------------------------------------------------------------------------------- /websocket/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py3study/wdpy/HEAD/websocket/apps.py -------------------------------------------------------------------------------- /websocket/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /websocket/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py3study/wdpy/HEAD/websocket/models.py -------------------------------------------------------------------------------- /websocket/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py3study/wdpy/HEAD/websocket/tests.py -------------------------------------------------------------------------------- /websocket/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py3study/wdpy/HEAD/websocket/views.py -------------------------------------------------------------------------------- /效果图/安装软件.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py3study/wdpy/HEAD/效果图/安装软件.gif -------------------------------------------------------------------------------- /效果图/执行脚本.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/py3study/wdpy/HEAD/效果图/执行脚本.gif --------------------------------------------------------------------------------