Skip to content

Instantly share code, notes, and snippets.

@frivas
Created October 23, 2018 13:01
Show Gist options
  • Save frivas/aa3d20b4295b5ffe717f308f6c55b677 to your computer and use it in GitHub Desktop.
Save frivas/aa3d20b4295b5ffe717f308f6c55b677 to your computer and use it in GitHub Desktop.
SessionEndedRequestHandler. Medium Article. Creating an Alexa Skill Using Python
class SessionEndedRequestHandler(AbstractRequestHandler):
def can_handle(self, handler_input):
return is_request_type("SessionEndedRequest")(handler_input)
def handle(self, handler_input):
handler_input.response_builder.response
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment