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.
@@ -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
+ ]