├── .gitignore ├── LICENSE ├── README.md ├── main.py ├── ocr.py ├── requirements.txt └── writer.py /.gitignore: -------------------------------------------------------------------------------- 1 | .venv/ 2 | __pycache__/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Notify-ctrl/XiaoyuanSolver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Notify-ctrl/XiaoyuanSolver/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Notify-ctrl/XiaoyuanSolver/HEAD/main.py -------------------------------------------------------------------------------- /ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Notify-ctrl/XiaoyuanSolver/HEAD/ocr.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Notify-ctrl/XiaoyuanSolver/HEAD/requirements.txt -------------------------------------------------------------------------------- /writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Notify-ctrl/XiaoyuanSolver/HEAD/writer.py --------------------------------------------------------------------------------