Created
October 23, 2018 13:05
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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