├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── athena ├── __init__.py ├── __main__.py ├── api_library │ ├── __init__.py │ ├── geo_info_api.py │ ├── ifttt_api.py │ ├── sms_text_api.py │ ├── user_api.py │ └── voice_browse_api.py ├── apis.py ├── brain.py ├── chrome │ ├── linux32 │ │ └── chromedriver │ ├── mac64 │ │ └── chromedriver │ └── win32 │ │ └── chromedriver.exe ├── classes │ ├── __init__.py │ ├── api.py │ ├── input_field.py │ ├── module.py │ ├── response.py │ └── task.py ├── data │ └── media │ │ ├── double-beep.mp3 │ │ ├── double-beep.wav │ │ ├── godj.mp3 │ │ ├── godj.wav │ │ └── responses │ │ ├── error.mp3 │ │ └── test.mp3 ├── keyphrases.txt ├── log.py ├── mods.py ├── modules │ ├── __init__.py │ ├── active │ │ ├── __init__.py │ │ ├── athena_control.py │ │ ├── conversation.py │ │ ├── geo_info.py │ │ ├── google.py │ │ ├── hello_world.py │ │ ├── music.py │ │ ├── shop.py │ │ ├── sms_text.py │ │ ├── twitter.py │ │ ├── uber.py │ │ ├── voice_browse.py │ │ └── wolfram.py │ └── passive │ │ └── __init__.py ├── settings.py ├── stt.py ├── tests │ ├── __init__.py │ ├── audio_test.py │ ├── dependencies_test.py │ ├── input_test.py │ ├── mic_test.py │ └── run_all_tests.py ├── tts.py └── user_config.py ├── docs ├── api │ ├── athena.api_library.rst │ ├── athena.classes.rst │ ├── athena.modules.active.rst │ ├── athena.modules.rst │ └── athena.rst ├── conf.py ├── generate.bat ├── html │ ├── .buildinfo │ ├── .doctrees │ │ ├── api │ │ │ ├── athena.api_library.doctree │ │ │ ├── athena.classes.doctree │ │ │ ├── athena.doctree │ │ │ ├── athena.modules.active.doctree │ │ │ └── athena.modules.doctree │ │ ├── environment.pickle │ │ ├── index.doctree │ │ └── intro │ │ │ ├── index.doctree │ │ │ ├── install.doctree │ │ │ ├── overview.doctree │ │ │ └── tutorial.doctree │ ├── _modules │ │ ├── athena │ │ │ ├── api_library │ │ │ │ ├── geo_info_api.html │ │ │ │ ├── ifttt_api.html │ │ │ │ ├── sms_text_api.html │ │ │ │ ├── user_api.html │ │ │ │ └── voice_browse_api.html │ │ │ ├── apis.html │ │ │ ├── brain.html │ │ │ ├── classes │ │ │ │ ├── api.html │ │ │ │ ├── input_field.html │ │ │ │ ├── module.html │ │ │ │ ├── response.html │ │ │ │ └── task.html │ │ │ ├── config.html │ │ │ ├── log.html │ │ │ ├── mods.html │ │ │ ├── modules │ │ │ │ └── active │ │ │ │ │ ├── athena_control.html │ │ │ │ │ ├── conversation.html │ │ │ │ │ ├── geo_info.html │ │ │ │ │ ├── google.html │ │ │ │ │ ├── hello_world.html │ │ │ │ │ ├── music.html │ │ │ │ │ ├── shop.html │ │ │ │ │ ├── sms_text.html │ │ │ │ │ ├── twitter.html │ │ │ │ │ ├── uber.html │ │ │ │ │ ├── voice_browse.html │ │ │ │ │ └── wolfram.html │ │ │ ├── stt.html │ │ │ └── tts.html │ │ └── index.html │ ├── _sources │ │ ├── api │ │ │ ├── athena.api_library.rst.txt │ │ │ ├── athena.classes.rst.txt │ │ │ ├── athena.modules.active.rst.txt │ │ │ ├── athena.modules.rst.txt │ │ │ └── athena.rst.txt │ │ ├── index.rst.txt │ │ └── intro │ │ │ ├── index.rst.txt │ │ │ ├── install.rst.txt │ │ │ ├── overview.rst.txt │ │ │ └── tutorial.rst.txt │ ├── _static │ │ ├── ajax-loader.gif │ │ ├── basic.css │ │ ├── comment-bright.png │ │ ├── comment-close.png │ │ ├── comment.png │ │ ├── css │ │ │ ├── badge_only.css │ │ │ └── theme.css │ │ ├── doctools.js │ │ ├── down-pressed.png │ │ ├── down.png │ │ ├── file.png │ │ ├── fonts │ │ │ ├── Inconsolata-Bold.ttf │ │ │ ├── Inconsolata-Regular.ttf │ │ │ ├── Lato-Bold.ttf │ │ │ ├── Lato-Regular.ttf │ │ │ ├── RobotoSlab-Bold.ttf │ │ │ ├── RobotoSlab-Regular.ttf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── jquery-3.1.0.js │ │ ├── jquery.js │ │ ├── js │ │ │ ├── modernizr.min.js │ │ │ └── theme.js │ │ ├── minus.png │ │ ├── plus.png │ │ ├── pygments.css │ │ ├── searchtools.js │ │ ├── underscore-1.3.1.js │ │ ├── underscore.js │ │ ├── up-pressed.png │ │ ├── up.png │ │ └── websupport.js │ ├── api │ │ ├── athena.api_library.html │ │ ├── athena.classes.html │ │ ├── athena.html │ │ ├── athena.modules.active.html │ │ └── athena.modules.html │ ├── genindex.html │ ├── index.html │ ├── intro │ │ ├── index.html │ │ ├── install.html │ │ ├── overview.html │ │ └── tutorial.html │ ├── objects.inv │ ├── py-modindex.html │ ├── search.html │ └── searchindex.js ├── index.rst ├── intro │ ├── index.rst │ ├── install.rst │ ├── overview.rst │ └── tutorial.rst └── make.bat ├── setup.py └── tools ├── install_pypitesting.bat ├── make_docs.bat ├── make_input.py ├── make_response.py ├── upload_pypi.bat ├── upload_pypitesting.bat └── win_install_hey_athena.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/README.rst -------------------------------------------------------------------------------- /athena/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /athena/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/__main__.py -------------------------------------------------------------------------------- /athena/api_library/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /athena/api_library/geo_info_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/api_library/geo_info_api.py -------------------------------------------------------------------------------- /athena/api_library/ifttt_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/api_library/ifttt_api.py -------------------------------------------------------------------------------- /athena/api_library/sms_text_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/api_library/sms_text_api.py -------------------------------------------------------------------------------- /athena/api_library/user_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/api_library/user_api.py -------------------------------------------------------------------------------- /athena/api_library/voice_browse_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/api_library/voice_browse_api.py -------------------------------------------------------------------------------- /athena/apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/apis.py -------------------------------------------------------------------------------- /athena/brain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/brain.py -------------------------------------------------------------------------------- /athena/chrome/linux32/chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/chrome/linux32/chromedriver -------------------------------------------------------------------------------- /athena/chrome/mac64/chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/chrome/mac64/chromedriver -------------------------------------------------------------------------------- /athena/chrome/win32/chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/chrome/win32/chromedriver.exe -------------------------------------------------------------------------------- /athena/classes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /athena/classes/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/classes/api.py -------------------------------------------------------------------------------- /athena/classes/input_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/classes/input_field.py -------------------------------------------------------------------------------- /athena/classes/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/classes/module.py -------------------------------------------------------------------------------- /athena/classes/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/classes/response.py -------------------------------------------------------------------------------- /athena/classes/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/classes/task.py -------------------------------------------------------------------------------- /athena/data/media/double-beep.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/data/media/double-beep.mp3 -------------------------------------------------------------------------------- /athena/data/media/double-beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/data/media/double-beep.wav -------------------------------------------------------------------------------- /athena/data/media/godj.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/data/media/godj.mp3 -------------------------------------------------------------------------------- /athena/data/media/godj.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/data/media/godj.wav -------------------------------------------------------------------------------- /athena/data/media/responses/error.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/data/media/responses/error.mp3 -------------------------------------------------------------------------------- /athena/data/media/responses/test.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/data/media/responses/test.mp3 -------------------------------------------------------------------------------- /athena/keyphrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/keyphrases.txt -------------------------------------------------------------------------------- /athena/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/log.py -------------------------------------------------------------------------------- /athena/mods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/mods.py -------------------------------------------------------------------------------- /athena/modules/__init__.py: -------------------------------------------------------------------------------- 1 | ''' 2 | Created on Jun 2, 2015 3 | 4 | @author: Connor 5 | ''' 6 | -------------------------------------------------------------------------------- /athena/modules/active/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /athena/modules/active/athena_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/modules/active/athena_control.py -------------------------------------------------------------------------------- /athena/modules/active/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/modules/active/conversation.py -------------------------------------------------------------------------------- /athena/modules/active/geo_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/modules/active/geo_info.py -------------------------------------------------------------------------------- /athena/modules/active/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/modules/active/google.py -------------------------------------------------------------------------------- /athena/modules/active/hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/modules/active/hello_world.py -------------------------------------------------------------------------------- /athena/modules/active/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/modules/active/music.py -------------------------------------------------------------------------------- /athena/modules/active/shop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/modules/active/shop.py -------------------------------------------------------------------------------- /athena/modules/active/sms_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/modules/active/sms_text.py -------------------------------------------------------------------------------- /athena/modules/active/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/modules/active/twitter.py -------------------------------------------------------------------------------- /athena/modules/active/uber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/modules/active/uber.py -------------------------------------------------------------------------------- /athena/modules/active/voice_browse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/modules/active/voice_browse.py -------------------------------------------------------------------------------- /athena/modules/active/wolfram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/modules/active/wolfram.py -------------------------------------------------------------------------------- /athena/modules/passive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /athena/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/settings.py -------------------------------------------------------------------------------- /athena/stt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/stt.py -------------------------------------------------------------------------------- /athena/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /athena/tests/audio_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/tests/audio_test.py -------------------------------------------------------------------------------- /athena/tests/dependencies_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/tests/dependencies_test.py -------------------------------------------------------------------------------- /athena/tests/input_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/tests/input_test.py -------------------------------------------------------------------------------- /athena/tests/mic_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/tests/mic_test.py -------------------------------------------------------------------------------- /athena/tests/run_all_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/tests/run_all_tests.py -------------------------------------------------------------------------------- /athena/tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/tts.py -------------------------------------------------------------------------------- /athena/user_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/athena/user_config.py -------------------------------------------------------------------------------- /docs/api/athena.api_library.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/api/athena.api_library.rst -------------------------------------------------------------------------------- /docs/api/athena.classes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/api/athena.classes.rst -------------------------------------------------------------------------------- /docs/api/athena.modules.active.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/api/athena.modules.active.rst -------------------------------------------------------------------------------- /docs/api/athena.modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/api/athena.modules.rst -------------------------------------------------------------------------------- /docs/api/athena.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/api/athena.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/generate.bat -------------------------------------------------------------------------------- /docs/html/.buildinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/.buildinfo -------------------------------------------------------------------------------- /docs/html/.doctrees/api/athena.api_library.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/.doctrees/api/athena.api_library.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/api/athena.classes.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/.doctrees/api/athena.classes.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/api/athena.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/.doctrees/api/athena.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/api/athena.modules.active.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/.doctrees/api/athena.modules.active.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/api/athena.modules.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/.doctrees/api/athena.modules.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/.doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/html/.doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/.doctrees/index.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/intro/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/.doctrees/intro/index.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/intro/install.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/.doctrees/intro/install.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/intro/overview.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/.doctrees/intro/overview.doctree -------------------------------------------------------------------------------- /docs/html/.doctrees/intro/tutorial.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/.doctrees/intro/tutorial.doctree -------------------------------------------------------------------------------- /docs/html/_modules/athena/api_library/geo_info_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/api_library/geo_info_api.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/api_library/ifttt_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/api_library/ifttt_api.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/api_library/sms_text_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/api_library/sms_text_api.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/api_library/user_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/api_library/user_api.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/api_library/voice_browse_api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/api_library/voice_browse_api.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/apis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/apis.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/brain.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/brain.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/classes/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/classes/api.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/classes/input_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/classes/input_field.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/classes/module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/classes/module.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/classes/response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/classes/response.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/classes/task.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/classes/task.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/config.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/log.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/mods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/mods.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/modules/active/athena_control.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/modules/active/athena_control.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/modules/active/conversation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/modules/active/conversation.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/modules/active/geo_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/modules/active/geo_info.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/modules/active/google.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/modules/active/google.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/modules/active/hello_world.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/modules/active/hello_world.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/modules/active/music.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/modules/active/music.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/modules/active/shop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/modules/active/shop.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/modules/active/sms_text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/modules/active/sms_text.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/modules/active/twitter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/modules/active/twitter.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/modules/active/uber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/modules/active/uber.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/modules/active/voice_browse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/modules/active/voice_browse.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/modules/active/wolfram.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/modules/active/wolfram.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/stt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/stt.html -------------------------------------------------------------------------------- /docs/html/_modules/athena/tts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/athena/tts.html -------------------------------------------------------------------------------- /docs/html/_modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_modules/index.html -------------------------------------------------------------------------------- /docs/html/_sources/api/athena.api_library.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_sources/api/athena.api_library.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/api/athena.classes.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_sources/api/athena.classes.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/api/athena.modules.active.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_sources/api/athena.modules.active.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/api/athena.modules.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_sources/api/athena.modules.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/api/athena.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_sources/api/athena.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_sources/index.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/intro/index.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_sources/intro/index.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/intro/install.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_sources/intro/install.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/intro/overview.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_sources/intro/overview.rst.txt -------------------------------------------------------------------------------- /docs/html/_sources/intro/tutorial.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_sources/intro/tutorial.rst.txt -------------------------------------------------------------------------------- /docs/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /docs/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/basic.css -------------------------------------------------------------------------------- /docs/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/comment-bright.png -------------------------------------------------------------------------------- /docs/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/comment-close.png -------------------------------------------------------------------------------- /docs/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/comment.png -------------------------------------------------------------------------------- /docs/html/_static/css/badge_only.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/css/badge_only.css -------------------------------------------------------------------------------- /docs/html/_static/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/css/theme.css -------------------------------------------------------------------------------- /docs/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/doctools.js -------------------------------------------------------------------------------- /docs/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/down-pressed.png -------------------------------------------------------------------------------- /docs/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/down.png -------------------------------------------------------------------------------- /docs/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/file.png -------------------------------------------------------------------------------- /docs/html/_static/fonts/Inconsolata-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/fonts/Inconsolata-Bold.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/fonts/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/fonts/RobotoSlab-Bold.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/RobotoSlab-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/fonts/RobotoSlab-Regular.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/html/_static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/html/_static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/html/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/html/_static/jquery-3.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/jquery-3.1.0.js -------------------------------------------------------------------------------- /docs/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/jquery.js -------------------------------------------------------------------------------- /docs/html/_static/js/modernizr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/js/modernizr.min.js -------------------------------------------------------------------------------- /docs/html/_static/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/js/theme.js -------------------------------------------------------------------------------- /docs/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/minus.png -------------------------------------------------------------------------------- /docs/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/plus.png -------------------------------------------------------------------------------- /docs/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/pygments.css -------------------------------------------------------------------------------- /docs/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/searchtools.js -------------------------------------------------------------------------------- /docs/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /docs/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/underscore.js -------------------------------------------------------------------------------- /docs/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/up-pressed.png -------------------------------------------------------------------------------- /docs/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/up.png -------------------------------------------------------------------------------- /docs/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/_static/websupport.js -------------------------------------------------------------------------------- /docs/html/api/athena.api_library.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/api/athena.api_library.html -------------------------------------------------------------------------------- /docs/html/api/athena.classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/api/athena.classes.html -------------------------------------------------------------------------------- /docs/html/api/athena.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/api/athena.html -------------------------------------------------------------------------------- /docs/html/api/athena.modules.active.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/api/athena.modules.active.html -------------------------------------------------------------------------------- /docs/html/api/athena.modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/api/athena.modules.html -------------------------------------------------------------------------------- /docs/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/genindex.html -------------------------------------------------------------------------------- /docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/index.html -------------------------------------------------------------------------------- /docs/html/intro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/intro/index.html -------------------------------------------------------------------------------- /docs/html/intro/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/intro/install.html -------------------------------------------------------------------------------- /docs/html/intro/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/intro/overview.html -------------------------------------------------------------------------------- /docs/html/intro/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/intro/tutorial.html -------------------------------------------------------------------------------- /docs/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/objects.inv -------------------------------------------------------------------------------- /docs/html/py-modindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/py-modindex.html -------------------------------------------------------------------------------- /docs/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/search.html -------------------------------------------------------------------------------- /docs/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/html/searchindex.js -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/intro/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/intro/index.rst -------------------------------------------------------------------------------- /docs/intro/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/intro/install.rst -------------------------------------------------------------------------------- /docs/intro/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/intro/overview.rst -------------------------------------------------------------------------------- /docs/intro/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/intro/tutorial.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/docs/make.bat -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/setup.py -------------------------------------------------------------------------------- /tools/install_pypitesting.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/tools/install_pypitesting.bat -------------------------------------------------------------------------------- /tools/make_docs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/tools/make_docs.bat -------------------------------------------------------------------------------- /tools/make_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/tools/make_input.py -------------------------------------------------------------------------------- /tools/make_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/tools/make_response.py -------------------------------------------------------------------------------- /tools/upload_pypi.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/tools/upload_pypi.bat -------------------------------------------------------------------------------- /tools/upload_pypitesting.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/tools/upload_pypitesting.bat -------------------------------------------------------------------------------- /tools/win_install_hey_athena.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rcbyron/hey-athena-client/HEAD/tools/win_install_hey_athena.bat --------------------------------------------------------------------------------