#Flask python Client server
The server is developed with Flask (http://flask.pocoo.org/). To run the test you need at least python 2.7.8.
pip install Flask
The server runs by defaut on port 5000 and listens to any open interface.
You can run it with python console :
import client
client.start_server()
Calling python . in the project directory :
python .
Or use your favorite IDE.