List phase details of a phase """ """ Invoked by running `evalai challenges CHALLENGE phase PHASE` """ ctx.phase_id = phase if len(ctx.subcommand) == 0: display_challenge_phase_detail(ctx.challenge_id, phase, json) @phase.command() @click.pass_obj @click.option( "--start-date", "-s", type=Date(format="%m/%d/%y"), help="Start date for submissions in `mm/dd/yyyy` format.", ) @click.option( "--end-date", "-e", type=Date(format="%m/%d/%y"), help="End date for submissions in `mm/dd/yyyy` format.", ) def submissions(ctx, start_date, end_date): """ Display submissions to a particular challenge. """ """ Invoked by running `evalai challenge CHALLENGE phase PHASE submissions`. """
""" List phase details of a phase """ """ Invoked by running `evalai challenges CHALLENGE phase PHASE` """ ctx.phase_id = phase if len(ctx.subcommand) == 0: display_challenge_phase_detail(ctx.challenge_id, phase, json) @phase.command() @click.pass_obj @click.option('--start-date', '-s', type=Date(format='%m/%d/%y'), help="Start date for submissions in `mm/dd/yyyy` format.") @click.option('--end-date', '-e', type=Date(format='%m/%d/%y'), help="End date for submissions in `mm/dd/yyyy` format.") def submissions(ctx, start_date, end_date): """ Display submissions to a particular challenge. """ """ Invoked by running `evalai challenge CHALLENGE phase PHASE submissions`. """ display_my_submission_details(ctx.challenge_id, ctx.phase_id, start_date, end_date)