A battle royale for bots. Write your own bots in Python and watch them play!
It is recommended to use a virtual environment. Once activated, install using:
pip install botroyale
It takes as few as 7 lines of code to write your own bot and watch it play:
import botroyale as br
class MyBot(br.BaseBot):
NAME = 'mybot'
def poll_action(self, state):
return br.Idle() # Add bot logic here
br.register_bot(MyBot)
br.run_gui()
Browse the docs for guides and API reference to learn more.
Join us in the community discord server.
Browse the contribution guide.