Metadata-Version: 2.1
Name: connect6
Version: 0.0.1
Summary: A Python library for developing Connect6 AI algorithms
Home-page: https://github.com/sjjeong94/connect6
Author: sjjeong94
Author-email: sjjeong94@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: pygame

# connect6
A Python library for developing Connect6 AI algorithms


## Install
```bash
$ pip install connect6
```


## Usage
Play
```bash
$ python -m connect6
```
Environment
```python
import connect6

env = connect6.Connect6()
for move in  [180, 179, 161, 160, 200, 181, 199, 140, 220, 198, 162, 120]:
    env(move)
print(env)
```

### License
MIT

