A tool for collecting infos of apple ipa
Over PyPi (recommanded)
pip install ipa-toolOver wheel
pip install --user {find in release}.whlUsage:
$ ipa-tool COMMAND [Options] [ARGS]... Command:
get-info: Returns ipa infos in jsoncgbi2png: Turns apple cgbi into normal png
Arguments:
IPA_PATH: [required]
Options:
-mi / --get-multi-icon: [default: False]-o: Output path--help: Show this message and exit.
from ipa_tool import ipaInfos
ipa_infos = ipaInfos( {ipa_path} )ipaInfos will return a class
class ipaInfos():
name: str
device: list
size: int
version: str
bundleID: str
encrypt: bool
arch: str
minOS: str
icon: dict
md5: bytes
rawPlist: dictYou can turn it into dict by
ipa_info_dict = ipa_tool.__dict__