aboutsummaryrefslogtreecommitdiff
path: root/voctocore/lib/args.py
blob: 66c298d71435363e536ba672d39975e5a63a6da3 (plain)
  1. import argparse
  2. __all__ = ['Args']
  3. parser = argparse.ArgumentParser(description='Voctocore')
  4. parser.add_argument('-v', '--verbose', action='count', default=0,
  5. help="Also print INFO and DEBUG messages.")
  6. parser.add_argument('-c', '--color',
  7. action='store',
  8. choices=['auto', 'always', 'never'],
  9. default='auto',
  10. help="Control the use of colors in the Log-Output")
  11. parser.add_argument('-t', '--timestamp', action='store_true',
  12. help="Enable timestamps in the Log-Output")
  13. parser.add_argument('-i', '--ini-file', action='store',
  14. help="Load a custom config.ini-File")
  15. Args = parser.parse_args()