1 个仓库
Reads compiled bytecode from .pyc files on disk into memory for subsequent decompilation or analysis.
Distinct from Bytecode Decompilers: Distinct from Bytecode Decompilers: focuses on the file reading and loading step rather than the decompilation transformation itself.
Explore 1 awesome GitHub repository matching part of an awesome list · Bytecode File Readers. Refine with filters or upvote what's useful.
pycdc is a reverse engineering toolset that decompiles and disassembles compiled Python bytecode files back into readable source code. It parses .pyc file headers, reconstructs abstract syntax trees from bytecode instructions, and handles version-specific opcodes across Python versions 1.0 through 3.13 with endian-aware binary parsing. The tool recovers numeric constants, string literals, and marshalled Python objects from compiled bytecode, supporting both file-based and in-memory bytecode loading. It provides a human-readable disassembly listing of bytecode instructions alongside full sourc
Reads compiled Python bytecode from a .pyc file on disk into memory for decompilation.