Skip to main content

Django app for easily creating Amazon Alexa Skills

Project description

Django2 app for creating Alexa Skills

Django app for easily creating Amazon Alexa Skills. By Tim Woocker & Malte Mosler

Table of Content

  1. Prerequisites
  2. Getting Started
  3. Settings
  4. Examples
  5. Support

1. Prerequisites

If you're using Apache HTTP Server, use v2.4.10 or later! From Amazon's Docs:

Note: if you are using Apache HTTP Server to host your web service, use version 2.4.10 or later. Earlier versions of Apache HTTP Server send an "unrecognized name" warning if the server is not configured with a ServerName or ServerAlias in the configuration files. This prevents the Alexa service from sending the customer's request to your server. To address this, either upgrade to 2.4.10 or later, or add ServerName / ServerAlias to your server's configuration file.

2. Getting Started

You can use pip to install this app:

pip install django2-alexa

In your django settings.py add "django2_alexa" to INSTALLED_APPS:

INSTALLED_APPS = [
	...
    'django2_alexa',
	...
]

In your current path create a django app with:

python manage.py startapp YourAppName

Import & create the Skill object in your views.py:

from django2_alexa.interfaces.alexa import Skill

skill = Skill()

Import the skill in your urls.py and add the view to your urlpatterns:

from YourAppName.views import skill

urlpatterns = [
	...
    path('', skill.view)
	...
]

You can use this library with DEBUG mode on in settings.py. The amazon server verification for timestamps however will be skipped. This will cause amazon to not accept your skill if you try to publish your skill in DEBUG mode.

Now you are ready to develope your own skill for alexa! You can find a few examples here.

3. Settings

This django app adds some settings to your project:

Name Type Default Description
ALEXA_VERIFY_CONN bool True This setting specifies if every request to an alexa skill should be verified against the amazon servers. This is useful when testing your skill without Amazon's service.

4. Examples

Audio Response

Card Response

Slots

5. Support

Twitter: @Tim Woocker @DeemonRider

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django2-alexa-0.1.4.tar.gz (8.0 kB view details)

Uploaded Source

Built Distribution

django2_alexa-0.1.4-py3-none-any.whl (19.0 kB view details)

Uploaded Python 3

File details

Details for the file django2-alexa-0.1.4.tar.gz.

File metadata

  • Download URL: django2-alexa-0.1.4.tar.gz
  • Upload date:
  • Size: 8.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.5.2

File hashes

Hashes for django2-alexa-0.1.4.tar.gz
Algorithm Hash digest
SHA256 b6003095dd041e8a7f947a479301695f6cb8bc642b57903b8a75348f7b8e44cb
MD5 b369c2e050d0b0c685ce3e7981077184
BLAKE2b-256 b3e3feceee5aee01d8754a6b0715bd84c5c79f682981f66ad05b693dc80015eb

See more details on using hashes here.

File details

Details for the file django2_alexa-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: django2_alexa-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 19.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.5.2

File hashes

Hashes for django2_alexa-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 5a5defa606c41fd899e21c3811e591efe523a1dc7a21964b0bd1635d0154c11d
MD5 a75d3ab3d093a321e4080c450860baf9
BLAKE2b-256 2a94353b8f9631151b3519e5b15a5b647e4f9249438d80c4f11391f7a6273dc0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page