Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/appknox/pyaxmlparser
Python3 Parser for Android XML file and get Application Name without using Androguard
https://github.com/appknox/pyaxmlparser
android apk-parser python3
Last synced: 5 days ago
JSON representation
Python3 Parser for Android XML file and get Application Name without using Androguard
- Host: GitHub
- URL: https://github.com/appknox/pyaxmlparser
- Owner: appknox
- License: apache-2.0
- Created: 2017-03-17T17:02:42.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-03-20T17:21:17.000Z (9 months ago)
- Last Synced: 2024-12-14T01:13:35.451Z (13 days ago)
- Topics: android, apk-parser, python3
- Language: Python
- Homepage:
- Size: 510 KB
- Stars: 137
- Watchers: 18
- Forks: 41
- Open Issues: 9
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
axmlparser
===========A simple parser to parse Android XML file.
Usage
======.. code-block:: shell
➜ apkinfo --help
Usage: apkinfo [OPTIONS] FILENAMEOptions:
-s, --silent Don't print any debug or warning logs
--help Show this message and exit.CLI :
====.. code-block:: shell
$ 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: FalsePython package :
================.. code-block:: python
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)