appmesh 1.3.7__py3-none-any.whl → 1.3.8__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.
- appmesh/__init__.py +2 -2
- appmesh/appmesh_client.py +6 -1221
- appmesh/http_client.py +1216 -0
- appmesh/{appmesh_client_tcp.py → tcp_client.py} +14 -160
- appmesh/tcp_messages.py +41 -0
- appmesh/tcp_transport.py +160 -0
- {appmesh-1.3.7.dist-info → appmesh-1.3.8.dist-info}/METADATA +1 -1
- appmesh-1.3.8.dist-info/RECORD +13 -0
- {appmesh-1.3.7.dist-info → appmesh-1.3.8.dist-info}/WHEEL +1 -1
- appmesh-1.3.7.dist-info/RECORD +0 -10
- {appmesh-1.3.7.dist-info → appmesh-1.3.8.dist-info}/top_level.txt +0 -0
appmesh/__init__.py
CHANGED
@@ -12,7 +12,7 @@ Example:
|
|
12
12
|
"""
|
13
13
|
|
14
14
|
from .app import App
|
15
|
-
from .
|
16
|
-
from .
|
15
|
+
from .http_client import AppMeshClient
|
16
|
+
from .tcp_client import AppMeshClientTCP
|
17
17
|
|
18
18
|
__all__ = ["App", "AppMeshClient", "AppMeshClientTCP"]
|