A starting point for making a boardgame in python.
Everything in the game is saved and managed in a pandas dataframe. Tkinter is used to provide a visual frontend.
Watch the computer play itself or tweak its logic.
To get a local copy up and running, follow these simple steps.
git clone https://github.com/remcoeijsackers/GridGame.git
Option 1: run source
pip install -r requirements.txt
python game.py
Option 2: create a excecutable using pyinstaller
pyinstaller --onefile --noconsole game.py
See the issues for a full list of proposed features and known issues.
If you have a suggestion that would make this better, please fork the repo and create a pull request.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Remco Eijsackers - contact@remcoeijsackers.com
This project is by no means an example of best practises for tkinter/pandas or python. It is a proof of concept, a starting template for others to build on. Some functionality might be broken.