Il2CppDumper-Python
A high-performance tool for extracting metadata from Unity IL2CPP compiled games.
File Explorer
- __init__.py
- il2cpp_executor.py
- __init__.py
- elf.py
- elf_structures.py
- macho.py
- macho_structures.py
- nso.py
- nso_structures.py
- pe.py
- pe_structures.py
- wasm.py
- wasm_structures.py
- __init__.py
- base.py
- enums.py
- metadata.py
- structures.py
- __init__.py
- binary_stream.py
- version_aware.py
- __init__.py
- decompiler.py
- script_json.py
- struct_generator.py
- __init__.py
- section_helper.py
- __init__.py
- pattern_search.py
- string_utils.py
- __init__.py
- __main__.py
- cli.py
- config.json
- config.py
- README.md
- setup.py
- 127.0.0.1_5000_.png
- image.png
- app.js
- index.html
- .gitignore
- API.md
- CLI.md
- DEVELOPMENT.md
- LICENSE
- openapi.yaml
- README.md
- requirements.txt
- server.py
- VIBE.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
