This is yet another blackjack game server (well not really another, but sounds cool). We just wanted to write a simple card game that will enable writing bot clients. This implementation allows only playing againts croupier 1 vs 1 but still allows to have much fun out of it.
Its recommended to use virtualenv for meeting package requirements.
Script below will create venv directory inside current working directory and install all necessary dependencies.
#!/bin/bash
virtualenv -p python3 venv
source venv/bin/activate
pip install -r requirements.txt
deactivateBefore starting the application we have to activate venv.
source venv/bin/activateDeactivating is done by simply writing deactivate.
python blackjack.py
# -a Host address (default: localhost)
# -p Port number (default: 5000)
# -d Verbose mode (default: false)// TODO
Members of summer semester 2016/2017 KNSI (Python) scientific circle.