コード例 #1
0
def main():
    keeper = Keeper(CONFIG)
    options = sys.argv[1:]
    comm = keeper.comm(options) if len(options) <= 2 else False

    if comm and callable(comm):
        print(comm())
    else:
        print(comm)