Toolkit for writing Amazon Alexa skills in your Falcon app
Project description
Falcon-Ask
Minimal Python3 toolkit to create Amazon Alexa skills with Falcon.
Builds on top of Alexa Skills Kit (ASK) to bootstrap boilerplate code so you don't have to!
Inspired by Flask-Ask and Alexandra.
Synopsis
A Falcon app might look like this.
import json
import falcon
from falcon_ask import dispatch_request, FalconAskMiddleware, respond
def intent_fn(body):
# "body" contains request POST data.
return 'Congratulations! Your new alexa skill works great.'
class AlexaResource(object):
# Dictionary mapping of "IntentRequest" to function.
intent_maps = {
'GreetingIntent': intent_fn,
}
# Message to return when "LaunchRequest" is received.
welcome = 'Hi, welcome to your new alexa skill.'
def on_post(self, req, resp):
response = dispatch_request(req)
resp.body = json.dumps(respond(response, end_session=False))
app = falcon.API(middleware=[
# Do validation of request certificate and timestamp.
FalconAskMiddleware(AlexaResource, validate=True),
])
app.add_route('/', AlexaResource())
Save above code to alexa.py
and run via $ gunicorn alexa:app
. Make sure gunicorn is installed.
Installation
To install Falcon-Ask, simply use pipenv (or pip, of course):
$ pip install falcon-ask
✨🍰✨
Satisfaction guaranteed.
Thank You
Thanks for checking this library out! I hope you find it useful.
Of course, there's always room for improvement. Feel free to open an issue so we can make Falcon-Ask better.
Special thanks to @muxspace for giving me an Echo Dot.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file falcon_ask-1.1.1.tar.gz
.
File metadata
- Download URL: falcon_ask-1.1.1.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04cfd66568826ce192008c944d887cd6821472e5b83fd9ebae45facbeff8ce8f |
|
MD5 | ab12dd15a8ce0e991a2d1bd51f961596 |
|
BLAKE2b-256 | 8b453f7c3a91c40828c1dd00b6485687f71cf22445ea5fc215fee59159ef1ae0 |