├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── WDA-API.md ├── freeport.py ├── heartbeat.py ├── idb.py ├── iproxy.sh ├── list-devices.sh ├── main.py ├── package.json ├── requirements.txt ├── utils.py └── wdaproxy-script.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openatx/atxserver2-ios-provider/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openatx/atxserver2-ios-provider/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openatx/atxserver2-ios-provider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openatx/atxserver2-ios-provider/HEAD/README.md -------------------------------------------------------------------------------- /WDA-API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openatx/atxserver2-ios-provider/HEAD/WDA-API.md -------------------------------------------------------------------------------- /freeport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openatx/atxserver2-ios-provider/HEAD/freeport.py -------------------------------------------------------------------------------- /heartbeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openatx/atxserver2-ios-provider/HEAD/heartbeat.py -------------------------------------------------------------------------------- /idb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openatx/atxserver2-ios-provider/HEAD/idb.py -------------------------------------------------------------------------------- /iproxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openatx/atxserver2-ios-provider/HEAD/iproxy.sh -------------------------------------------------------------------------------- /list-devices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openatx/atxserver2-ios-provider/HEAD/list-devices.sh -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openatx/atxserver2-ios-provider/HEAD/main.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openatx/atxserver2-ios-provider/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tornado 2 | requests 3 | logzero 4 | tidevice 5 | httpx 6 | -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openatx/atxserver2-ios-provider/HEAD/utils.py -------------------------------------------------------------------------------- /wdaproxy-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openatx/atxserver2-ios-provider/HEAD/wdaproxy-script.py --------------------------------------------------------------------------------