├── .gitignore ├── README.md ├── main.py ├── reqs ├── __init__.py ├── itunes.py ├── schemas │ ├── README.md │ ├── __init__.py │ ├── itunes_lookup_resp.py │ ├── schema_defs │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── itunes_lookup_resp.json │ │ ├── store_authenticate_req.json │ │ ├── store_authenticate_resp.json │ │ ├── store_buyproduct_req.json │ │ ├── store_buyproduct_resp.json │ │ ├── store_download_req.json │ │ └── store_download_resp.json │ ├── schema_examples │ │ ├── itunes_lookup_resp.log │ │ ├── store_buyproduct_req.log │ │ └── store_buyproduct_resp.log │ ├── store_authenticate_req.py │ ├── store_authenticate_resp.py │ ├── store_buyproduct_req.py │ ├── store_buyproduct_resp.py │ ├── store_download_req.py │ └── store_download_resp.py └── store.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | __pycache__ 3 | venv/ 4 | downloaded/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/main.py -------------------------------------------------------------------------------- /reqs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reqs/itunes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/reqs/itunes.py -------------------------------------------------------------------------------- /reqs/schemas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/reqs/schemas/README.md -------------------------------------------------------------------------------- /reqs/schemas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reqs/schemas/itunes_lookup_resp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/reqs/schemas/itunes_lookup_resp.py -------------------------------------------------------------------------------- /reqs/schemas/schema_defs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reqs/schemas/schema_defs/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/reqs/schemas/schema_defs/__main__.py -------------------------------------------------------------------------------- /reqs/schemas/schema_defs/itunes_lookup_resp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/reqs/schemas/schema_defs/itunes_lookup_resp.json -------------------------------------------------------------------------------- /reqs/schemas/schema_defs/store_authenticate_req.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/reqs/schemas/schema_defs/store_authenticate_req.json -------------------------------------------------------------------------------- /reqs/schemas/schema_defs/store_authenticate_resp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/reqs/schemas/schema_defs/store_authenticate_resp.json -------------------------------------------------------------------------------- /reqs/schemas/schema_defs/store_buyproduct_req.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/reqs/schemas/schema_defs/store_buyproduct_req.json -------------------------------------------------------------------------------- /reqs/schemas/schema_defs/store_buyproduct_resp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/reqs/schemas/schema_defs/store_buyproduct_resp.json -------------------------------------------------------------------------------- /reqs/schemas/schema_defs/store_download_req.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/reqs/schemas/schema_defs/store_download_req.json -------------------------------------------------------------------------------- /reqs/schemas/schema_defs/store_download_resp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/reqs/schemas/schema_defs/store_download_resp.json -------------------------------------------------------------------------------- /reqs/schemas/schema_examples/itunes_lookup_resp.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/reqs/schemas/schema_examples/itunes_lookup_resp.log -------------------------------------------------------------------------------- /reqs/schemas/schema_examples/store_buyproduct_req.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/reqs/schemas/schema_examples/store_buyproduct_req.log -------------------------------------------------------------------------------- /reqs/schemas/schema_examples/store_buyproduct_resp.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/reqs/schemas/schema_examples/store_buyproduct_resp.log -------------------------------------------------------------------------------- /reqs/schemas/store_authenticate_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/reqs/schemas/store_authenticate_req.py -------------------------------------------------------------------------------- /reqs/schemas/store_authenticate_resp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/reqs/schemas/store_authenticate_resp.py -------------------------------------------------------------------------------- /reqs/schemas/store_buyproduct_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/reqs/schemas/store_buyproduct_req.py -------------------------------------------------------------------------------- /reqs/schemas/store_buyproduct_resp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/reqs/schemas/store_buyproduct_resp.py -------------------------------------------------------------------------------- /reqs/schemas/store_download_req.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/reqs/schemas/store_download_req.py -------------------------------------------------------------------------------- /reqs/schemas/store_download_resp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/reqs/schemas/store_download_resp.py -------------------------------------------------------------------------------- /reqs/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NyaMisty/ipatool-py/HEAD/reqs/store.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | rich>=10.2.2 2 | requests>=2.25.0 3 | --------------------------------------------------------------------------------