https://github.com/dlech/python-pgn-speaker
https://github.com/dlech/python-pgn-speaker
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dlech/python-pgn-speaker
- Owner: dlech
- Created: 2023-01-12T00:22:26.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-17T00:09:48.000Z (over 1 year ago)
- Last Synced: 2025-10-14T11:06:04.482Z (8 months ago)
- Language: Python
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PGN Speaker
Command line program that speaks moves from a PGN file.
This is intended to assist in visualization exercises as described in
https://nextlevelchess.blog/improve-your-visualization/
## Running the program
`pgn-speaker` is a Python program and therefore requires a Python runtime.
Instead of using `pip` to get the package, it is recommended to use [pipx].
This ensures you are always running the latest version of `pgn-speaker`.
After installing `pipx` run the following command where `$PGN` is the path to
a PGN file saved on your computer.
pipx run pgn-speaker $PGN
If `pipx` is not in your `PATH`, you may need to run it as a module instead:
python3 -m pipx ...
Or if using the Python Launcher for Windows:
py -3 -m pipx ...
[pipx]: https://pypa.github.io/pipx/
## System requirements
- Python >= 3.10
- Windows >= 10
- macOS >= 10.14