Amazon Launches Alexa Skills Kit SDK for Python
Written by Kay Ewbank   
Thursday, 12 July 2018

Amazon has launched the beta of a Python SDK designed to make it easier to work with Alexa responses and requests. The Python version has the same features as the existing SDKs for Java and Node.js.

The SDK is intended for Python developers who want to add voice experiences using Alexa and the extensive Python support libraries and tools.

Apps incorporating Alexa involve building an Alexa skill. Under the covers, this means you provide a cloud-based service that receives JSON requests sent by Alexa, and returns a JSON response that Alexa then uses to respond to the user. The SDKs can be used to handle requests, to build responses, to manage attributes, and to make Alexa API calls.

The request handling gives you the choice of what code should be invoked when Alexa sends a request, either a single handler for multiple Alexa intents, or different handlers based on Alexa request attributes. The ASK SDK also has flexible handler registration, so you can choose whether to use decorators or traditional class-based implementations of handler features.

The response building features can be used to create and deliver a variety of responses including text-to-speech and audio and video streams. You can also send cards and other visual elements. The response that is actually received by the end user of your app will depend on the type of Alexa-compatible device they are using.

The SDK also lets you manage attributes, storing and retrieving information at different scopes using Attributes in the SDK. Attributes can be used to keep track of what happened so far, and to use this information to determine what happens next. You can define attributes that for a single request, for a single customer session, or for the lifetime of your skill.

The final part of the SDK is the ability to call nearly any Alexa API from within your skill logic using service clients in the SDK. The service clients automatically inject relevant endpoint and authentication token information on your behalf.

The SDK comes with samples and documentation, and Alexa skills created using it can be hosted in AWS Lambda or the infrastructure of your choice.

 alexa72018

More Information

Alexa Skills Kit SDK For Python On GitHub

Alexa Skills Kit (ASK)

Related Articles

Alexa In-Skill Purchasing Goes Live

Analyzing Alexa

Amazon Starting To Monetize Alexa Skills

Google AI At I/O

Amazon Expands Alexa Skills Rewards Program

Alexa For Business - The Big Shake Up

Amazon Alexa Extending Its Influence

The State Of Voice As UI

 

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.

Banner


Android 15 Developer Preview Released
19/02/2024

Android 15 Developer Preview has just been released by the Android team with features including partial screen sharing and the latest version of the Privacy Sandbox.



Dart Adds WebAssembly Support
20/02/2024

Google has released Dart 3.3 with experimental support for applications compiled to WebAssembly, along with new extension types and a revamped JavaScript interop model.


More News

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Thursday, 12 July 2018 )