Skip to main content

A package for creating GIFs of chess game from PGN files.

Project description

chess_gif : Convert chess PGNs to GIFs

chess_gif is a python library for easily making GIFs of chess games in PGN (Portable Game Notation) format which is the standard plain text format for recording chess games. chess_gif allows users to create highly customizable and optimized GIFs from the PGN files of their chess games.

MIT License Code-Size Documentation Downloads

Installation

You can install chess_gif from PyPI.

pip install chess_gif

chess_gif requires pyvips and pygifsicle as its dependencies:

  1. Windows users need to download the pyvip's binaries and add vips-dev-x.y\bin to their PATH variable for its installation. You can download the binaries by clicking here. Linux and macOS users need not worry about this and can simply skip this step. For further details, refer pyvip's installation guide.

  2. While running the installation, on MacOS the setup will automatically install gifsicle using Brew.

    On Linux you will need to install gifsicle using apt-get as follows:

    sudo apt-get install gifsicle 
    

    On Windows you will need to download and install the appropriate port of the library for your OS. Add the path to gifsicle.exe file to your PATH variable.

Documentation

Check out the documentation: chess_gif docs

Usage Example

This is how a sample PGN file looks like.

[Event "F/S Return Match"]
[Site "Belgrade, Serbia JUG"]
[Date "1992.11.04"]
[Round "29"]
[White "Fischer, Robert J."]
[Black "Spassky, Boris V."]
[Result "1/2-1/2"]

1. e4 e5 2. Nf3 Nc6 3. Bb5 a6 {This opening is called the Ruy Lopez.}
4. Ba4 Nf6 5. O-O Be7 6. Re1 b5 7. Bb3 d6 8. c3 O-O 9. h3 Nb8 10. d4 Nbd7
11. c4 c6 12. cxb5 axb5 13. Nc3 Bb7 14. Bg5 b4 15. Nb1 h6 16. Bh4 c5 17. dxe5
Nxe4 18. Bxe7 Qxe7 19. exd6 Qf6 20. Nbd2 Nxd6 21. Nc4 Nxc4 22. Bxc4 Nb6
23. Ne5 Rae8 24. Bxf7+ Rxf7 25. Nxf7 Rxe1+ 26. Qxe1 Kxf7 27. Qe3 Qg5 28. Qxg5
hxg5 29. b3 Ke6 30. a3 Kd6 31. axb4 cxb4 32. Ra5 Nd5 33. f3 Bc8 34. Kf2 Bf5
35. Ra7 g6 36. Ra6+ Kc5 37. Ke1 Nf4 38. g3 Nxh3 39. Kd2 Kb5 40. Rd6 Kc5 41. Ra6
Nf2 42. g4 Bd3 43. Re6 1/2-1/2

Save this text in a file with .pgn extension.

Run the following code to create a GIF !

    >>> from chess_gif.gif_maker import Gifmaker
    >>> obj = Gifmaker(pgn_file_path, h_margin = 20 , v_margin = 80 )
    >>> obj.make_gif('chess_game.gif')

The GIF should be generated in your current working directory.

Dependencies

  1. python-chess : python-chess is a pure Python chess library with move generation, move validation and support for common formats. chess_gif uses python-chess for parsing pgn files and also for creating a board represenation of the chess games.

  2. Python Imaging Library : Pillow is the friendly PIL fork by Alex Clark and Contributors. PIL is the Python Imaging Library by Fredrik Lundh and Contributors.

  3. imageio : Imageio is a Python library that provides an easy interface to read and write a wide range of image data, including animated images, video, volumetric data, and scientific formats. It is cross-platform, runs on Python 3.5+, and is easy to install. chess_gif is using imageio for creating the GIFs from frames generated using PIL.

  4. pyvips : The module wraps the libvips image processing library. It needs the libvips shared library on your library search path, version 8.2 or later. The library has been utilized in chess_gif for svg rendering.

  5. pygifsicle: Python package wrapping the gifsicle library for editing and optimizing gifs.

Credits

  • The piece themes used for the repository have been taken from the publicly available themes taken from lichess.org's amazing repository-lila.

  • python-chess's pgn parser made it extremely easy for parsing the PGN files for rendering GIFs.

License

The repository is licensed under MIT License .

Contributing

  1. Fork it (https://github.com/fork52/chess_gif/fork)
  2. Create your feature branch (git checkout -b feature/fooBar)
  3. Commit your changes (git commit -am 'Add some fooBar')
  4. Push to the branch (git push origin feature/fooBar)
  5. Create a new Pull Request

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

chess_gif-0.1.2.tar.gz (239.3 kB view hashes)

Uploaded Source

Built Distribution

chess_gif-0.1.2-py3-none-any.whl (441.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page