Source code for vindinium.bots.random_bot

import random
from vindinium.bots import RawBot

__all__ = ['RandomBot']

[docs]class RandomBot(RawBot): '''Random bot.''' def move(self): return random.choice(['Stay', 'North', 'West', 'East', 'South'])