ask-sdk-s3-persistence-adapter is the persistence adapter package for Alexa Skills Kit (ASK) by the Software Development Kit (SDK) team for Python. It has the persistence adapter implementation for connecting the Skill to the AWS S3.
Because Amazon S3 provides eventual consistency for updates to existing objects, we recommend using ask-sdk-dynamodb-persistence-adapter for persistent attributes if your skill requires read-after-write consistency.
Assuming that you have Python and virtualenv
installed, you can
install the package and it's dependencies (ask-sdk-model
, ask-sdk-core
) from PyPi
as follows:
$ virtualenv venv
$ . venv/bin/activate
$ pip install ask-sdk-s3-persistence-adapter
You can also install the whole s3 persistence adapter package locally by following these steps:
$ git clone https://github.com/alexa/alexa-skills-kit-sdk-for-python.git
$ cd alexa-skills-kit-sdk-for-python/ask-sdk-s3-persistence-adapter
$ virtualenv venv
...
$ . venv/bin/activate
$ python setup.py install
Getting started guides, SDK Features, API references, samples etc. can be found at Read The Docs
- We would like to hear about your bugs, feature requests, questions or quick feedback. Please search for the existing issues before opening a new one. It would also be helpful if you follow the templates for issue and pull request creation. Please follow the contributing guidelines!!
- Request and vote for Alexa features!