├── .coveragerc ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── CONTRIBUTORS.txt ├── LICENSE ├── Makefile ├── README.md ├── coverage.svg ├── docs ├── Makefile ├── __init__.py ├── a_wampy_application.rst ├── a_wampy_client.rst ├── assets │ └── wampy-internal-architecture.jpg ├── authentication.rst ├── conf.py ├── examples │ ├── __init__.py │ └── services.py ├── exception_handling.rst ├── index.rst ├── make.bat ├── message_handler.rst ├── protocol │ └── draft-oberstet-hybi-crossbar-wamp.txt ├── publishing_to_a_topic.rst ├── remote_procedure_calls.rst ├── subscribing_to_a_topic.rst ├── templates │ ├── relations.html │ └── sidebarlinks.html ├── testing.rst ├── tls.rst ├── wampy.constants.rst ├── wampy.errors.rst ├── wampy.messages.call.rst ├── wampy.messages.goodbye.rst ├── wampy.messages.hello.rst ├── wampy.messages.publish.rst ├── wampy.messages.register.rst ├── wampy.messages.subscribe.rst ├── wampy.messages.yield.rst ├── wampy.mixins.rst ├── wampy.peers.clients.rst ├── wampy.peers.routers.rst ├── wampy.roles.callee.rst ├── wampy.roles.caller.rst ├── wampy.roles.publisher.rst ├── wampy.roles.subscriber.rst ├── wampy.session.rst ├── what_is_wamp.rst └── what_is_wampy.rst ├── rtd_requirements.txt ├── setup.py ├── test ├── __init__.py ├── conftest.py ├── integration │ ├── __init__.py │ ├── roles │ │ ├── test_callers.py │ │ └── test_publishing.py │ ├── test_app_runner.py │ ├── test_authentication.py │ ├── test_clients.py │ ├── test_exception_handling.py │ ├── test_message_handler.py │ ├── test_really_long_strings.py │ ├── test_unicode.py │ └── transports │ │ ├── test_transports.py │ │ └── test_websockets.py └── unit │ ├── __init__.py │ ├── test_authentication.py │ ├── test_backends.py │ └── test_configure.py └── wampy ├── __init__.py ├── auth.py ├── backends ├── __init__.py ├── errors.py ├── eventlet_.py └── gevent_.py ├── cli ├── __init__.py ├── main.py └── run.py ├── config ├── __init__.py └── defaults.py ├── constants.py ├── errors.py ├── interfaces.py ├── message_handler.py ├── messages ├── __init__.py ├── abort.py ├── authenticate.py ├── base.py ├── call.py ├── cancel.py ├── challenge.py ├── error.py ├── event.py ├── goodbye.py ├── hello.py ├── invocation.py ├── publish.py ├── register.py ├── registered.py ├── result.py ├── subscribe.py ├── subscribed.py ├── welcome.py └── yield_.py ├── mixins.py ├── peers ├── __init__.py ├── clients.py └── routers.py ├── roles ├── __init__.py ├── callee.py ├── caller.py ├── publisher.py └── subscriber.py ├── serializers.py ├── session.py ├── testing ├── __init__.py ├── configs │ ├── README.rst │ ├── crossbar.ipv6.json │ ├── crossbar.json │ ├── crossbar.static.auth.json │ ├── crossbar.timeout.json │ └── crossbar.tls.json ├── helpers.py ├── keys │ ├── dhparam.pem │ ├── server_cert.pem │ └── server_key.pem └── pytest_plugin.py └── transports ├── __init__.py └── websocket ├── __init__.py ├── connection.py └── frames.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/README.md -------------------------------------------------------------------------------- /coverage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/coverage.svg -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/a_wampy_application.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/a_wampy_application.rst -------------------------------------------------------------------------------- /docs/a_wampy_client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/a_wampy_client.rst -------------------------------------------------------------------------------- /docs/assets/wampy-internal-architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/assets/wampy-internal-architecture.jpg -------------------------------------------------------------------------------- /docs/authentication.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/authentication.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/examples/services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/examples/services.py -------------------------------------------------------------------------------- /docs/exception_handling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/exception_handling.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/message_handler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/message_handler.rst -------------------------------------------------------------------------------- /docs/protocol/draft-oberstet-hybi-crossbar-wamp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/protocol/draft-oberstet-hybi-crossbar-wamp.txt -------------------------------------------------------------------------------- /docs/publishing_to_a_topic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/publishing_to_a_topic.rst -------------------------------------------------------------------------------- /docs/remote_procedure_calls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/remote_procedure_calls.rst -------------------------------------------------------------------------------- /docs/subscribing_to_a_topic.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/subscribing_to_a_topic.rst -------------------------------------------------------------------------------- /docs/templates/relations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/templates/relations.html -------------------------------------------------------------------------------- /docs/templates/sidebarlinks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/templates/sidebarlinks.html -------------------------------------------------------------------------------- /docs/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/testing.rst -------------------------------------------------------------------------------- /docs/tls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/tls.rst -------------------------------------------------------------------------------- /docs/wampy.constants.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/wampy.constants.rst -------------------------------------------------------------------------------- /docs/wampy.errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/wampy.errors.rst -------------------------------------------------------------------------------- /docs/wampy.messages.call.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/wampy.messages.call.rst -------------------------------------------------------------------------------- /docs/wampy.messages.goodbye.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/wampy.messages.goodbye.rst -------------------------------------------------------------------------------- /docs/wampy.messages.hello.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/wampy.messages.hello.rst -------------------------------------------------------------------------------- /docs/wampy.messages.publish.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/wampy.messages.publish.rst -------------------------------------------------------------------------------- /docs/wampy.messages.register.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/wampy.messages.register.rst -------------------------------------------------------------------------------- /docs/wampy.messages.subscribe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/wampy.messages.subscribe.rst -------------------------------------------------------------------------------- /docs/wampy.messages.yield.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/wampy.messages.yield.rst -------------------------------------------------------------------------------- /docs/wampy.mixins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/wampy.mixins.rst -------------------------------------------------------------------------------- /docs/wampy.peers.clients.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/wampy.peers.clients.rst -------------------------------------------------------------------------------- /docs/wampy.peers.routers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/wampy.peers.routers.rst -------------------------------------------------------------------------------- /docs/wampy.roles.callee.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/wampy.roles.callee.rst -------------------------------------------------------------------------------- /docs/wampy.roles.caller.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/wampy.roles.caller.rst -------------------------------------------------------------------------------- /docs/wampy.roles.publisher.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/wampy.roles.publisher.rst -------------------------------------------------------------------------------- /docs/wampy.roles.subscriber.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/wampy.roles.subscriber.rst -------------------------------------------------------------------------------- /docs/wampy.session.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/wampy.session.rst -------------------------------------------------------------------------------- /docs/what_is_wamp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/what_is_wamp.rst -------------------------------------------------------------------------------- /docs/what_is_wampy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/docs/what_is_wampy.rst -------------------------------------------------------------------------------- /rtd_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/rtd_requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/test/__init__.py -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/integration/roles/test_callers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/test/integration/roles/test_callers.py -------------------------------------------------------------------------------- /test/integration/roles/test_publishing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/test/integration/roles/test_publishing.py -------------------------------------------------------------------------------- /test/integration/test_app_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/test/integration/test_app_runner.py -------------------------------------------------------------------------------- /test/integration/test_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/test/integration/test_authentication.py -------------------------------------------------------------------------------- /test/integration/test_clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/test/integration/test_clients.py -------------------------------------------------------------------------------- /test/integration/test_exception_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/test/integration/test_exception_handling.py -------------------------------------------------------------------------------- /test/integration/test_message_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/test/integration/test_message_handler.py -------------------------------------------------------------------------------- /test/integration/test_really_long_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/test/integration/test_really_long_strings.py -------------------------------------------------------------------------------- /test/integration/test_unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/test/integration/test_unicode.py -------------------------------------------------------------------------------- /test/integration/transports/test_transports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/test/integration/transports/test_transports.py -------------------------------------------------------------------------------- /test/integration/transports/test_websockets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/test/integration/transports/test_websockets.py -------------------------------------------------------------------------------- /test/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/unit/test_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/test/unit/test_authentication.py -------------------------------------------------------------------------------- /test/unit/test_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/test/unit/test_backends.py -------------------------------------------------------------------------------- /test/unit/test_configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/test/unit/test_configure.py -------------------------------------------------------------------------------- /wampy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/__init__.py -------------------------------------------------------------------------------- /wampy/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/auth.py -------------------------------------------------------------------------------- /wampy/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/backends/__init__.py -------------------------------------------------------------------------------- /wampy/backends/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/backends/errors.py -------------------------------------------------------------------------------- /wampy/backends/eventlet_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/backends/eventlet_.py -------------------------------------------------------------------------------- /wampy/backends/gevent_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/backends/gevent_.py -------------------------------------------------------------------------------- /wampy/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/cli/__init__.py -------------------------------------------------------------------------------- /wampy/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/cli/main.py -------------------------------------------------------------------------------- /wampy/cli/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/cli/run.py -------------------------------------------------------------------------------- /wampy/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wampy/config/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/config/defaults.py -------------------------------------------------------------------------------- /wampy/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/constants.py -------------------------------------------------------------------------------- /wampy/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/errors.py -------------------------------------------------------------------------------- /wampy/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/interfaces.py -------------------------------------------------------------------------------- /wampy/message_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/message_handler.py -------------------------------------------------------------------------------- /wampy/messages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/messages/__init__.py -------------------------------------------------------------------------------- /wampy/messages/abort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/messages/abort.py -------------------------------------------------------------------------------- /wampy/messages/authenticate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/messages/authenticate.py -------------------------------------------------------------------------------- /wampy/messages/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/messages/base.py -------------------------------------------------------------------------------- /wampy/messages/call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/messages/call.py -------------------------------------------------------------------------------- /wampy/messages/cancel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/messages/cancel.py -------------------------------------------------------------------------------- /wampy/messages/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/messages/challenge.py -------------------------------------------------------------------------------- /wampy/messages/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/messages/error.py -------------------------------------------------------------------------------- /wampy/messages/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/messages/event.py -------------------------------------------------------------------------------- /wampy/messages/goodbye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/messages/goodbye.py -------------------------------------------------------------------------------- /wampy/messages/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/messages/hello.py -------------------------------------------------------------------------------- /wampy/messages/invocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/messages/invocation.py -------------------------------------------------------------------------------- /wampy/messages/publish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/messages/publish.py -------------------------------------------------------------------------------- /wampy/messages/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/messages/register.py -------------------------------------------------------------------------------- /wampy/messages/registered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/messages/registered.py -------------------------------------------------------------------------------- /wampy/messages/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/messages/result.py -------------------------------------------------------------------------------- /wampy/messages/subscribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/messages/subscribe.py -------------------------------------------------------------------------------- /wampy/messages/subscribed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/messages/subscribed.py -------------------------------------------------------------------------------- /wampy/messages/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/messages/welcome.py -------------------------------------------------------------------------------- /wampy/messages/yield_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/messages/yield_.py -------------------------------------------------------------------------------- /wampy/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/mixins.py -------------------------------------------------------------------------------- /wampy/peers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/peers/__init__.py -------------------------------------------------------------------------------- /wampy/peers/clients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/peers/clients.py -------------------------------------------------------------------------------- /wampy/peers/routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/peers/routers.py -------------------------------------------------------------------------------- /wampy/roles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/roles/__init__.py -------------------------------------------------------------------------------- /wampy/roles/callee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/roles/callee.py -------------------------------------------------------------------------------- /wampy/roles/caller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/roles/caller.py -------------------------------------------------------------------------------- /wampy/roles/publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/roles/publisher.py -------------------------------------------------------------------------------- /wampy/roles/subscriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/roles/subscriber.py -------------------------------------------------------------------------------- /wampy/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/serializers.py -------------------------------------------------------------------------------- /wampy/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/session.py -------------------------------------------------------------------------------- /wampy/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/testing/__init__.py -------------------------------------------------------------------------------- /wampy/testing/configs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/testing/configs/README.rst -------------------------------------------------------------------------------- /wampy/testing/configs/crossbar.ipv6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/testing/configs/crossbar.ipv6.json -------------------------------------------------------------------------------- /wampy/testing/configs/crossbar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/testing/configs/crossbar.json -------------------------------------------------------------------------------- /wampy/testing/configs/crossbar.static.auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/testing/configs/crossbar.static.auth.json -------------------------------------------------------------------------------- /wampy/testing/configs/crossbar.timeout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/testing/configs/crossbar.timeout.json -------------------------------------------------------------------------------- /wampy/testing/configs/crossbar.tls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/testing/configs/crossbar.tls.json -------------------------------------------------------------------------------- /wampy/testing/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/testing/helpers.py -------------------------------------------------------------------------------- /wampy/testing/keys/dhparam.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/testing/keys/dhparam.pem -------------------------------------------------------------------------------- /wampy/testing/keys/server_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/testing/keys/server_cert.pem -------------------------------------------------------------------------------- /wampy/testing/keys/server_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/testing/keys/server_key.pem -------------------------------------------------------------------------------- /wampy/testing/pytest_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/testing/pytest_plugin.py -------------------------------------------------------------------------------- /wampy/transports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/transports/__init__.py -------------------------------------------------------------------------------- /wampy/transports/websocket/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/transports/websocket/__init__.py -------------------------------------------------------------------------------- /wampy/transports/websocket/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/transports/websocket/connection.py -------------------------------------------------------------------------------- /wampy/transports/websocket/frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noisyboiler/wampy/HEAD/wampy/transports/websocket/frames.py --------------------------------------------------------------------------------