fsmosca / chess-artist

A python script that can annotate chess games in pgn file with static evaluation or search score of an engine, can annotate an epd file with acd, acs, bm, and ce opcodes, can test engine with epd test suite and can generate chess puzzles.
GNU General Public License v3.0
69 stars 18 forks source link

Add --playerandopp option #58

Closed fsmosca closed 4 years ago

fsmosca commented 4 years ago

--playerandopp [player name] is used when you want to analyze the games of player name as well as its opponent.

--player [player name] is used when you want to analyze the moves of the player name only.

--player and --playerandopp are mutually exclusive, meaning both options cannot be used at the same time.

Example: To analyze moves of Kasparov, Gary and his opponent use --playerandopp chess-artist.exe --playerandopp "Kasparov, Gary" --infile kasparov_games.pgn --outfile analyzed_games.pgn ...