├── .gitignore ├── README.md ├── alexa.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── requires.txt └── top_level.txt ├── alexa ├── __init__.py └── __init__.pyc ├── dist ├── alexa-0.0.1-py2.7.egg └── alexa-0.0.1-py3.5.egg ├── example ├── example.py ├── phrases.json ├── response_example.json └── test_events.json └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njsnx/python-alexa/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njsnx/python-alexa/HEAD/README.md -------------------------------------------------------------------------------- /alexa.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njsnx/python-alexa/HEAD/alexa.egg-info/PKG-INFO -------------------------------------------------------------------------------- /alexa.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njsnx/python-alexa/HEAD/alexa.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /alexa.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /alexa.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | boto3 2 | -------------------------------------------------------------------------------- /alexa.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | alexa 2 | -------------------------------------------------------------------------------- /alexa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njsnx/python-alexa/HEAD/alexa/__init__.py -------------------------------------------------------------------------------- /alexa/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njsnx/python-alexa/HEAD/alexa/__init__.pyc -------------------------------------------------------------------------------- /dist/alexa-0.0.1-py2.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njsnx/python-alexa/HEAD/dist/alexa-0.0.1-py2.7.egg -------------------------------------------------------------------------------- /dist/alexa-0.0.1-py3.5.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njsnx/python-alexa/HEAD/dist/alexa-0.0.1-py3.5.egg -------------------------------------------------------------------------------- /example/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njsnx/python-alexa/HEAD/example/example.py -------------------------------------------------------------------------------- /example/phrases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njsnx/python-alexa/HEAD/example/phrases.json -------------------------------------------------------------------------------- /example/response_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njsnx/python-alexa/HEAD/example/response_example.json -------------------------------------------------------------------------------- /example/test_events.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njsnx/python-alexa/HEAD/example/test_events.json -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/njsnx/python-alexa/HEAD/setup.py --------------------------------------------------------------------------------