Metadata-Version: 2.4
Name: rshogi
Version: 0.1.1
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Rust
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
License-File: LICENSE
Summary: Python bindings for the rshogi core library.
Author: rshogi contributors
Requires-Python: >=3.9
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: Repository, https://github.com/nyoki-mtl/rshogi

# rshogi

Python bindings for the `rshogi-core` crate.

## Development Install

```bash
python -m pip install maturin
maturin develop -m crates/rshogi/pyproject.toml
```

## AVX2 Build

`rshogi-avx2` is an AVX2-enabled build of the same Python module.

```bash
python -m pip install rshogi-avx2
```

## Quick Example

```python
import rshogi

board = rshogi.Board()
board.push("7g7f")
print(board.sfen())
```

