Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shanesatterfield/tic-tac-toe
Simple tic tac toe game, written in python, where you play against a minimax AI.
https://github.com/shanesatterfield/tic-tac-toe
Last synced: 12 days ago
JSON representation
Simple tic tac toe game, written in python, where you play against a minimax AI.
- Host: GitHub
- URL: https://github.com/shanesatterfield/tic-tac-toe
- Owner: shanesatterfield
- License: mit
- Created: 2015-08-18T05:05:10.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-24T03:11:44.000Z (over 9 years ago)
- Last Synced: 2024-11-07T22:43:52.554Z (2 months ago)
- Language: Python
- Size: 139 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tic-tac-toe
Simple tic tac toe game, written in python, where you play against a minimax, alpha beta pruning AI.## Dependencies
You will need `python` and `pyglet` to run the game.If you want to run the tests, you will need the `pytest` and the `pytest-sugar` libraries. You can run the tests with this command anywhere above the test directory.
```
py.test
```You can install these dependencies through pip with the following command from the root directory of the project.
```
pip install -r requirements.txt
```## Running the Game
You can run the game with the following command in the root directory of the project.
```
python tic_tac_toe/
```