Powerful DEX file format parser for Pythonist!
See the docs for detail descriptions.
- Python 3.x (Unofficially, dexparser support Python 2.x)
- DEX friendly mind
pip install dexparser
from dexparser import Dexparser
filedir = '/path/to/classes.dex'
dex = Dexparser(filedir=filedir)
from dexparser import Dexparser
with open('classes.dex', 'rb') as fileobj:
dex = Dexparser(fileobj=fileobj)
This project is licensed under the MIT License