Metadata-Version: 2.1
Name: ask-sdk
Version: 0.1
Summary: The ASK SDK Standard package provides a full distribution of the SDK, all batteries included, for building Alexa Skills
Home-page: http://developer.amazon.com/ask
Author: Alexa Skills Kit
Author-email: ask-sdk-dynamic@amazon.com
License: Apache 2.0
Keywords: ASK SDK,Alexa Skills Kit,Alexa,ASK SDK Core,Persistence,DynamoDB,ASK SDK Standard
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*
Requires-Dist: ask-sdk-core
Requires-Dist: ask-sdk-dynamodb-persistence-adapter
Requires-Dist: enum34; python_version == "2.7"
Requires-Dist: typing; python_version == "2.7"

========================================================
ASK SDK - Standard / Full distribution of Python ASK SDK
========================================================

ask-sdk is the standard SDK package for Alexa Skills Kit (ASK) by
the Software Development Kit (SDK) team for Python. It is a *all batteries included*
package for developing Alexa Skills.


Quick Start
-----------

Installation
~~~~~~~~~~~~~~~
Assuming that you have Python and ``virtualenv`` installed, you can
install the package and it's dependencies (``ask-sdk-model``, ``ask-sdk-core``,
``ask-sdk-dynamodb-persistence-adapter``) from PyPi
as follows:

.. code-block:: sh

    >>> virtualenv venv
    >>> . venv/bin/activate
    >>> pip install ask-sdk


You can also install the whole standard package locally by following these steps:

.. code-block:: sh

    >>> git clone https://github.com/alexalabs/alexa-skills-kit-for-python-sdk.git
    >>> cd alexa-skills-kit-for-python-sdk/ask-sdk
    >>> virtualenv venv
    ...
    >>> . venv/bin/activate
    >>> python setup.py install


Usage and Getting Started
-------------------------
A Getting Started guide can be found `here <../docs/GETTING_STARTED.rst>`_


Got Feedback?
-------------

- We would like to hear about your bugs, feature requests, questions or quick feedback.
  Please search for the `existing issues <https://github.com/alexa-labs/alexa-skills-kit-sdk-for-python/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 <../CONTRIBUTING.md>`_!!
- Request and vote for `Alexa features <https://alexa.uservoice.com/forums/906892-alexa-skills-developer-voice-and-vote>`_!


=========
CHANGELOG
=========

0.1
-------

* Initial release of ASK SDK Standard package.


