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

appknox/pyaxmlparser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

09d78e1 · Mar 20, 2024
Feb 4, 2019
Mar 20, 2024
Jun 3, 2018
Apr 12, 2022
Jun 3, 2018
Sep 27, 2018
Jun 1, 2021
Feb 18, 2019
Dec 5, 2023
Dec 5, 2023
Jun 3, 2018
Mar 26, 2021
Mar 20, 2024
Mar 20, 2024

Repository files navigation

axmlparser

A simple parser to parse Android XML file.

Usage

➜ apkinfo --help
Usage: apkinfo [OPTIONS] FILENAME

Options:
-s, --silent  Don't print any debug or warning logs
--help        Show this message and exit.

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
Is it Signed: True
Is it Signed with v1 Signatures: True
Is it Signed with v2 Signatures: True
Is it Signed with v3 Signatures: False

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

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages