An open API service indexing awesome lists of open source software.

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

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 .
```