Metadata-Version: 1.1
Name: pyalexa-skill
Version: 0.1.6
Summary: Python module with a base class to support an Alexa skill set, and scripts to build an AWS python distibution
Home-page: https://github.com/youngsoul/PyAlexa
Author: Patrick Ryan
Author-email: pat_ryan_99@yahoo.com
License: Public Domain
Description: ==================================================================
        PyAlexa: Python module to help in the building of Alexa skill sets
        ==================================================================
        
        PyPI Package to search for is: pyalexa-skill
        ============================================
        
        
        ``PyAlexa-Skill`` is an Open Source licensed Python package with a base class that support the necessary methods for an Alexa
        Skill set and two scripts to help with the creation of the main entry point and the packaging
        of the AWS Lambda Function for the Alexa Skill Set.
        
        
        
        AlexaBaseHandler class
        ----------------------
        
        The AlexaBaseHandler class is an abstract class that provides the necessary
        framework to build the necessary response hooks for an Alexa application.
        
        All of the abstract methods of this class must be implemented by the
        concrete implementation class.  See the base class for details on the
        abstract methods.
        
        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 properly formatted
        response message so the Amazon Echo knows what to respond with.
        
        AlexaDeploymentHandler class
        ----------------------------
        This class is a reference implementation that does nothing useful.  All Alexa
        handlers are handled the same way.
        
        To create the concrete implementation use the following: ::
        
          from pyalexaskill import AlexaBaseHandler
          class MyConcreteAlexaHandler(AlexaBaseHandler.AlexaBaseHandler):
              # implement the abstract methods
        
        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_aws_lambda.py
        --------------------
        This script creates a zip file per the Amazon lambda specification, such that
        it is suitable to upload as your lambda function implementation.
        
        activate your virtualenv and execute like: ::
        
          create_aws_lambda.py -r <rootdir> -i "list,of,all,python,files,to,include"
        
        
        create_aws_main.py
        ------------------
        This script creates a template main entry point
        
        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 'deployment_n.zip' file in the deployments directory.
        It is that file that needs to be upload to the Amazon Lambda console.
        
        activate your virutal env and execute like: ::
        
            create_aws_main.py
        
        
        create_alexa_handler.py
        -----------------------
        This script creates a template concrete handler class.
        
        This template can be used as the starting point to create the necessary implementation
        details for the handler.
        
        activate your virtualenv and execute like: ::
        
            create_alexa_handler.py
        
        
        create_alexa_test_skills.py
        ---------------------------
        This script creates a template utterance and intent schema.
        
        This template can be used as the starting point to create the necessary implementation
        details for an actual utterance and intent schema.
        
        activate your virtualenv and execute like: ::
        
            create_alexa_test_skills.py
        
        
        Test Project
        ------------
        https://github.com/youngsoul/PyAlexaSkillTest
        
Keywords: alexa,skill
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: Public Domain
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Libraries :: Python Modules
