/chess

This Code allows you to play 2 player, AI vs human and Ai vs AI chess game. Some AI Algorithms are already present in code and some are yet to be written. Additionally It uses Computer Vision which can enable it to play chess online with lichess.

Primary LanguagePython

Its a simple two player classic chess game.

to run it :

  • clone it
  • ensure u have tk installed in your system
  • run your code python main.py

Want to test your own bot with others?

  • Write your code in MyBot.py
  • your function should return a list containing 2 tuples: [(y,x),(y',x')]
  • (y,x) is position of token you want to move
  • (y',x') is position where you want to move your token

Note : Because its still in development phase code may have bugs (Don't forget to raise issues if you find one)