├── .github └── workflows │ └── pythonpackage.yml ├── .gitignore ├── LICENSE.txt ├── Pipfile ├── Pipfile.lock ├── README.md ├── iospytools ├── __init__.py ├── __main__.py ├── archive.py ├── bundle.py ├── diff.py ├── foreman.py ├── img3.py ├── img4.py ├── iphonewiki.py ├── ipswme.py ├── manifest.py ├── remote.py ├── template.py ├── tss.py ├── usb.py └── utils.py ├── setup.py └── test_module.py /.github/workflows/pythonpackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/.github/workflows/pythonpackage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/README.md -------------------------------------------------------------------------------- /iospytools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iospytools/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/iospytools/__main__.py -------------------------------------------------------------------------------- /iospytools/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/iospytools/archive.py -------------------------------------------------------------------------------- /iospytools/bundle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/iospytools/bundle.py -------------------------------------------------------------------------------- /iospytools/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/iospytools/diff.py -------------------------------------------------------------------------------- /iospytools/foreman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/iospytools/foreman.py -------------------------------------------------------------------------------- /iospytools/img3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/iospytools/img3.py -------------------------------------------------------------------------------- /iospytools/img4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/iospytools/img4.py -------------------------------------------------------------------------------- /iospytools/iphonewiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/iospytools/iphonewiki.py -------------------------------------------------------------------------------- /iospytools/ipswme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/iospytools/ipswme.py -------------------------------------------------------------------------------- /iospytools/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/iospytools/manifest.py -------------------------------------------------------------------------------- /iospytools/remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/iospytools/remote.py -------------------------------------------------------------------------------- /iospytools/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/iospytools/template.py -------------------------------------------------------------------------------- /iospytools/tss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/iospytools/tss.py -------------------------------------------------------------------------------- /iospytools/usb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/iospytools/usb.py -------------------------------------------------------------------------------- /iospytools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/iospytools/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/setup.py -------------------------------------------------------------------------------- /test_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Merculous/ios-python-tools/HEAD/test_module.py --------------------------------------------------------------------------------