├── .ask └── config ├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── 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 ├── create-alexa-hosted-function.md ├── customize-skill-content.md ├── setup-vui-alexa-hosted.md └── test-using-simulator.md ├── lambda └── py │ ├── alexa │ ├── __init__.py │ └── data.py │ ├── hello_world.py │ ├── locales │ ├── data.pot │ ├── de-DE │ │ └── LC_MESSAGES │ │ │ ├── data.mo │ │ │ └── data.po │ ├── es-ES │ │ └── LC_MESSAGES │ │ │ ├── data.mo │ │ │ └── data.po │ ├── es-MX │ │ └── LC_MESSAGES │ │ │ ├── data.mo │ │ │ └── data.po │ ├── es-US │ │ └── LC_MESSAGES │ │ │ ├── data.mo │ │ │ └── data.po │ ├── fr-CA │ │ └── LC_MESSAGES │ │ │ ├── data.mo │ │ │ └── data.po │ ├── fr-FR │ │ └── LC_MESSAGES │ │ │ ├── data.mo │ │ │ └── data.po │ ├── hi-IN │ │ └── LC_MESSAGES │ │ │ ├── data.mo │ │ │ └── data.po │ ├── it-IT │ │ └── LC_MESSAGES │ │ │ ├── data.mo │ │ │ └── data.po │ ├── ja-JP │ │ └── LC_MESSAGES │ │ │ ├── data.mo │ │ │ └── data.po │ └── pt-BR │ │ └── LC_MESSAGES │ │ ├── data.mo │ │ └── data.po │ └── requirements.txt ├── models ├── de-DE.json ├── en-AU.json ├── en-CA.json ├── en-GB.json ├── en-IN.json ├── en-US.json ├── es-ES.json ├── es-MX.json ├── es-US.json ├── fr-CA.json ├── fr-FR.json ├── hi-IN.json ├── it-IT.json ├── ja-JP.json └── pt-BR.json └── skill.json /.ask/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/.ask/config -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | skill_env/ -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/README.md -------------------------------------------------------------------------------- /hooks/post_new_hook.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/hooks/post_new_hook.ps1 -------------------------------------------------------------------------------- /hooks/post_new_hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/hooks/post_new_hook.sh -------------------------------------------------------------------------------- /hooks/pre_deploy_hook.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/hooks/pre_deploy_hook.ps1 -------------------------------------------------------------------------------- /hooks/pre_deploy_hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/hooks/pre_deploy_hook.sh -------------------------------------------------------------------------------- /instructions/create-alexa-hosted-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/instructions/create-alexa-hosted-function.md -------------------------------------------------------------------------------- /instructions/customize-skill-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/instructions/customize-skill-content.md -------------------------------------------------------------------------------- /instructions/setup-vui-alexa-hosted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/instructions/setup-vui-alexa-hosted.md -------------------------------------------------------------------------------- /instructions/test-using-simulator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/instructions/test-using-simulator.md -------------------------------------------------------------------------------- /lambda/py/alexa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lambda/py/alexa/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/alexa/data.py -------------------------------------------------------------------------------- /lambda/py/hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/hello_world.py -------------------------------------------------------------------------------- /lambda/py/locales/data.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/locales/data.pot -------------------------------------------------------------------------------- /lambda/py/locales/de-DE/LC_MESSAGES/data.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/locales/de-DE/LC_MESSAGES/data.mo -------------------------------------------------------------------------------- /lambda/py/locales/de-DE/LC_MESSAGES/data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/locales/de-DE/LC_MESSAGES/data.po -------------------------------------------------------------------------------- /lambda/py/locales/es-ES/LC_MESSAGES/data.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/locales/es-ES/LC_MESSAGES/data.mo -------------------------------------------------------------------------------- /lambda/py/locales/es-ES/LC_MESSAGES/data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/locales/es-ES/LC_MESSAGES/data.po -------------------------------------------------------------------------------- /lambda/py/locales/es-MX/LC_MESSAGES/data.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/locales/es-MX/LC_MESSAGES/data.mo -------------------------------------------------------------------------------- /lambda/py/locales/es-MX/LC_MESSAGES/data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/locales/es-MX/LC_MESSAGES/data.po -------------------------------------------------------------------------------- /lambda/py/locales/es-US/LC_MESSAGES/data.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/locales/es-US/LC_MESSAGES/data.mo -------------------------------------------------------------------------------- /lambda/py/locales/es-US/LC_MESSAGES/data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/locales/es-US/LC_MESSAGES/data.po -------------------------------------------------------------------------------- /lambda/py/locales/fr-CA/LC_MESSAGES/data.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/locales/fr-CA/LC_MESSAGES/data.mo -------------------------------------------------------------------------------- /lambda/py/locales/fr-CA/LC_MESSAGES/data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/locales/fr-CA/LC_MESSAGES/data.po -------------------------------------------------------------------------------- /lambda/py/locales/fr-FR/LC_MESSAGES/data.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/locales/fr-FR/LC_MESSAGES/data.mo -------------------------------------------------------------------------------- /lambda/py/locales/fr-FR/LC_MESSAGES/data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/locales/fr-FR/LC_MESSAGES/data.po -------------------------------------------------------------------------------- /lambda/py/locales/hi-IN/LC_MESSAGES/data.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/locales/hi-IN/LC_MESSAGES/data.mo -------------------------------------------------------------------------------- /lambda/py/locales/hi-IN/LC_MESSAGES/data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/locales/hi-IN/LC_MESSAGES/data.po -------------------------------------------------------------------------------- /lambda/py/locales/it-IT/LC_MESSAGES/data.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/locales/it-IT/LC_MESSAGES/data.mo -------------------------------------------------------------------------------- /lambda/py/locales/it-IT/LC_MESSAGES/data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/locales/it-IT/LC_MESSAGES/data.po -------------------------------------------------------------------------------- /lambda/py/locales/ja-JP/LC_MESSAGES/data.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/locales/ja-JP/LC_MESSAGES/data.mo -------------------------------------------------------------------------------- /lambda/py/locales/ja-JP/LC_MESSAGES/data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/locales/ja-JP/LC_MESSAGES/data.po -------------------------------------------------------------------------------- /lambda/py/locales/pt-BR/LC_MESSAGES/data.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/locales/pt-BR/LC_MESSAGES/data.mo -------------------------------------------------------------------------------- /lambda/py/locales/pt-BR/LC_MESSAGES/data.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/lambda/py/locales/pt-BR/LC_MESSAGES/data.po -------------------------------------------------------------------------------- /lambda/py/requirements.txt: -------------------------------------------------------------------------------- 1 | ask-sdk-core>=1.10.2 2 | -------------------------------------------------------------------------------- /models/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/models/de-DE.json -------------------------------------------------------------------------------- /models/en-AU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/models/en-AU.json -------------------------------------------------------------------------------- /models/en-CA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/models/en-CA.json -------------------------------------------------------------------------------- /models/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/models/en-GB.json -------------------------------------------------------------------------------- /models/en-IN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/models/en-IN.json -------------------------------------------------------------------------------- /models/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/models/en-US.json -------------------------------------------------------------------------------- /models/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/models/es-ES.json -------------------------------------------------------------------------------- /models/es-MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/models/es-MX.json -------------------------------------------------------------------------------- /models/es-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/models/es-US.json -------------------------------------------------------------------------------- /models/fr-CA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/models/fr-CA.json -------------------------------------------------------------------------------- /models/fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/models/fr-FR.json -------------------------------------------------------------------------------- /models/hi-IN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/models/hi-IN.json -------------------------------------------------------------------------------- /models/it-IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/models/it-IT.json -------------------------------------------------------------------------------- /models/ja-JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/models/ja-JP.json -------------------------------------------------------------------------------- /models/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/models/pt-BR.json -------------------------------------------------------------------------------- /skill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-samples/skill-sample-python-helloworld-classes/HEAD/skill.json --------------------------------------------------------------------------------