├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── gen_record.py ├── image.py ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiguanxianyu/PKUAutoRun/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiguanxianyu/PKUAutoRun/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiguanxianyu/PKUAutoRun/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiguanxianyu/PKUAutoRun/HEAD/README.md -------------------------------------------------------------------------------- /gen_record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiguanxianyu/PKUAutoRun/HEAD/gen_record.py -------------------------------------------------------------------------------- /image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiguanxianyu/PKUAutoRun/HEAD/image.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiguanxianyu/PKUAutoRun/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pymobiledevice3==1.42.4 2 | scipy 3 | requests 4 | --------------------------------------------------------------------------------