phoenix-channels-python-client 0.1.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- phoenix_channels_python_client/__init__.py +22 -0
- phoenix_channels_python_client/client.py +900 -0
- phoenix_channels_python_client/exceptions.py +12 -0
- phoenix_channels_python_client/phx_messages.py +52 -0
- phoenix_channels_python_client/protocol_handler.py +170 -0
- phoenix_channels_python_client/topic_subscription.py +46 -0
- phoenix_channels_python_client/utils.py +65 -0
- phoenix_channels_python_client-0.1.2.dist-info/METADATA +268 -0
- phoenix_channels_python_client-0.1.2.dist-info/RECORD +12 -0
- phoenix_channels_python_client-0.1.2.dist-info/WHEEL +5 -0
- phoenix_channels_python_client-0.1.2.dist-info/licenses/LICENSE +21 -0
- phoenix_channels_python_client-0.1.2.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Phoenix Channels Python Client
|
|
3
|
+
|
|
4
|
+
A Python client library for connecting to Phoenix Channels.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from phoenix_channels_python_client.client import PHXChannelsClient
|
|
8
|
+
from phoenix_channels_python_client.protocol_handler import (
|
|
9
|
+
PHXProtocolHandler,
|
|
10
|
+
PhoenixChannelsProtocolVersion,
|
|
11
|
+
)
|
|
12
|
+
from phoenix_channels_python_client.utils import setup_logging
|
|
13
|
+
|
|
14
|
+
__version__ = "0.1.2"
|
|
15
|
+
__author__ = "Phoenix Channels Python Client"
|
|
16
|
+
|
|
17
|
+
__all__ = [
|
|
18
|
+
"PHXChannelsClient",
|
|
19
|
+
"PHXProtocolHandler",
|
|
20
|
+
"PhoenixChannelsProtocolVersion",
|
|
21
|
+
"setup_logging",
|
|
22
|
+
]
|