/dexparser

DEX file format parser for Pythonist

Primary LanguagePythonMIT LicenseMIT

dexparser

Powerful DEX file format parser for Pythonist!

Build Status PyPI version Documentation Status

Usage

See the docs for detail descriptions.

Pre-requirements

  • Python 3.x (Unofficially, dexparser support Python 2.x)
  • DEX friendly mind

Install

pip install dexparser

Load DEX from file

from dexparser import Dexparser

filedir = '/path/to/classes.dex'
dex = Dexparser(filedir=filedir)

Load DEX file from object

from dexparser import Dexparser

with open('classes.dex', 'rb') as fileobj:
    dex = Dexparser(fileobj=fileobj)

License

This project is licensed under the MIT License

Reference