from otree.api import Currency as c, currency_range from . import pages from ._builtin import Bot from .models import Constants class PlayerBot(Bot): def play_round(self): yield(pages.Demographics, {'age': 30, 'gender': 1, 'race': 3, 'income': c(2000), 'hhincome': c(4000), 'marital_status': 4, 'education': 5, 'height': 180, 'weight': 60, 'health': 3, 'children': 5, 'zip': '0001', 'westernized': 1})