├── .gitignore ├── README.md ├── _example └── cmd_console.py ├── data.py ├── example.jsonc ├── img ├── image1.png ├── image2.png └── server-1.png ├── install_lib.bat ├── install_lib.sh ├── jsonc_parser ├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── __init__.py ├── errors.py ├── jsonc_parser │ └── README.md ├── parser.py └── setup.py ├── requirements.txt ├── server.py ├── start.py ├── static └── favicon.ico ├── templates ├── index.html └── style.css ├── utils.py └── 前台应用状态.macro /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/README.md -------------------------------------------------------------------------------- /_example/cmd_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/_example/cmd_console.py -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/data.py -------------------------------------------------------------------------------- /example.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/example.jsonc -------------------------------------------------------------------------------- /img/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/img/image1.png -------------------------------------------------------------------------------- /img/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/img/image2.png -------------------------------------------------------------------------------- /img/server-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/img/server-1.png -------------------------------------------------------------------------------- /install_lib.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/install_lib.bat -------------------------------------------------------------------------------- /install_lib.sh: -------------------------------------------------------------------------------- 1 | pip3 install -r requirements.txt --break-system-packages -------------------------------------------------------------------------------- /jsonc_parser/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/jsonc_parser/.gitignore -------------------------------------------------------------------------------- /jsonc_parser/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/jsonc_parser/LICENSE.txt -------------------------------------------------------------------------------- /jsonc_parser/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md -------------------------------------------------------------------------------- /jsonc_parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/jsonc_parser/README.md -------------------------------------------------------------------------------- /jsonc_parser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jsonc_parser/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/jsonc_parser/errors.py -------------------------------------------------------------------------------- /jsonc_parser/jsonc_parser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/jsonc_parser/jsonc_parser/README.md -------------------------------------------------------------------------------- /jsonc_parser/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/jsonc_parser/parser.py -------------------------------------------------------------------------------- /jsonc_parser/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/jsonc_parser/setup.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flask -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/server.py -------------------------------------------------------------------------------- /start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/start.py -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/templates/style.css -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/utils.py -------------------------------------------------------------------------------- /前台应用状态.macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1812z/sleepy/HEAD/前台应用状态.macro --------------------------------------------------------------------------------