Metadata-Version: 2.1
Name: dexparser
Version: 1.1.0
Summary: Powerful DEX file format parser for Pythonist
Home-page: https://github.com/bunseokbot/dexparser
Author: austinkim
Author-email: austin.njkim@gmail.com
License: UNKNOWN
Description: # dexparser
        
        Powerful DEX file format parser for Pythonist!
        
        [![Build Status](https://travis-ci.com/bunseokbot/dexparser.svg?branch=master)](https://travis-ci.com/bunseokbot/dexparser)
        [![PyPI version](https://badge.fury.io/py/dexparser.svg)](https://badge.fury.io/py/dexparser)
        [![Documentation Status](https://readthedocs.org/projects/dexparser/badge/?version=latest)](https://dexparser.readthedocs.io/en/latest/?badge=latest)
        
        ## Usage
        
        See the [docs](https://dexparser.readthedocs.io/en/latest/) for detail descriptions.
        
        ### Pre-requirements
        
        * Python 3.x (Unofficially, dexparser support Python 2.x)
        * DEX friendly mind
        
        ### Install
        `pip install dexparser`
        
        ### Load DEX from filename
        ```
        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)
        ```
        
        ### Load APK file from object and filename
        ```
        from dexparser import APKParser
        
        filedir = '/path/to/test.apk'
        apk = APKParser(filedir=filedir)
        
        with open('/path/to/test.apk', 'rb') as fileobj:
            apk = APKParser(fileobj=fileobj)
        ```
        
        ### Load AAB file from object and filename
        ```
        from dexparser import AABParser
        
        filedir = '/path/to/test.apk'
        aab = AABParser(filedir=filedir)
        
        with open('/path/to/test.apk', 'rb') as fileobj:
            aab = AABParser(fileobj=fileobj)
        ```
        
        
        ## License
        This project is licensed under the MIT License
        
        ## Reference
        * [Dalvik Executable Format](https://source.android.com/devices/tech/dalvik/dex-format)
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown
