Skip to content

arstevens/echo_lab_assistant

 
 

Repository files navigation

Jarvis lab assistant using Amazon echo and AWS lambda. How to create a lambda function in Python that can be used in an Alexa Skill.

AlexaBaseHandler class

The AlexaBaseHandler class is an abstract class that provides the framework to build the necessary response hooks for an Alexa application.

process_request

This method will take the 2 parameters that are sent to the lambda function and determine which of the Alexa handlers to invoke.

_build_speechlet_response

This method ( from the Alexa color example ) will put together the speechlet portion into a properly formatted json message. This is typically called by the concrete implementations of the AlexaBaseHandler.

_build_response

This method (from the Alexa color example ) will construct a property formatted response message so the Amazon Echo knows what to reponse with.

AlexaDeploymentHandler class

This class is a reference implementation that does nothing useful. All Alexa handlers are handled the same way.

main.py

This file contains the main entry point of the lambda function that is called for the Alexa skill.

lambda_handler(event, context)

This method ( which can be called anything, you just need to configure it in the lambda handler ), is the method that is called with the 2 parameters.

This method will typically instantiate an concrete implementation of the AlexaBaseHandler and delegate to the process_request method.

requirements.txt

This file is the standard Python requirements file. This file is used by the create_deployment.py script to install the necessary 3rd party libraries that your Alexa skill might need. Any library specified in the requirements.txt file will be installed into your deployment directory.

create_deployment

This script creates a zip file per the Amazon lambda specification, such that it is suitable to upload as your lambda function implementation.

All deployments are stored in the deployments subdirectory and follow the naming convention of 'deployment_n' and 'deployment_n.zip', where 'n' is automatically calculated to the next largest 'n' in the directory. Right now it does this based on the name of the subdirectories of deployments - NOT - the names of the zip files.

The deployment script will create a deployment directory and zip file for everything in the requirements.txt file AND the files in the deployment_files variable in the create_deployment.py file.

When this script is done running, there should be a 'deploment_n.zip' file in the deployments directory. It is that file that needs to be upload to the Amazon Lambda console.

Useful links:

http://docs.aws.amazon.com/lambda/latest/dg/python-programming-model-handler-types.html http://docs.aws.amazon.com/lambda/latest/dg/lambda-python-how-to-create-deployment-package.html https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/developing-an-alexa-skill-as-a-lambda-function https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/deploying-a-sample-skill-to-aws-lambda https://developer.amazon.com/public/solutions/alexa/alexa-skills-kit/docs/handling-requests-sent-by-alexa

About

Code pertaining to Amazon Echo based lab assistant.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%