def alexa_down(slots): card_title = 'Navigate: Down' print card_title sys.stdout.flush() kodi.Down() answer = "" return build_alexa_response(answer, card_title)
def alexa_down(slots): print('Going down') sys.stdout.flush() kodi.Down() return build_alexa_response('')
def alexa_down(slots): kodi.Down() return build_alexa_response('')