embed-client 3.1.0.1__py3-none-any.whl → 3.1.0.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.
- embed_client/__init__.py +21 -1
- {embed_client-3.1.0.1.dist-info → embed_client-3.1.0.2.dist-info}/METADATA +1 -1
- {embed_client-3.1.0.1.dist-info → embed_client-3.1.0.2.dist-info}/RECORD +6 -6
- {embed_client-3.1.0.1.dist-info → embed_client-3.1.0.2.dist-info}/WHEEL +0 -0
- {embed_client-3.1.0.1.dist-info → embed_client-3.1.0.2.dist-info}/licenses/LICENSE +0 -0
- {embed_client-3.1.0.1.dist-info → embed_client-3.1.0.2.dist-info}/top_level.txt +0 -0
embed_client/__init__.py
CHANGED
@@ -1 +1,21 @@
|
|
1
|
-
|
1
|
+
"""
|
2
|
+
embed-client: Async client for Embedding Service API with comprehensive authentication, SSL/TLS, and mTLS support
|
3
|
+
|
4
|
+
Author: Vasiliy Zdanovskiy
|
5
|
+
email: vasilyvz@gmail.com
|
6
|
+
"""
|
7
|
+
|
8
|
+
from .async_client import EmbeddingServiceAsyncClient
|
9
|
+
from .config import ClientConfig
|
10
|
+
from .auth import AuthManager
|
11
|
+
from .ssl_manager import ClientSSLManager
|
12
|
+
from .client_factory import ClientFactory
|
13
|
+
|
14
|
+
__version__ = "3.1.0.2"
|
15
|
+
__all__ = [
|
16
|
+
"EmbeddingServiceAsyncClient",
|
17
|
+
"ClientConfig",
|
18
|
+
"AuthManager",
|
19
|
+
"ClientSSLManager",
|
20
|
+
"ClientFactory"
|
21
|
+
]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: embed-client
|
3
|
-
Version: 3.1.0.
|
3
|
+
Version: 3.1.0.2
|
4
4
|
Summary: Async client for Embedding Service API with comprehensive authentication, SSL/TLS, and mTLS support
|
5
5
|
Author-email: Vasiliy Zdanovskiy <vasilyvz@gmail.com>
|
6
6
|
License-Expression: MIT
|
@@ -1,4 +1,4 @@
|
|
1
|
-
embed_client/__init__.py,sha256=
|
1
|
+
embed_client/__init__.py,sha256=12iI-f075Gmv8IyQ9L7-SH8eNND4qpF6Fjqz1-P4d1Y,535
|
2
2
|
embed_client/async_client.py,sha256=Zf08g-i_2ylDj4tt9E1TO9swi-zcozFDr4mJdlfiGSI,40222
|
3
3
|
embed_client/auth.py,sha256=MMk5XqFIY5htf3Bx0JA_8mJaAiLslpLUIVUaiO84XBw,18310
|
4
4
|
embed_client/auth_examples.py,sha256=QX_QWaaeyBAqvSs9uOP1ZVdAe72gJ91e8AP1e7R-yzQ,7361
|
@@ -10,8 +10,8 @@ embed_client/example_async_usage.py,sha256=dndf79MIqZaHvWzbtKrZVwU7G4a5yNL1JPMnM
|
|
10
10
|
embed_client/example_async_usage_ru.py,sha256=3HeP5YoyGd49dRlxNC-2TAh_GbwSW4jJmoLXMpMIfFs,29899
|
11
11
|
embed_client/ssl_examples.py,sha256=22lTGhK2bqGJ44uUCpc7v2egY4AP3_ar8RMaTb4KBwU,9346
|
12
12
|
embed_client/ssl_manager.py,sha256=Ts6-hKxUUNHdW3yldnoykaDblxWtGbIwKdnzPw__30U,17247
|
13
|
-
embed_client-3.1.0.
|
14
|
-
embed_client-3.1.0.
|
15
|
-
embed_client-3.1.0.
|
16
|
-
embed_client-3.1.0.
|
17
|
-
embed_client-3.1.0.
|
13
|
+
embed_client-3.1.0.2.dist-info/licenses/LICENSE,sha256=6KdtUcTwmTRbJrAmYjVn7e6S-V42ubeDJ-AiVEzZ510,1075
|
14
|
+
embed_client-3.1.0.2.dist-info/METADATA,sha256=AMYMkJVnthnj8yD6k4My247r4MT_xQRH10-14dMr3C4,8633
|
15
|
+
embed_client-3.1.0.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
16
|
+
embed_client-3.1.0.2.dist-info/top_level.txt,sha256=uG00A4d9o9DFrhiN7goObpeig72Pniby0E7UpDRgyXY,13
|
17
|
+
embed_client-3.1.0.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|