Skip to main content

Python3 library for efficient chess draw-gen functions

Project description

PyPi Release Docker CI

ChessLib Python Extension

About

This project provides an efficient chess draw generation extension for Python3. The main purpose of this project is enabling further TensorFlow AI projects and learning how to write an efficient Python3 extension (using good old C).

Usage

Install the official Python package using pip:

pip install chesslib

Use the chesslib package like in the following example:

import chesslib
import numpy as np
import random


def test():

    # create a new chess board in start formation
    board = chesslib.ChessBoard_StartFormation()

    # generate all possible draws
    draws = chesslib.GenerateDraws(board, chesslib.ChessColor_White, chesslib.ChessDraw_Null, True)

    # apply one of the possible draws
    draw_to_apply = draws[random.randint(0, len(draws) - 1)]
    new_board = chesslib.ApplyDraw(board, draw_to_apply)

    # write the draw's name
    print(chesslib.VisualizeDraw(draw_to_apply))

    # visualize the board before / after applying the draw
    print(chesslib.VisualizeBoard(board))
    print(chesslib.VisualizeBoard(new_board))

    # revert the draw (just call ApplyDraw again with the new board)
    rev_board = chesslib.ApplyDraw(new_board, draw_to_apply)

    # get the board's 40-byte-hash and create a new board instance from the hash
    board_hash = chesslib.Board_ToHash(board)
    board_reloaded = chesslib.Board_FromHash(board_hash)

    # see tests/ folder for more examples

How to Develop

The commands for dev-testing the chesslib are wrapped within a Docker environment. Therefore build the 'Dockerfile-dev' file which takes your source code and performs all required CI steps (build + install + unit tests). Afterwards you may attach to the Docker image with the bash console interactively and run commands, etc.

# make a dev build using the 'Dockerfile-dev' build environment
# this runs all CI steps (build + install + unit tests)
docker build . --file Dockerfile-dev -t "chesslib-dev"

# attach to the build environment's interactive bash console (leave the session with 'exit')
docker run "chesslib-dev" -it bash

# mount a Python test script into the build environment and run it
docker run -v $PWD:/scripts "chesslib-dev" python3 /scripts/test.py

Advantages of this approach are that it simplifies the dev machine setup a lot as you only need Docker, git and a good text editor on your local machine. Moreover you don't mess up your dev machine when trying to build and install the chesslib package for debugging again and again. And most importantly you keep your local copy of the git repo clean as all temporary files are created within the Docker container, so you basically don't need to worry about accidentially including build files into git commits, etc.

For a quickstart, set up your dev machine as a VM (e.g. Ubuntu 20.04 hosted by VirtualBox). After successfully creating the VM, use following commands to install all essential dev tools (git, docker, good text editor).

# install docker (e.g. Ubuntu 20.04)
sudo apt-get update && sudo apt-get install -y git docker.io
sudo usermod -aG docker $USER && reboot

# download the project's source code (if you haven't done before)
git clone https://github.com/Bonifatius94/ChessLib.Py
cd ChessLib.Py

# install the 'Visual Studio Code' text editor (optional)
sudo snap install code --classic

Copyright

You may use this project under the MIT licence's conditions.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

chesslib-1.0.333764636-cp39-cp39-manylinux2010_x86_64.whl (63.5 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

chesslib-1.0.333764636-cp39-cp39-manylinux1_x86_64.whl (54.3 kB view hashes)

Uploaded CPython 3.9

chesslib-1.0.333764636-cp38-cp38-manylinux2010_x86_64.whl (63.9 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

chesslib-1.0.333764636-cp38-cp38-manylinux1_x86_64.whl (54.7 kB view hashes)

Uploaded CPython 3.8

chesslib-1.0.333764636-cp37-cp37m-manylinux2010_x86_64.whl (64.7 kB view hashes)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

chesslib-1.0.333764636-cp37-cp37m-manylinux1_x86_64.whl (54.3 kB view hashes)

Uploaded CPython 3.7m

chesslib-1.0.333764636-cp36-cp36m-manylinux2010_x86_64.whl (63.7 kB view hashes)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

chesslib-1.0.333764636-cp36-cp36m-manylinux1_x86_64.whl (54.3 kB view hashes)

Uploaded CPython 3.6m

chesslib-1.0.333764636-cp35-cp35m-manylinux2010_x86_64.whl (63.5 kB view hashes)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

chesslib-1.0.333764636-cp35-cp35m-manylinux1_x86_64.whl (54.3 kB view hashes)

Uploaded CPython 3.5m

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