A simple Tic Tac Toe game built with Python and Flask. This application allows two players to play Tic Tac Toe in a web browser. Originally forked from NM-Tafe Group Activity, and then Updated by Jeonghyun Min
- Two-player Tic Tac Toe game
- Branch > main: normal tic tae toe game
- Branch > blind: blind tic tae toe game in which players cannot see their marks until the game end
- Simple web interface
- Option to reset the game
- Python 3.x
- pip (Python package installer)
-
Clone the repository:
git clone https://github.com/yourusername/tic-tac-toe.git cd tic-tac-toe
-
Install dependencies:
pip install -r requirements.txt
-
(Optional) Change to blind branch
git checkout blind
-
Run the application:
python app.py
-
Open your web browser:
Go to
http://127.0.0.1:5000
to play the game.