I am trying to figure out how to use the chess library in python to get a 4x4
board instead of an 8x8
with Rook, Queen, King, and Rook at the back and the middle rows being Pawns.
I tried setting up the board through this line but it gives an error saying that it expects 8
columns per row in position apart of fen
board = chess.Board("rqkr/pppp1Qpp/2n2n2/4p3/2B1P3/8/PPPP1PPP/RNB1K1NR b KQkq - 0 4")
I just would like to get a working 4x4
board instead of 8x8
.
Any help is appreciated.