示例#1
0
def main():

    command_handlers = {
        'get': get_param,
        'set': set_param,
        'list': list_params,
    }

    args = main_options()

    mooltipass = MooltipassClient()

    try:
        pass
    except Exception as e:
        print(e)
        sys.exit(1)

    # Ping the mooltipass, an integral part of the initialization process.
    if not mooltipass.ping():
        print('Mooltipass did not reply to a ping request!')
        sys.exit(1)

    command_handlers[args.command](mooltipass, args)

    sys.exit(0)
示例#2
0
def main():

    command_handlers = {
        'get':get_favorite,
        'set':set_favorite,
        'del':del_favorite,
        'list':list_favorites
    }

    args = main_options()

    mooltipass = MooltipassClient()

    try:
        pass
    except Exception as e:
        print(e)
        sys.exit(1)

    # Ping the mooltipass, an integral part of the initialization process.
    if not mooltipass.ping():
        print('Mooltipass did not reply to a ping request!')
        sys.exit(1)

    # Ensure Mooltipass status
    quiet_bool = False
    while True:
        status = mooltipass.get_status()
        if status == 5:
            break
        if not quiet_bool:
            print('Insert a card and unlock the Mooltipass...')
        quiet_bool = True
        time.sleep(1)
    quiet_bool = False

    if args.skip_mgmt_enter == False:
        mooltipass.start_memory_management()
    command_handlers[args.command](mooltipass, args)
    if args.skip_mgmt_exit == False:
        mooltipass.end_memory_management()

    sys.exit(0)
示例#3
0
def main():

    command_handlers = {
        'get': get_favorite,
        'set': set_favorite,
        'del': del_favorite,
        'list': list_favorites
    }

    args = main_options()

    mooltipass = MooltipassClient()

    try:
        pass
    except Exception as e:
        print(e)
        sys.exit(1)

    # Ping the mooltipass, an integral part of the initialization process.
    if not mooltipass.ping():
        print('Mooltipass did not reply to a ping request!')
        sys.exit(1)

    # Ensure Mooltipass status
    quiet_bool = False
    while True:
        status = mooltipass.get_status()
        if status == 5:
            break
        if not quiet_bool:
            print('Insert a card and unlock the Mooltipass...')
        quiet_bool = True
        time.sleep(1)
    quiet_bool = False

    if args.skip_mgmt_enter == False:
        mooltipass.start_memory_management()
    command_handlers[args.command](mooltipass, args)
    if args.skip_mgmt_exit == False:
        mooltipass.end_memory_management()

    sys.exit(0)
示例#4
0
def main():

    command_handlers = {
        'get': get_param,
        'set': set_param,
        'list': list_params,
    }

    args = main_options()

    mooltipass = MooltipassClient()

    try:
        pass
    except Exception as e:
        print(e)
        sys.exit(1)

    # Ping the mooltipass, an integral part of the initialization process.
    if not mooltipass.ping():
        print('Mooltipass did not reply to a ping request!')
        sys.exit(1)

    # Ensure Mooltipass status
    quiet_bool = False
    while True:
        status = mooltipass.get_status()
        if status == 5:
            break
        if not quiet_bool:
            print('Insert a card and unlock the Mooltipass...')
        quiet_bool = True
        time.sleep(1)
    quiet_bool = False

    command_handlers[args.command](mooltipass, args)

    sys.exit(0)
示例#5
0
def main():

    command_handlers = {
        'get':get_param,
        'set':set_param,
        'list':list_params,
    }

    args = main_options()

    mooltipass = MooltipassClient()

    try:
        pass
    except Exception as e:
        print(e)
        sys.exit(1)

    # Ping the mooltipass, an integral part of the initialization process.
    if not mooltipass.ping():
        print('Mooltipass did not reply to a ping request!')
        sys.exit(1)

    # Ensure Mooltipass status
    quiet_bool = False
    while True:
        status = mooltipass.get_status()
        if status == 5:
            break
        if not quiet_bool:
            print('Insert a card and unlock the Mooltipass...')
        quiet_bool = True
        time.sleep(1)
    quiet_bool = False

    command_handlers[args.command](mooltipass, args)

    sys.exit(0)