diff options
author | bloodstalker <thabogre@gmail.com> | 2018-06-30 22:31:23 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2018-06-30 22:31:23 +0000 |
commit | fa6eb4efa41e72519fc215b4c55768646bcfcde2 (patch) | |
tree | 6302e8fb10f1f33f4eafdc44a8e6a03e7e3b10fb /main.py | |
parent | Initial commit (diff) | |
download | faultreiber-fa6eb4efa41e72519fc215b4c55768646bcfcde2.tar.gz faultreiber-fa6eb4efa41e72519fc215b4c55768646bcfcde2.zip |
update
Diffstat (limited to '')
-rwxr-xr-x | main.py | 43 |
1 files changed, 43 insertions, 0 deletions
@@ -0,0 +1,43 @@ +#!/usr/bin/python3 +# _*_ coding=utf-8 _*_ + +import argparse +import code +import readline +import signal +import sys + +def SigHandler_SIGINT(signum, frame): + print() + sys.exit(0) + +class Argparser(object): + def __init__(self): + parser = argparse.ArgumentParser() + parser.add_argument("--string", type=str, help="string") + parser.add_argument("--bool", action="store_true", help="bool", default=False) + parser.add_argument("--dbg", action="store_true", help="debug", default=False) + self.args = parser.parse_args() + +# write code here +def premain(argparser): + signal.signal(signal.SIGINT, SigHandler_SIGINT) + #here + +def main(): + argparser = Argparser() + if argparser.args.dbg: + try: + premain(argparser) + except Exception as e: + print(e.__doc__) + if e.message: print(e.message) + variables = globals().copy() + variables.update(locals()) + shell = code.InteractiveConsole(variables) + shell.interact(banner="DEBUG REPL") + else: + premain(argparser) + +if __name__ == "__main__": + main() |