import numpy as np from numpy import log as ln import math from otree.api import * doc = """ Your app description """ #making a wait page for 30 secs to separate the introduction apps from main game. because I needed to put a wait for #other participants in the beginning of the main game. and that wait page only works in the beginning of an app class C(BaseConstants): NAME_IN_URL = 'Wait' PLAYERS_PER_GROUP = 2 INSTRUCTIONS_TEMPLATE = 'Wait/Wait.html' NUM_ROUNDS = 1 class Subsession(BaseSubsession): pass class Group(BaseGroup): pass class Player(BasePlayer): pass # PAGES class Wait(Page): timeout_seconds = 30 #time out class ResultsWaitPage(WaitPage): pass class Results(Page): pass page_sequence = [Wait]