Skip to content

vatsaldpatel/Alexa-custom-skill-using-Python-and-AWS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

Alexa-custom-skill-using-Python-and-AWS

In this example, I have created a custom Alexa skill using python and components of Amazon Web Services (AWS) like Lambda fuction and Dynamo DB.

This is a demonstration video about what this code does. Please Watch.

Alexa Custom Skill using Python and AWS

The JSON output is of the following type

{
  "version": "1.0",
  "sessionAttributes": {},
  "statusCode": 200,
  "body": "Item added",
  "response": {
    "outputSpeech": {
      "type": "PlainText",
      "text": "Welcome to Jupyter doorbell skill."
    },
    "card": {
      "type": "Simple",
      "title": "SessionSpeechlet - Welcome",
      "content": "SessionSpeechlet - Welcome to Jupyter doorbell skill."
    },
    "reprompt": {
      "outputSpeech": {
        "type": "PlainText",
        "text": "I don't know if you heard me, welcome to your custom alexa application!"
      }
    },
    "shouldEndSession": false
  }
}

Alexa : Welcome to Jupyter doorbell skill.

This code is about the Alexa Skill which I used to support my smart doorbell.

About

Example code for making a custom Alexa skill as per your needs with the help of python and AWS.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages