unidecompiler-plugin-python-pyc 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- unidecompiler_plugin_python_pyc-0.1.1/PKG-INFO +26 -0
- unidecompiler_plugin_python_pyc-0.1.1/README.md +13 -0
- unidecompiler_plugin_python_pyc-0.1.1/pyproject.toml +24 -0
- unidecompiler_plugin_python_pyc-0.1.1/setup.cfg +4 -0
- unidecompiler_plugin_python_pyc-0.1.1/src/unidecompiler_plugin_python_pyc/__init__.py +2 -0
- unidecompiler_plugin_python_pyc-0.1.1/src/unidecompiler_plugin_python_pyc/lifter.py +1085 -0
- unidecompiler_plugin_python_pyc-0.1.1/src/unidecompiler_plugin_python_pyc/plugin.py +47 -0
- unidecompiler_plugin_python_pyc-0.1.1/src/unidecompiler_plugin_python_pyc/pyc.py +136 -0
- unidecompiler_plugin_python_pyc-0.1.1/src/unidecompiler_plugin_python_pyc/simulation.py +54 -0
- unidecompiler_plugin_python_pyc-0.1.1/src/unidecompiler_plugin_python_pyc/support.py +15 -0
- unidecompiler_plugin_python_pyc-0.1.1/src/unidecompiler_plugin_python_pyc.egg-info/PKG-INFO +26 -0
- unidecompiler_plugin_python_pyc-0.1.1/src/unidecompiler_plugin_python_pyc.egg-info/SOURCES.txt +14 -0
- unidecompiler_plugin_python_pyc-0.1.1/src/unidecompiler_plugin_python_pyc.egg-info/dependency_links.txt +1 -0
- unidecompiler_plugin_python_pyc-0.1.1/src/unidecompiler_plugin_python_pyc.egg-info/entry_points.txt +2 -0
- unidecompiler_plugin_python_pyc-0.1.1/src/unidecompiler_plugin_python_pyc.egg-info/requires.txt +1 -0
- unidecompiler_plugin_python_pyc-0.1.1/src/unidecompiler_plugin_python_pyc.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: unidecompiler-plugin-python-pyc
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: Python bytecode frontend plugin for unidecompiler
|
|
5
|
+
Author-email: Wker <1670133844@qq.com>
|
|
6
|
+
License-Expression: AGPL-3.0-or-later
|
|
7
|
+
Project-URL: Homepage, https://github.com/Wker666/unidecompiler
|
|
8
|
+
Project-URL: Repository, https://github.com/Wker666/unidecompiler
|
|
9
|
+
Project-URL: Issues, https://github.com/Wker666/unidecompiler/issues
|
|
10
|
+
Requires-Python: >=3.11
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
Requires-Dist: unidecompiler<0.2.0,>=0.1.1
|
|
13
|
+
|
|
14
|
+
# unidecompiler-plugin-python-pyc
|
|
15
|
+
|
|
16
|
+
Frontend plugin for Python `.pyc` bytecode files. It decodes Python bytecode
|
|
17
|
+
and submits neutral thin IR to `unidecompiler`, where recovery and pseudocode
|
|
18
|
+
rendering occur.
|
|
19
|
+
|
|
20
|
+
Install with:
|
|
21
|
+
|
|
22
|
+
```sh
|
|
23
|
+
python -m pip install unidecompiler-plugin-python-pyc
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
The plugin is discovered automatically by compatible CLI and GUI hosts.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# unidecompiler-plugin-python-pyc
|
|
2
|
+
|
|
3
|
+
Frontend plugin for Python `.pyc` bytecode files. It decodes Python bytecode
|
|
4
|
+
and submits neutral thin IR to `unidecompiler`, where recovery and pseudocode
|
|
5
|
+
rendering occur.
|
|
6
|
+
|
|
7
|
+
Install with:
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
python -m pip install unidecompiler-plugin-python-pyc
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
The plugin is discovered automatically by compatible CLI and GUI hosts.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "unidecompiler-plugin-python-pyc"
|
|
7
|
+
version = "0.1.1"
|
|
8
|
+
description = "Python bytecode frontend plugin for unidecompiler"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "AGPL-3.0-or-later"
|
|
11
|
+
authors = [{ name = "Wker", email = "1670133844@qq.com" }]
|
|
12
|
+
requires-python = ">=3.11"
|
|
13
|
+
dependencies = ["unidecompiler>=0.1.1,<0.2.0"]
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://github.com/Wker666/unidecompiler"
|
|
17
|
+
Repository = "https://github.com/Wker666/unidecompiler"
|
|
18
|
+
Issues = "https://github.com/Wker666/unidecompiler/issues"
|
|
19
|
+
|
|
20
|
+
[project.entry-points."unidecompiler.frontends"]
|
|
21
|
+
python-pyc = "unidecompiler_plugin_python_pyc.plugin:PythonPycFrontendPlugin"
|
|
22
|
+
|
|
23
|
+
[tool.setuptools.packages.find]
|
|
24
|
+
where = ["src"]
|