diff options
author | bloodstalker <thabogre@gmail.com> | 2018-09-02 11:20:15 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2018-09-02 11:20:15 +0000 |
commit | ac8f3eb87638adb6feea1beb4377a82a50a3b141 (patch) | |
tree | 8737869b531d9964a3c18217cc04bbf8b5aa05b2 /seer.py | |
parent | update (diff) | |
download | seer-ac8f3eb87638adb6feea1beb4377a82a50a3b141.tar.gz seer-ac8f3eb87638adb6feea1beb4377a82a50a3b141.zip |
update
Diffstat (limited to '')
-rwxr-xr-x | seer.py | 45 |
1 files changed, 45 insertions, 0 deletions
@@ -0,0 +1,45 @@ +#!/usr/bin/python3 +# _*_ coding=utf-8 _*_ + +import argparse +import code +import readline +import signal +import sys +from ltsm import lstm_type_1, lstm_type_2, lstm_type_3 +from cnn import cnn_type_1 + +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() |