Wraps the open-source Stockfish chess engine for easy integration into python.
Project description
Stockfish
Implements an easy-to-use Stockfish class to integrates the Stockfish chess engine with Python.
Install
$ pip install stockfish
Ubuntu or Debian
# apt install stockfish
Mac OS
$ brew install stockfish
Features
- set current position
- get best move
Usage
from stockfish import Stockfish
# you should install the stockfish engine in your operating system globally or specify path to binary file in class constructor
stockfish = Stockfish('/Users/zhelyabuzhsky/Work/stockfish/stockfish-9-64')
# set position by moves:
stockfish.set_position(['e2e4', 'e7e6'])
# set position by FEN:
stockfish.set_fen_position("rnbqkbnr/pppp1ppp/4p3/8/4P3/8/PPPP1PPP/RNBQKBNR w KQkq - 0 2")
print(stockfish.get_best_move()) # d2d4
print(stockfish.is_move_correct('a2a3')) # True
# get last move info:
print(stockfish.info)
# e.g. 'info depth 2 seldepth 3 multipv 1 score mate -1 nodes 11 nps 5500 tbhits 0 time 2 pv h2g1 h4g3'
Testing
$ python setup.py test
Security
If you discover any security related issues, please email zhelyabuzhsky@icloud.com instead of using the issue tracker.
Credits
License
GNU General Public License, version 3. Please see License File for more information.
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 stockfish-3.2.0.tar.gz.
File metadata
- Download URL: stockfish-3.2.0.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
850e1140a52b8fcb24953cb2fa494b7bb2d20892dab124e3b159439111dcab01
|
|
| MD5 |
09495b47eb822214bc16d49a21dc4ef7
|
|
| BLAKE2b-256 |
61d28e00d5fa533bc653d992e2f763ffa4460b9d431a5e6a4be19f29021288af
|
File details
Details for the file stockfish-3.2.0-py3-none-any.whl.
File metadata
- Download URL: stockfish-3.2.0-py3-none-any.whl
- Upload date:
- Size: 16.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5dbdc36ccdf3f4399e36f48fe158fa2124dc0a3866a5318cccc2d649dc7debaa
|
|
| MD5 |
c74f1b7dc328e3d786623016cab2bdbb
|
|
| BLAKE2b-256 |
c75f19f91fce860e5c32f60de1f1c4de1ab2c5e42ece4523de30177b0d11a86d
|