aboutsummaryrefslogtreecommitdiff
path: root/voctogui/lib/args.py
blob: 6a34a6b57fa5eac9525166e2e65512b6fcd45e65 (plain)
  1. #!/usr/bin/python3
  2. import argparse
  3. __all__ = ['Args']
  4. parser = argparse.ArgumentParser(description='Voctogui')
  5. parser.add_argument('-v', '--verbose', action='count', default=0,
  6. help="Also print INFO and DEBUG messages.")
  7. parser.add_argument('-c', '--color', action='store', choices=['auto', 'always', 'never'], default='auto',
  8. help="Control the use of colors in the Log-Output")
  9. parser.add_argument('-i', '--ini-file', action='store',
  10. help="Load a custom config.ini-File")
  11. parser.add_argument('-u', '--ui-file', action='store',
  12. help="Load a custom .ui-File")
  13. Args = parser.parse_args()