parser.add_argument('--no-deploy', dest='deploy', default=True, action='store_false', help="Do not run the deployment step")
parser.add_argument('--no-cleanup', dest='cleanup', default=True, action='store_false', help="Initial deploy does not need cleanup")
parser.add_argument('--autoclick', dest='autoclick', type=int, default=0, help="How many steps to autoclick")
+ parser.add_argument('--term', dest='terms', type=str, nargs='*', default=["aic", "TU Wien"], help="How many steps to autoclick")
args = parser.parse_args()
if args.deploy:
if args.autoclick >= 1:
# start clicking
- submit_terms(["voting", "phonegate", "35c3"])
+ submit_terms(args.terms)
if args.autoclick >= 2:
download_pdf()