Skip to content

Instantly share code, notes, and snippets.

@frivas
Created October 23, 2018 13:05
Show Gist options
  • Save frivas/486c83169149f4f3b579c1dbe21c2bed to your computer and use it in GitHub Desktop.
Save frivas/486c83169149f4f3b579c1dbe21c2bed to your computer and use it in GitHub Desktop.
Adding all the Handlers to the Skill Builder. Medium Article. Creating an Alexa Skill Using Python
sb.add_request_handler(LaunchRequestHandler())
sb.add_request_handler(HelpIntentHandler())
sb.add_request_handler(CancelAndStopIntentHandler())
sb.add_request_handler(SessionEndedRequestHandler())
sb.add_request_handler(ListItemsIntent())
sb.add_exception_handler(AllExceptionsHandler())
handler = sb.lambda_handler()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment