项目作者: cheran-senthil
项目描述 :
Chess Engine
高级语言: Python
项目地址: git://github.com/cheran-senthil/Chaturanga.git
Chaturanga
Chaturanga is a Chess API written in Python that supports both single-player and two-player games.
Installation
$ pip install Chaturanga
Functionality
- Chessboard generation from a given valid FEN position
- Pretty print of the Chessboard using Unicode (optional, defaults to False)
- Generation of all legal moves for a given position. (including en-passant, castling, and promotion)
- Identifying potential draw situations (3-fold repetition, 100 plies) and checks.
- Identification of all game ending criteria (Checkmate, Stalemate, 5-fold repetition, 150 plies)
- Undoing a move
- Resetting the Chessboard
- Chess Engine using Depth Analysis and a Piece-Square Table
- Lichess BOT (The bot is considerably faster when using the
speed
branch)
As of now, the Chessboard supports input in UCI notation (eg. e2e4
, b7b8n
) to make a move.
License
MIT