#!/usr/bin/python3
import os
import sys

sys.path.insert(0, "/usr/lib/tools/")

try:
    sys.path.insert(0, os.getcwd())
    from dynflowparserexport import DynflowParserExport
except KeyboardInterrupt as exc:
    raise SystemExit() from exc


if __name__ == '__main__':
    DynflowParserExport().main()
    os._exit(0)
