├── .gitignore ├── .gitreview ├── CHANGELOG ├── HOW_TO_RELEASE ├── LICENSE ├── Pipfile ├── Pipfile.lock ├── README.md ├── package.bat ├── run_tests.py ├── samples └── interactive_client.py ├── setup.cfg ├── setup.py ├── setup_pyenv.py ├── tox.ini └── waapi ├── __init__.py ├── client ├── __init__.py ├── client.py ├── event.py ├── executor.py └── interface.py ├── test ├── __init__.py ├── fixture.py ├── test_allowed_exception.py ├── test_connection.py ├── test_executor.py ├── test_integration.py ├── test_large_payload.py ├── test_rpc_lowlevel.py └── test_subscribe_lowlevel.py └── wamp ├── __init__.py ├── ak_autobahn.py ├── async_compatibility.py ├── async_decoupled_client.py └── interface.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/.gitreview -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/CHANGELOG -------------------------------------------------------------------------------- /HOW_TO_RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/HOW_TO_RELEASE -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/LICENSE -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/README.md -------------------------------------------------------------------------------- /package.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/package.bat -------------------------------------------------------------------------------- /run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/run_tests.py -------------------------------------------------------------------------------- /samples/interactive_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/samples/interactive_client.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description_file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/setup.py -------------------------------------------------------------------------------- /setup_pyenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/setup_pyenv.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/tox.ini -------------------------------------------------------------------------------- /waapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/waapi/__init__.py -------------------------------------------------------------------------------- /waapi/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/waapi/client/__init__.py -------------------------------------------------------------------------------- /waapi/client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/waapi/client/client.py -------------------------------------------------------------------------------- /waapi/client/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/waapi/client/event.py -------------------------------------------------------------------------------- /waapi/client/executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/waapi/client/executor.py -------------------------------------------------------------------------------- /waapi/client/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/waapi/client/interface.py -------------------------------------------------------------------------------- /waapi/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /waapi/test/fixture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/waapi/test/fixture.py -------------------------------------------------------------------------------- /waapi/test/test_allowed_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/waapi/test/test_allowed_exception.py -------------------------------------------------------------------------------- /waapi/test/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/waapi/test/test_connection.py -------------------------------------------------------------------------------- /waapi/test/test_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/waapi/test/test_executor.py -------------------------------------------------------------------------------- /waapi/test/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/waapi/test/test_integration.py -------------------------------------------------------------------------------- /waapi/test/test_large_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/waapi/test/test_large_payload.py -------------------------------------------------------------------------------- /waapi/test/test_rpc_lowlevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/waapi/test/test_rpc_lowlevel.py -------------------------------------------------------------------------------- /waapi/test/test_subscribe_lowlevel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/waapi/test/test_subscribe_lowlevel.py -------------------------------------------------------------------------------- /waapi/wamp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /waapi/wamp/ak_autobahn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/waapi/wamp/ak_autobahn.py -------------------------------------------------------------------------------- /waapi/wamp/async_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/waapi/wamp/async_compatibility.py -------------------------------------------------------------------------------- /waapi/wamp/async_decoupled_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/waapi/wamp/async_decoupled_client.py -------------------------------------------------------------------------------- /waapi/wamp/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/audiokinetic/waapi-client-python/HEAD/waapi/wamp/interface.py --------------------------------------------------------------------------------