https://github.com/florczakraf/dso-tools
A set of tools for analyzing and modifying Torque3d VM bytecode
https://github.com/florczakraf/dso-tools
bytecode-manipulation bytecode-parser dso torque3d
Last synced: 6 months ago
JSON representation
A set of tools for analyzing and modifying Torque3d VM bytecode
- Host: GitHub
- URL: https://github.com/florczakraf/dso-tools
- Owner: florczakraf
- License: mit
- Archived: true
- Created: 2020-09-20T10:54:27.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-24T17:48:32.000Z (over 5 years ago)
- Last Synced: 2025-07-01T20:25:57.930Z (8 months ago)
- Topics: bytecode-manipulation, bytecode-parser, dso, torque3d
- Language: Python
- Homepage: https://blog.andr.host/posts/2020/09/25-upscaling-maluch-racer/
- Size: 43 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dso tools
A set of tools for analyzing and modifying Torque3d VM bytecode.
## Installation
```bash
$ git clone git@github.com:florczakraf/dso-tools.git
$ cd dso-tools
$ pip install .
```
or in case of development:
```bash
$ pip install -e .[dev]
```
## Usage Examples
For examples browse [tests](tests) and [examples](examples) directories.
This package provides an entry-point called `dso`. You can call it with `--help` to get started.
## Development
```
$ pytest
$ black .
```