├── .flake8 ├── .github └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── README.md ├── basic_type.py ├── class_loader.py ├── classes.list ├── generate_ghidra_pyi.py ├── generate_stub_package.py ├── helper.py ├── media └── pycharm_demo.gif ├── pythonscript_handler.py ├── type_extractor.py ├── type_formatter.py ├── vendor ├── attr │ ├── __init__.py │ ├── _cmp.py │ ├── _compat.py │ ├── _config.py │ ├── _funcs.py │ ├── _make.py │ ├── _next_gen.py │ ├── _version_info.py │ ├── converters.py │ ├── exceptions.py │ ├── filters.py │ ├── py.typed │ ├── setters.py │ └── validators.py ├── attrs-21.4.0.dist-info │ ├── AUTHORS.rst │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ └── top_level.txt ├── attrs │ ├── __init__.py │ ├── converters.py │ ├── exceptions.py │ ├── filters.py │ ├── py.typed │ ├── setters.py │ └── validators.py ├── typing-3.10.0.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ └── top_level.txt └── typing.py ├── vendor_packages.py └── version.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *$py.class 2 | *.pyi 3 | .idea 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/README.md -------------------------------------------------------------------------------- /basic_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/basic_type.py -------------------------------------------------------------------------------- /class_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/class_loader.py -------------------------------------------------------------------------------- /classes.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/classes.list -------------------------------------------------------------------------------- /generate_ghidra_pyi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/generate_ghidra_pyi.py -------------------------------------------------------------------------------- /generate_stub_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/generate_stub_package.py -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/helper.py -------------------------------------------------------------------------------- /media/pycharm_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/media/pycharm_demo.gif -------------------------------------------------------------------------------- /pythonscript_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/pythonscript_handler.py -------------------------------------------------------------------------------- /type_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/type_extractor.py -------------------------------------------------------------------------------- /type_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/type_formatter.py -------------------------------------------------------------------------------- /vendor/attr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/attr/__init__.py -------------------------------------------------------------------------------- /vendor/attr/_cmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/attr/_cmp.py -------------------------------------------------------------------------------- /vendor/attr/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/attr/_compat.py -------------------------------------------------------------------------------- /vendor/attr/_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/attr/_config.py -------------------------------------------------------------------------------- /vendor/attr/_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/attr/_funcs.py -------------------------------------------------------------------------------- /vendor/attr/_make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/attr/_make.py -------------------------------------------------------------------------------- /vendor/attr/_next_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/attr/_next_gen.py -------------------------------------------------------------------------------- /vendor/attr/_version_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/attr/_version_info.py -------------------------------------------------------------------------------- /vendor/attr/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/attr/converters.py -------------------------------------------------------------------------------- /vendor/attr/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/attr/exceptions.py -------------------------------------------------------------------------------- /vendor/attr/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/attr/filters.py -------------------------------------------------------------------------------- /vendor/attr/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/attr/setters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/attr/setters.py -------------------------------------------------------------------------------- /vendor/attr/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/attr/validators.py -------------------------------------------------------------------------------- /vendor/attrs-21.4.0.dist-info/AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/attrs-21.4.0.dist-info/AUTHORS.rst -------------------------------------------------------------------------------- /vendor/attrs-21.4.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /vendor/attrs-21.4.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/attrs-21.4.0.dist-info/LICENSE -------------------------------------------------------------------------------- /vendor/attrs-21.4.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/attrs-21.4.0.dist-info/METADATA -------------------------------------------------------------------------------- /vendor/attrs-21.4.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/attrs-21.4.0.dist-info/RECORD -------------------------------------------------------------------------------- /vendor/attrs-21.4.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/attrs-21.4.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/attrs-21.4.0.dist-info/WHEEL -------------------------------------------------------------------------------- /vendor/attrs-21.4.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | attr 2 | attrs 3 | -------------------------------------------------------------------------------- /vendor/attrs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/attrs/__init__.py -------------------------------------------------------------------------------- /vendor/attrs/converters.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: MIT 2 | 3 | from attr.converters import * # noqa 4 | -------------------------------------------------------------------------------- /vendor/attrs/exceptions.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: MIT 2 | 3 | from attr.exceptions import * # noqa 4 | -------------------------------------------------------------------------------- /vendor/attrs/filters.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: MIT 2 | 3 | from attr.filters import * # noqa 4 | -------------------------------------------------------------------------------- /vendor/attrs/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/attrs/setters.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: MIT 2 | 3 | from attr.setters import * # noqa 4 | -------------------------------------------------------------------------------- /vendor/attrs/validators.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: MIT 2 | 3 | from attr.validators import * # noqa 4 | -------------------------------------------------------------------------------- /vendor/typing-3.10.0.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /vendor/typing-3.10.0.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/typing-3.10.0.0.dist-info/LICENSE -------------------------------------------------------------------------------- /vendor/typing-3.10.0.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/typing-3.10.0.0.dist-info/METADATA -------------------------------------------------------------------------------- /vendor/typing-3.10.0.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/typing-3.10.0.0.dist-info/RECORD -------------------------------------------------------------------------------- /vendor/typing-3.10.0.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/typing-3.10.0.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.36.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | 6 | -------------------------------------------------------------------------------- /vendor/typing-3.10.0.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | typing 2 | -------------------------------------------------------------------------------- /vendor/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor/typing.py -------------------------------------------------------------------------------- /vendor_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/vendor_packages.py -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VDOO-Connected-Trust/ghidra-pyi-generator/HEAD/version.py --------------------------------------------------------------------------------