├── .ask └── config ├── .github └── PULL_REQUEST_TEMPLATE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── hooks ├── post_new_hook.ps1 ├── post_new_hook.sh ├── pre_deploy_hook.ps1 └── pre_deploy_hook.sh ├── instructions ├── 1-voice-user-interface.md ├── 2-lambda-function.md ├── 3-connect-vui-to-code.md ├── 4-testing.md ├── 5-next-steps.md └── lambda-role.md ├── lambda └── py │ ├── hello_world.py │ └── requirements.txt ├── models └── en-US.json └── skill.json /.ask/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-decorators/HEAD/.ask/config -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-decorators/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-decorators/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-decorators/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-decorators/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-decorators/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-decorators/HEAD/README.md -------------------------------------------------------------------------------- /hooks/post_new_hook.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-decorators/HEAD/hooks/post_new_hook.ps1 -------------------------------------------------------------------------------- /hooks/post_new_hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-decorators/HEAD/hooks/post_new_hook.sh -------------------------------------------------------------------------------- /hooks/pre_deploy_hook.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-decorators/HEAD/hooks/pre_deploy_hook.ps1 -------------------------------------------------------------------------------- /hooks/pre_deploy_hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-decorators/HEAD/hooks/pre_deploy_hook.sh -------------------------------------------------------------------------------- /instructions/1-voice-user-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-decorators/HEAD/instructions/1-voice-user-interface.md -------------------------------------------------------------------------------- /instructions/2-lambda-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-decorators/HEAD/instructions/2-lambda-function.md -------------------------------------------------------------------------------- /instructions/3-connect-vui-to-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-decorators/HEAD/instructions/3-connect-vui-to-code.md -------------------------------------------------------------------------------- /instructions/4-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-decorators/HEAD/instructions/4-testing.md -------------------------------------------------------------------------------- /instructions/5-next-steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-decorators/HEAD/instructions/5-next-steps.md -------------------------------------------------------------------------------- /instructions/lambda-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-decorators/HEAD/instructions/lambda-role.md -------------------------------------------------------------------------------- /lambda/py/hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-decorators/HEAD/lambda/py/hello_world.py -------------------------------------------------------------------------------- /lambda/py/requirements.txt: -------------------------------------------------------------------------------- 1 | ask-sdk-core 2 | -------------------------------------------------------------------------------- /models/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-decorators/HEAD/models/en-US.json -------------------------------------------------------------------------------- /skill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-decorators/HEAD/skill.json --------------------------------------------------------------------------------