You can either
You can clone this repository and use python (3.6 recommended) to execute the client.
Make sure you set the debug
flag in debug.py
to False
, otherwise you will not connect to the server.
If you know python and want to develop any cool features for you personal client, feel free to fork this repository and create a pull request.
The server is intended to be run within a python 3.6 environment on the host specified in connection.py
.
On the server you can install the required packages using pip:
pip install bottle requests tabulate gevent-websocket passlib joblib requests
and start the server using
python3 -OO run_server.py
The client is intended to be compiled with
make compile
and requires pyinstaller
which can be installed using pip.