https://github.com/alexa-samples/skill-sample-python-helloworld-classes
This tutorial will walk first-time Alexa skills developers through all the required steps involved in creating a skill using this hello world template, called ‘hello world’. This post assumes you have some familiarity with Python (or a similar programming language) and the Alexa Skills Kit.
https://github.com/alexa-samples/skill-sample-python-helloworld-classes
Last synced: 3 months ago
JSON representation
This tutorial will walk first-time Alexa skills developers through all the required steps involved in creating a skill using this hello world template, called ‘hello world’. This post assumes you have some familiarity with Python (or a similar programming language) and the Alexa Skills Kit.
- Host: GitHub
- URL: https://github.com/alexa-samples/skill-sample-python-helloworld-classes
- Owner: alexa-samples
- License: other
- Created: 2018-08-30T17:25:24.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-04-18T22:17:09.000Z (about 3 years ago)
- Last Synced: 2025-08-23T15:24:00.384Z (10 months ago)
- Language: Python
- Size: 141 KB
- Stars: 71
- Watchers: 29
- Forks: 98
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
Build an Alexa Hello World Skill in ASK Python SDK (using Classes)
=========================================
This tutorial will walk first-time Alexa skills developers through all the
required steps involved in creating a skill using this hello world template,
called ‘hello world’. This post assumes you have some familiarity with
Python (or a similar programming language) and the Alexa Skills Kit.

Concepts
--------
This simple sample has no external dependencies or session management,
and shows the most basic example of how to create a Lambda function for
handling Alexa Skill requests.
Setup
-----
To run this example skill you need to do two things. The first is to
deploy the example code in lambda, and the second is to configure the
Alexa skill to use Lambda.
[](./instructions/setup-vui-alexa-hosted.md)
Skills can be built either by implementing ``AbstractRequestHandler`` classes
or by using skill builder's ``request_handler`` decorator. More information
on this can be checked in the [documentation](https://alexa-skills-kit-python-sdk.readthedocs.io/en/latest/REQUEST_PROCESSING.html#request-handlers).
This sample skill shows how to implement ``AbstractRequestHandler`` class
and register the handler classes explicitly in the skill builder object.
The code for this implementation is under [lambda/py](lambda/py) folder.
For the sample skill using the ``decorators`` approach, check
[skill-sample-python-helloworld-decorators](https://github.com/alexa/skill-sample-python-helloworld-decorators).
Additional Resources
--------------------
### Community
- [Amazon Developer Forums](https://forums.developer.amazon.com/spaces/165/index.html) : Join the conversation!
- [Hackster.io](https://www.hackster.io/amazon-alexa) - See what others are building with Alexa.
### Tutorials & Guides
- [Voice Design Guide](https://developer.amazon.com/fr/designing-for-voice/) -
A great resource for learning conversational and voice user interface design.
### Documentation
- [Official Alexa Skills Kit Python SDK](https://pypi.org/project/ask-sdk/)
- [Official Alexa Skills Kit Python SDK Docs](https://alexa-skills-kit-python-sdk.readthedocs.io/en/latest/)
- [Official Alexa Skills Kit Docs](https://developer.amazon.com/docs/ask-overviews/build-skills-with-the-alexa-skills-kit.html)