Recover bundled Python code alongside your Android app's Java source and resources.
Upload the APK containing your Python application.
Bundled Python modules are recovered while Android code and resources are decompiled.
Read recovered source, download raw bytecode, and check notes for unsupported modules.
Kivy, BeeWare and Chaquopy can ship a Python interpreter and Python modules inside an Android application. The Java code starts the application, while much of its behavior lives in bundled Python files. This service extracts that Python payload as well as the usual Android APK output.
Kivy and python-for-android packages can contain private.tar, a tar archive named private.mp3, or an _python_bundle directory. Both plain and gzip-compressed tar payloads are supported. Chaquopy's app.zip and app.imy ZIP archives are unpacked, as are Python files under BeeWare's assets/python/ layout. Briefcase builds using Chaquopy's layout are supported too.
The python/sources/ folder contains recovered Python source and any source files already packaged in the APK. python/pyc/ keeps the extracted bytecode with its package structure. The accompanying README explains the result and lists limitations. Bundled standard library and runtime archives are listed separately and skipped so the result focuses on the application.
No. Python bytecode varies between versions, and some instructions or modules may be unsupported. Recoverable files are kept even if another module fails. The notes identify the affected files and detected Python version. Original comments and formatting cannot be reconstructed from bytecode.
Java source, Android resources and smali remain available alongside the Python result, including when Python source recovery is unavailable.
Use the Python bytecode decompiler for individual PYC files or the PyInstaller decompiler for packaged desktop applications.