├── .dockerignore ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── app.py ├── arm32v7-requirements.txt ├── arm64v8-requirements.txt ├── docker ├── amd64-Dockerfile ├── arm32v7-Dockerfile └── arm64v8-Dockerfile ├── download_model.sh ├── gunicorn.conf.py ├── qemu ├── qemu-aarch64-static └── qemu-arm-static ├── requirements.txt └── verify ├── __init__.py ├── localVerifyCode.py ├── mlearn_for_image.py └── pretreatment.py /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .vscode 3 | .idea 4 | README.md 5 | LICENSE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | venv 3 | __pycache__/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinaoxiong/12306_code_server/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinaoxiong/12306_code_server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinaoxiong/12306_code_server/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinaoxiong/12306_code_server/HEAD/app.py -------------------------------------------------------------------------------- /arm32v7-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinaoxiong/12306_code_server/HEAD/arm32v7-requirements.txt -------------------------------------------------------------------------------- /arm64v8-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinaoxiong/12306_code_server/HEAD/arm64v8-requirements.txt -------------------------------------------------------------------------------- /docker/amd64-Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinaoxiong/12306_code_server/HEAD/docker/amd64-Dockerfile -------------------------------------------------------------------------------- /docker/arm32v7-Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinaoxiong/12306_code_server/HEAD/docker/arm32v7-Dockerfile -------------------------------------------------------------------------------- /docker/arm64v8-Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinaoxiong/12306_code_server/HEAD/docker/arm64v8-Dockerfile -------------------------------------------------------------------------------- /download_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinaoxiong/12306_code_server/HEAD/download_model.sh -------------------------------------------------------------------------------- /gunicorn.conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinaoxiong/12306_code_server/HEAD/gunicorn.conf.py -------------------------------------------------------------------------------- /qemu/qemu-aarch64-static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinaoxiong/12306_code_server/HEAD/qemu/qemu-aarch64-static -------------------------------------------------------------------------------- /qemu/qemu-arm-static: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinaoxiong/12306_code_server/HEAD/qemu/qemu-arm-static -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinaoxiong/12306_code_server/HEAD/requirements.txt -------------------------------------------------------------------------------- /verify/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /verify/localVerifyCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinaoxiong/12306_code_server/HEAD/verify/localVerifyCode.py -------------------------------------------------------------------------------- /verify/mlearn_for_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinaoxiong/12306_code_server/HEAD/verify/mlearn_for_image.py -------------------------------------------------------------------------------- /verify/pretreatment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yinaoxiong/12306_code_server/HEAD/verify/pretreatment.py --------------------------------------------------------------------------------