├── .gitignore ├── LICENSE ├── README.md ├── images ├── logo.png └── logo2.png └── src ├── WSD.py ├── WSDservices.py └── run.bat /.gitignore: -------------------------------------------------------------------------------- 1 | src/output 2 | src/__pycache__ 3 | art -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzwel/WSD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzwel/WSD/HEAD/README.md -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzwel/WSD/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzwel/WSD/HEAD/images/logo2.png -------------------------------------------------------------------------------- /src/WSD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzwel/WSD/HEAD/src/WSD.py -------------------------------------------------------------------------------- /src/WSDservices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzwel/WSD/HEAD/src/WSDservices.py -------------------------------------------------------------------------------- /src/run.bat: -------------------------------------------------------------------------------- 1 | start %CD%\WSD.py --------------------------------------------------------------------------------