├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── config.py ├── instance └── config.example ├── main ├── __init__.py ├── models │ ├── __init__.py │ ├── auth.py │ ├── express.py │ ├── sign.py │ └── user.py ├── plugins │ ├── __init__.py │ ├── cron.py │ ├── express.py │ ├── library.py │ ├── music.py │ ├── queue.py │ ├── school_news.py │ ├── score.py │ ├── sign.py │ ├── simsimi.py │ ├── state.py │ ├── weather.py │ └── wechat_custom.py ├── response.py ├── routes.py ├── static │ ├── images │ │ └── weather │ │ │ └── day │ │ │ ├── 00.jpeg │ │ │ ├── 01.jpeg │ │ │ ├── 02.jpeg │ │ │ ├── 03.jpeg │ │ │ ├── 04.jpeg │ │ │ ├── 05.jpeg │ │ │ ├── 06.jpeg │ │ │ ├── 07.jpeg │ │ │ ├── 08.jpeg │ │ │ ├── 09.jpeg │ │ │ ├── 10.jpeg │ │ │ ├── 11.jpeg │ │ │ ├── 12.jpeg │ │ │ ├── 13.jpeg │ │ │ ├── 14.jpeg │ │ │ ├── 15.jpeg │ │ │ ├── 16.jpeg │ │ │ ├── 17.jpeg │ │ │ ├── 18.jpeg │ │ │ ├── 19.jpeg │ │ │ ├── 20.jpeg │ │ │ ├── 21.jpeg │ │ │ ├── 22.jpeg │ │ │ ├── 23.jpeg │ │ │ ├── 24.jpeg │ │ │ ├── 25.jpeg │ │ │ ├── 26.jpeg │ │ │ ├── 27.jpeg │ │ │ ├── 28.jpeg │ │ │ ├── 29.jpeg │ │ │ ├── 30.jpeg │ │ │ ├── 31.jpeg │ │ │ └── 53.jpeg │ ├── robots.txt │ ├── scripts │ │ ├── auth.js │ │ ├── touch.min.js │ │ └── zepto.min.js │ └── styles │ │ ├── auth.css │ │ ├── score.css │ │ └── weui.min.css ├── templates │ ├── auth.html │ └── score.html └── utils.py ├── package.json ├── requirements.txt ├── run.py └── test └── __init__.py /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/config.py -------------------------------------------------------------------------------- /instance/config.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/instance/config.example -------------------------------------------------------------------------------- /main/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/__init__.py -------------------------------------------------------------------------------- /main/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/models/__init__.py -------------------------------------------------------------------------------- /main/models/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/models/auth.py -------------------------------------------------------------------------------- /main/models/express.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/models/express.py -------------------------------------------------------------------------------- /main/models/sign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/models/sign.py -------------------------------------------------------------------------------- /main/models/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/models/user.py -------------------------------------------------------------------------------- /main/plugins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main/plugins/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/plugins/cron.py -------------------------------------------------------------------------------- /main/plugins/express.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/plugins/express.py -------------------------------------------------------------------------------- /main/plugins/library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/plugins/library.py -------------------------------------------------------------------------------- /main/plugins/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/plugins/music.py -------------------------------------------------------------------------------- /main/plugins/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/plugins/queue.py -------------------------------------------------------------------------------- /main/plugins/school_news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/plugins/school_news.py -------------------------------------------------------------------------------- /main/plugins/score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/plugins/score.py -------------------------------------------------------------------------------- /main/plugins/sign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/plugins/sign.py -------------------------------------------------------------------------------- /main/plugins/simsimi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/plugins/simsimi.py -------------------------------------------------------------------------------- /main/plugins/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/plugins/state.py -------------------------------------------------------------------------------- /main/plugins/weather.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/plugins/weather.py -------------------------------------------------------------------------------- /main/plugins/wechat_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/plugins/wechat_custom.py -------------------------------------------------------------------------------- /main/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/response.py -------------------------------------------------------------------------------- /main/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/routes.py -------------------------------------------------------------------------------- /main/static/images/weather/day/00.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/00.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/01.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/01.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/02.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/02.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/03.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/03.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/04.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/04.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/05.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/05.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/06.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/06.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/07.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/07.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/08.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/08.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/09.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/09.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/10.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/10.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/11.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/11.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/12.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/12.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/13.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/13.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/14.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/14.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/15.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/15.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/16.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/16.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/17.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/17.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/18.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/18.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/19.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/19.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/20.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/20.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/21.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/21.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/22.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/22.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/23.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/23.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/24.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/24.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/25.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/25.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/26.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/26.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/27.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/27.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/28.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/28.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/29.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/29.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/30.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/30.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/31.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/31.jpeg -------------------------------------------------------------------------------- /main/static/images/weather/day/53.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/images/weather/day/53.jpeg -------------------------------------------------------------------------------- /main/static/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | -------------------------------------------------------------------------------- /main/static/scripts/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/scripts/auth.js -------------------------------------------------------------------------------- /main/static/scripts/touch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/scripts/touch.min.js -------------------------------------------------------------------------------- /main/static/scripts/zepto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/scripts/zepto.min.js -------------------------------------------------------------------------------- /main/static/styles/auth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/styles/auth.css -------------------------------------------------------------------------------- /main/static/styles/score.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/styles/score.css -------------------------------------------------------------------------------- /main/static/styles/weui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/static/styles/weui.min.css -------------------------------------------------------------------------------- /main/templates/auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/templates/auth.html -------------------------------------------------------------------------------- /main/templates/score.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/templates/score.html -------------------------------------------------------------------------------- /main/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/main/utils.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paicha/gxgk-wechat-server/HEAD/run.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------