2 Revize 25cc9870de ... 6024be024b

Autor SHA1 Zpráva Datum
  Luna McNulty 6024be024b Add readme před 1 rokem
  Luna McNulty 7054d2d268 Fix formatting error on white/black to move před 1 rokem
2 změnil soubory, kde provedl 38 přidání a 1 odebrání
  1. 37 0
      README.md
  2. 1 1
      opening-mistakes-anki

+ 37 - 0
README.md

@@ -0,0 +1,37 @@
+# Chess Opening Mistakes for Anki
+
+![An Anki card. The front shows the board after 1. e4 e5. The back shows the board after 2. Nf3, with a green arrow showing the Knight's move and a red arrow going from e1 to e2, suggesting that the bongcloud opening is repeated mistake the user has commited to fixing.](screenshots/front-back.png)  
+**Red**: Mistake. **Green**: Book move.
+
+---
+
+This script will create a CSV file containing your opening mistakes. when you import it into Anki, make sure that you select "Fields separated by: Tab".
+
+![Anki import dialog indicated "Fields separated by: Tab"](screenshots/import.png)
+
+The script is designed to be accessible to users with only very basic command line knowledge. When you run it without any arguments, it will offer to install its dependencies, download your lichess games to analyze, and download necessary opening books.
+
+## Help Text
+
+```
+usage: opening-mistakes-anki [-h] [-g GAMES_PGN] [-p PLAYER_NAME] [-b OPENING_BOOK] [-l LIMIT] [-c CARD_COUNT] [-t THRESHOLD] [-o OUTPUT_FILE]
+
+Searches a PGN file for opening mistakes and writes them to a CSV that can be imported into Anki
+
+optional arguments:
+  -h, --help            show this help message and exit
+  -g GAMES_PGN, --games-pgn GAMES_PGN
+                        A collection of games in PGN format.
+  -p PLAYER_NAME, --player-name PLAYER_NAME
+                        The name, as it appears in the PGN file, of the player who wants to find their opening mistakes.
+  -b OPENING_BOOK, --opening-book OPENING_BOOK
+                        An opening book in polyglot format, used to identify mistakes.
+  -l LIMIT, --limit LIMIT
+                        The maximum number of games to look at. Default: unbounded.
+  -c CARD_COUNT, --card-count CARD_COUNT
+                        The maximum number of cards to generate. Default: unbounded.
+  -t THRESHOLD, --threshold THRESHOLD
+                        The number of times a mistake must have been made for it to be included. Default: 2
+  -o OUTPUT_FILE, --output-file OUTPUT_FILE
+                        The file to write the CSV to.
+```

+ 1 - 1
opening-mistakes-anki

@@ -201,7 +201,7 @@ def main():
             front = (
                 initial_board_svg + '\n<p>' + 
                 ("White" if mistake.player_color == chess.WHITE else "Black") +
-                'to move.</p>'
+                ' to move.</p>'
             )
             back = answer_board_svg
             tags = 'Chess'