A draughts library for Python, with move generation and validation, PDN parsing and writing. Supprots multiple variants of game.
Project description
py-draughts
Efficient modern and flexible implementation of the draughts game with a beautiful web interface. Supports multiple variants of the game and allows playing against AI.
Installation
pip install py-draughts
Key features
- Provides beautiful web interface for testing your engine/playing against AI.
- Supports multiple variants of the game (with different board size).
standard,americanetc. - Follows international draughts standards. like
fenpdnetc. - Allows to easily create new variants of the game. by extending the
Boardclass. - Accurate documentation generated from code.
Documentation
Usage
Displays simple ascii board
>>> from draughts.standard import Board
>>> board = Board()
Board initialized with shape (10, 10). (base.py:108)
>>> board
. b . b . b . b . b
b . b . b . b . b .
. b . b . b . b . b
. . . . . . . . . .
. . . . . . . . . .
. . . . . . . . . .
. . . . . . . . . .
w . w . w . w . w .
. w . w . w . w . w
w . w . w . w . w .
Make and undo moves
>>> board.push_from_str("37-32")
>>> board.push_from_str("14-19")
>>> board.push_from_str("32-28")
>>> board.push_from_str("19-23")
>>> board.pop() # undo last move
>>> board.push_from_str("19-23")
>>> board.push_from_str("28x19")
>>> board
. b . b . b . b . b
b . b . b . b . b .
. b . b . b . . . b
. . . . . . w . . .
. . . . . . . . . .
. . . . . . . . . .
. . . . . . . . . .
w . . . w . w . w .
. w . w . w . w . w
w . w . w . w . w .
Generate legal moves and validate moves
>>> board.push_from_str("10x42")
Move: 10->42 is correct, but not legal in given position.
Legal moves are: [Move: 36->31, Move: 37->32, Move: 37->31, Move: 38->33, Move: 38->32, Move: 39->34, Move: 39->33, Move: 40->35, Move: 40->34]
>>> list(board.legal_moves)
[Move: 36->31, Move: 37->32, Move: 37->31, Move: 38->33, Move: 38->32, Move: 39->34, Move: 39->33, Move: 40->35, Move: 40->34]
Generate fen string and load board from fen string
>>> board =Board.from_fen("W:W4,11,28,31,K33,K34,38,40,K41,43,K44,45,K46,47:BK3,21,27,32")
Board initialized with shape (10, 10). (base.py:109)
>>> board.push_from_str("28-37")
>>> board.fen
'[FEN "B:W4,11,31,K33,K34,37,38,40,K41,43,K44,45,K46,47:BK3,21,27"]'
American checkers
>>> from draughts.american import Board
>>> board = Board()
Board initialized with shape (8, 8). (base.py:108)
>>> board
. b . b . b . b
b . b . b . b .
. b . b . b . b
. . . . . . . .
. . . . . . . .
w . w . w . w .
. w . w . w . w
w . w . w . w .
UI
from draughts.server import Server
Server().run()
Use for testing your engine.
Example with simplest possible engine.
>>> server = Server(get_best_move_method=lambda board: np.random.choice(list(board.legal_moves)))
>>> server.run()
INFO: Started server process [1617]
INFO: Waiting for application startup.
INFO: Application startup complete.
INFO: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
It is as simple as that!
Legal moves for selected square (on image "11")
testing best moves finding methods:
Contributing
Contributions to this project are welcome. If you encounter any issues or have suggestions for improvements, please open an issue or submit a pull request on the project repository.
Bibliography
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file py-draughts-1.0.0.tar.gz.
File metadata
- Download URL: py-draughts-1.0.0.tar.gz
- Upload date:
- Size: 32.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1ceae7174697a2403434101be267a8c0e438379fe40dec0cbda8ae273591abc1
|
|
| MD5 |
534e8c84f60f709100a8fd4f4f939112
|
|
| BLAKE2b-256 |
b6176dbba45cddb8ba037c8cfbd0e8a01466bbc39ef48d48148ecd6124589f1b
|
File details
Details for the file py_draughts-1.0.0-py3-none-any.whl.
File metadata
- Download URL: py_draughts-1.0.0-py3-none-any.whl
- Upload date:
- Size: 33.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c7897b8a2292a881ea1f28fb88f32809898def411c56a3aa189d3b2a36b21e2c
|
|
| MD5 |
9bbb590e3a64e1321bb62f3b26f97adc
|
|
| BLAKE2b-256 |
384f14f24ba734e9b099d105a9fda78a7dd8a728560d4ebf276d8ddbf4d44dce
|