This is a school project for the Faculty of Mathemathics and Physics Ljubljana that includes a website on which you can face different computer AI in three games (Rock Paper Scissors, Three in a Row and Four in a row) and learn about some of the common ways to write computer AI.
- Python 3.9.3 or newer. Download from the official Python homepage.
- Bottle, a lightweight WSGI micro web-framework for Python. Install with
pip install bottle
or download the source package at PyPI.
- After installing dependencies clone the repository with:
git clone https://github.com/JakobPogacnikSouvent/AI-showcase
or through the GitHub interface.
- Navigate to cloned directory and run app.py with:
python app.py
-
The website runs on localhost and is accessible on http://127.0.0.1:8080/ after runing the app.
-
To close the website kill the python process runing app.py with
Ctrl + C
.