├── .gitignore ├── .idea ├── inspectionProfiles │ └── Project_Default.xml ├── manage_server.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── app ├── .views.py.swp ├── .wawo.py.swp ├── __init__.py ├── database_config.py ├── interface.py ├── static │ ├── __init__.py │ └── interface_auto │ │ ├── __init__.py │ │ ├── common │ │ ├── HTMLTestRunner.py │ │ ├── HttpUntil.py │ │ ├── __init__.py │ │ └── common.py │ │ ├── config │ │ └── __init__.py │ │ ├── data │ │ ├── __init__.py │ │ ├── img.png │ │ └── test.jpg │ │ ├── other │ │ └── __init__.py │ │ ├── script │ │ └── __init__.py │ │ └── test_src │ │ ├── __init__.py │ │ └── data │ │ ├── __init__.py │ │ ├── img.png │ │ └── test.jpg ├── task.py ├── views.py └── wawo.py ├── common ├── HTMLTestRunner.py ├── HttpUntil.py ├── __init__.py └── common.py ├── config.py ├── listen_time_task.py ├── makeTestCase.py ├── requirements.txt ├── run.py └── tables.sql /.gitignore: -------------------------------------------------------------------------------- 1 | /venv -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/manage_server.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/.idea/manage_server.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/README.md -------------------------------------------------------------------------------- /app/.views.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/app/.views.py.swp -------------------------------------------------------------------------------- /app/.wawo.py.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/app/.wawo.py.swp -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/database_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/app/database_config.py -------------------------------------------------------------------------------- /app/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/app/interface.py -------------------------------------------------------------------------------- /app/static/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/interface_auto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/app/static/interface_auto/__init__.py -------------------------------------------------------------------------------- /app/static/interface_auto/common/HTMLTestRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/app/static/interface_auto/common/HTMLTestRunner.py -------------------------------------------------------------------------------- /app/static/interface_auto/common/HttpUntil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/app/static/interface_auto/common/HttpUntil.py -------------------------------------------------------------------------------- /app/static/interface_auto/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/interface_auto/common/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/app/static/interface_auto/common/common.py -------------------------------------------------------------------------------- /app/static/interface_auto/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/interface_auto/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/interface_auto/data/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/app/static/interface_auto/data/img.png -------------------------------------------------------------------------------- /app/static/interface_auto/data/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/app/static/interface_auto/data/test.jpg -------------------------------------------------------------------------------- /app/static/interface_auto/other/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/interface_auto/script/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/interface_auto/test_src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/interface_auto/test_src/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/static/interface_auto/test_src/data/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/app/static/interface_auto/test_src/data/img.png -------------------------------------------------------------------------------- /app/static/interface_auto/test_src/data/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/app/static/interface_auto/test_src/data/test.jpg -------------------------------------------------------------------------------- /app/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/app/task.py -------------------------------------------------------------------------------- /app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/app/views.py -------------------------------------------------------------------------------- /app/wawo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/app/wawo.py -------------------------------------------------------------------------------- /common/HTMLTestRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/common/HTMLTestRunner.py -------------------------------------------------------------------------------- /common/HttpUntil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/common/HttpUntil.py -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/common/common.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/config.py -------------------------------------------------------------------------------- /listen_time_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/listen_time_task.py -------------------------------------------------------------------------------- /makeTestCase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/makeTestCase.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/run.py -------------------------------------------------------------------------------- /tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t880216t/manager-server/HEAD/tables.sql --------------------------------------------------------------------------------