/FlaskChess

Simple chess AI built using python and flask.

Primary LanguageJavaScript

This is a simple chess engine/interface created using flask.
It uses chessboard.js and chess.js for the logic of the frontend chessboard, and python chess for the
logic of the backend chessboard. All calculation is done on the backend using python.

In order to run this application on your own machine, please install flask and python chess.

Install flask by running:
    pip install flask

Install python chess by running:
    pip install python-chess[uci,gaviota]