Metadata-Version: 2.4
Name: bombahead-py
Version: 0.1.1
Summary: Python SDK for Bombahead Bomberman bot competition
Project-URL: Homepage, https://github.com/N3moAhead/bombahead-py
Project-URL: Repository, https://github.com/N3moAhead/bombahead-py
Author: n3moahead
License-Expression: MIT
License-File: LICENSE
Requires-Python: >=3.10
Requires-Dist: websockets<16.0,>=12.0
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == 'dev'
Description-Content-Type: text/markdown

# bombahead-py

Python SDK for building Bomberman bots that connect to a Bombahead game server over WebSocket.

## Installation

```bash
pip install bombahead-py
```

## Quick Start

```python
from bombahead import Bot, Action, run


class MyBot(Bot):
    def get_next_move(self, state, helpers):
        return Action.DO_NOTHING


run(MyBot())
```
