请移步 gitee.com/kin9-0rz/apkutils ,github上的代码,不再同步。
A library that gets infos from APK.
$ pip install apkutils
$ python3 -m apkutils -h
usage: apkutils [-h] [-m] [-s] [-f] [-c] [-V] p
positional arguments:
p path
optional arguments:
-h, --help show this help message and exit
-m Show manifest
-s Show strings
-f Show files
-c Show certs
-V, --version show program's version number and exit
import binascii
from apkutils import __VERSION__, APK
apk = APK('test.apk')
Get AndroidManifest.json.
if apk.get_manifest():
print(json.dumps(apk.get_manifest(), indent=1))
elif apk.get_org_manifest():
print(apk.get_org_manifest())
Get strings defined in APK.
for item in apk.get_strings():
print(binascii.unhexlify(item).decode(errors='ignore'))
Get files in APK.
for item in apk.get_files():
print(item)
{'name': 'res/layout/action_bar_item.xml', 'type': 'axml', 'time': '14300101000000', 'crc': '27FA35BC'}
...
Get certificates defined in APK.
for item in apk.get_certs():
print(item)
- apkutils\axml from mikusjelly/axmlparser
- apkutils\dex from google/enjarify