Metadata-Version: 2.1
Name: chessbots
Version: 0.1.0
Summary: Package for chess bots
Home-page: https://github.com/JeniaD/chess-api
Author: JeniaD
Author-email: jeniadeshchenko@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/JeniaD/chess-api/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Chess API
It is simple chess API for bots, which is based on 
[chess](https://github.com/niklasf/python-chess) 
library. It provides small functionality, although it is enough
to build your own bot from scratch.

Here is an example:
```python
>>> import chessbots
>>> import chessbots.bot
>>> import chessbots.engine
>>> chessbots.bot.BaseBot() # The class which contans basic functions for your bot
>>> chessbots.bot.ExampleBot() # Built-in bot based on minimax algorithm
>>> chessbots.engine.LaunchGame(bot1, bot2) # Function which allows bots to play games against each other
```

