Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 574 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 574 Bytes

parcheesi

I would implement a client-server Parcheesi game which support API for calling via socket. It would be helpful in case playing with your RL models. ;)

Enviroment

Tested on python 3.7

pip install -r requirements.txt

Run

Open a terminal then run your server:

cd server
python server.py

Open another terminal then run a client with given username

cd client
python client.py {username}

Development Progess

  • Provide a full gameplay with Console interface
  • Separate project into client-server architecture
  • Write docs