https://github.com/NYUCCL/psiTurk
Raw File
Tip revision: 2e88e4bcf087e639d403f498b5bbccae23b0c13d authored by Dave Eargle on 01 October 2021, 04:16:32 UTC
pin ciso8601 to v2.1.3
Tip revision: 2e88e4b
worker.txt
Usage:
  worker approve (--hit <hit_id> | <assignment_id> ...)
  worker reject (--hit <hit_id> | <assignment_id> ...)
  worker unreject (--hit <hit_id> | <assignment_id> ...)
  worker bonus  (--amount <amount> | --auto) (--hit <hit_id> | <assignment_id> ...)
  worker list [--submitted | --approved | --rejected] [--hit <hit_id>]
  worker help

'worker' is used with the following subcommands:
  approve   Approve worker assignments for one or more assignment ID's, or
  	    use the '--hit' flag to approve all workers for a specific HIT.
  reject    Reject worker assignments for one or more assignment ID's, or use
            the '--hit' flag to reject all workers for a specific HIT.
  unreject  Unreject worker assignments for one or more assignment ID's, or use
            the '--hit' flag to unreject all rejected workers for a specific HIT.
  bonus     Grant bonuses to workers for one or more assignment ID's, or use
            the '--hit' flag to bonus all workers for a specific HIT. Enter the
            bonus '--amount <amount>' in an X.XX format, or use the '--auto' flag
            to bonus each worker according to the 'bonus' field in the database
            (requires a custom bonus route in the experiment's custom.py file).
            Bonuses given using the '--hit' flag will only be applied to
            workers who have not already been bonused for the HIT, but bonuses
            given to specific assignment ID's will be given regardless of
            whether the worker has already been bonused.
  list      List all workers, or list workers fitting a specific status using.
            the provided flags.  Use the '--hit' flag to list workers for a
            specific HIT.
  help	    Display this screen.
back to top