import argparse import configparser import logging import lib.cwd argparser = argparse.ArgumentParser(description='Tilde administration tools') argparser.add_argument('-c', '--config', default=lib.cwd.cwd, type=str, help='Path to configuration file', required=False) # store_true just stores true when the command is supplied, so it doesn't need choices nor types argparser.add_argument('-u', '--unapproved', default=False, action="store_true", help='only unapproved users. Default is only approved.', required=False) argparser.add_argument('-a', '--approved', default=False, action="store_true", help="Only approved Users.", required=False) argparser.add_argument('-f', '--file', default="stdout", type=str, help='write to file instead of stdout', required=False) argparser.add_argument('--Import', default=False, action="store_true", help="Import Users from file. Affects currently only Import.py.\n" "Setting this to true will result in -f being interpreted as the input file to import " "users from. The file MUST be a comma separated CSV file being readable having it's " "defined columns written in the first line.")