2021-03-27 00:11:22 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
|
2021-07-23 17:14:44 +02:00
|
|
|
from blimp.main import Blimp
|
2021-03-27 00:11:22 +01:00
|
|
|
|
|
|
|
|
|
|
|
def cli():
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument("-out", "--outfile", help="set path to output file", action="store", default=None)
|
|
|
|
parser.add_argument("-dr", "--dry-run", help="perform a dry run", action="store_true", default=False)
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
# run
|
2021-03-28 16:39:58 +02:00
|
|
|
Blimp(args).main()
|