├── .gitignore ├── LICENSE ├── README └── src ├── cpfromddd.py ├── cptoddd.py ├── libtripled.py ├── lsddd.py ├── master.py ├── worker.py └── workers.cfg /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.cfg 3 | *~ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonewolf/TripleD/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonewolf/TripleD/HEAD/README -------------------------------------------------------------------------------- /src/cpfromddd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonewolf/TripleD/HEAD/src/cpfromddd.py -------------------------------------------------------------------------------- /src/cptoddd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonewolf/TripleD/HEAD/src/cptoddd.py -------------------------------------------------------------------------------- /src/libtripled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonewolf/TripleD/HEAD/src/libtripled.py -------------------------------------------------------------------------------- /src/lsddd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonewolf/TripleD/HEAD/src/lsddd.py -------------------------------------------------------------------------------- /src/master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonewolf/TripleD/HEAD/src/master.py -------------------------------------------------------------------------------- /src/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonewolf/TripleD/HEAD/src/worker.py -------------------------------------------------------------------------------- /src/workers.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theonewolf/TripleD/HEAD/src/workers.cfg --------------------------------------------------------------------------------