from otree.api import * doc = """ Your app description """ class C(BaseConstants): NAME_IN_URL = 'Test' PLAYERS_PER_GROUP = None NUM_ROUNDS = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): MyGuess = models.IntegerField(label='', initial=0) # PAGES class MyPage(Page): form_model = 'player' form_fields = ['MyGuess'] @staticmethod def get_timeout_seconds(player): return 10 class ResultsWaitPage(WaitPage): pass class Results(Page): pass page_sequence = [MyPage, ResultsWaitPage, Results]