Skip to content

Python3 Parser for Android XML file and get Application Name without using Androguard

License

Notifications You must be signed in to change notification settings

jflbr/pyaxmlparser

 
 

Repository files navigation

axmlparser

A simple parser to parse Android XML file.

Usage

CLI :

` $ apkinfo ~/Downloads/com.hardcodedjoy.roboremo.15.apk APK: /home/chillaranand/Downloads/com.hardcodedjoy.roboremo.15.apk App name: RoboRemo Package: com.hardcodedjoy.roboremo Version name: 2.0.0 Version code: 15 `

Python package :

from pyaxmlparser import APK


apk = APK('/foo/bar.apk')
print(apk.package)
print(apk.version_name)
print(apk.version_code)
print(apk.icon_info)
print(apk.icon_data)
print(apk.application)

About

Python3 Parser for Android XML file and get Application Name without using Androguard

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.8%
  • Shell 0.2%