blob: b7575ff5f3dfc469afbca74c9a0c0bad1d9a84d7 (
plain)
- #!/usr/bin/python3
- import argparse
- __all__ = ['Args']
- parser = argparse.ArgumentParser(description='Voctocore')
- parser.add_argument('-v', '--verbose', action='count',
- help="Also print INFO and DEBUG messages.")
- parser.add_argument('-c', '--color', action='store', choices=['auto', 'always', 'never'], default='auto',
- help="Control the use of colors in the Log-Output")
- parser.add_argument('-i', '--ini-file', action='store',
- help="Load a custom config.ini-File")
- Args = parser.parse_args()
|