Simple Connect Four game on a 8x8 grid programmed from scratch using Python's Tkinter interface.
connect4_demo.mp4
Simply clone the project, make sure you have the requirements installed (NumPy and Pillow), then you can run the game. Easy ;)
git clone https://github.com/penpy/connect4.git
cd connect4
pip3 install -r requirements.txt
python connect4.py
Add an AI bot and an optimal solver.