Mathieu Broillet
19487527f9
All checks were successful
continuous-integration/drone/push Build is passing
19 lines
476 B
Python
19 lines
476 B
Python
import argparse
|
|
import logging
|
|
|
|
from src import main
|
|
|
|
if __name__ == '__main__':
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("-v", "--verbose", help="increase output verbosity", action="store_true")
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
if args.verbose:
|
|
logging.basicConfig(format='[%(levelname)s] : %(message)s', level=logging.DEBUG)
|
|
else:
|
|
logging.basicConfig(format='[%(levelname)s] : %(message)s', level=logging.INFO)
|
|
|
|
main.run()
|