jetstream-api 0.1.0__tar.gz

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,23 @@
1
+ Boost Software License - Version 1.0 - August 17th, 2003
2
+
3
+ Permission is hereby granted, free of charge, to any person or organization
4
+ obtaining a copy of the software and accompanying documentation covered by
5
+ this license (the "Software") to use, reproduce, display, distribute,
6
+ execute, and transmit the Software, and to prepare derivative works of the
7
+ Software, and to permit third-parties to whom the Software is furnished to
8
+ do so, all subject to the following:
9
+
10
+ The copyright notices in the Software and this entire statement, including
11
+ the above license grant, this restriction and the following disclaimer,
12
+ must be included in all copies of the Software, in whole or in part, and
13
+ all derivative works of the Software, unless such copies or derivative
14
+ works are solely in the form of machine-executable object code generated by
15
+ a source language processor.
16
+
17
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
+ FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
20
+ SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
21
+ FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
22
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23
+ DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,47 @@
1
+ Metadata-Version: 2.4
2
+ Name: jetstream-api
3
+ Version: 0.1.0
4
+ Summary: Python client API for iLink M.O.M. (Message Oriented Middleware)
5
+ Author: snowjeans
6
+ License: Boost Software License - Version 1.0 - August 17th, 2003
7
+
8
+ Permission is hereby granted, free of charge, to any person or organization
9
+ obtaining a copy of the software and accompanying documentation covered by
10
+ this license (the "Software") to use, reproduce, display, distribute,
11
+ execute, and transmit the Software, and to prepare derivative works of the
12
+ Software, and to permit third-parties to whom the Software is furnished to
13
+ do so, all subject to the following:
14
+
15
+ The copyright notices in the Software and this entire statement, including
16
+ the above license grant, this restriction and the following disclaimer,
17
+ must be included in all copies of the Software, in whole or in part, and
18
+ all derivative works of the Software, unless such copies or derivative
19
+ works are solely in the form of machine-executable object code generated by
20
+ a source language processor.
21
+
22
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24
+ FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
25
+ SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
26
+ FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
27
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
28
+ DEALINGS IN THE SOFTWARE.
29
+
30
+ Keywords: ilink,mom,messaging,middleware,queue,jetstream
31
+ Classifier: Programming Language :: Python :: 3
32
+ Classifier: Programming Language :: Python :: 3.9
33
+ Classifier: Programming Language :: Python :: 3.10
34
+ Classifier: Programming Language :: Python :: 3.11
35
+ Classifier: Programming Language :: Python :: 3.12
36
+ Classifier: Programming Language :: Python :: 3.13
37
+ Classifier: License :: OSI Approved :: Boost Software License 1.0 (BSL-1.0)
38
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
39
+ Classifier: Topic :: System :: Networking
40
+ Requires-Python: >=3.9
41
+ Description-Content-Type: text/markdown
42
+ License-File: LICENSE.txt
43
+ Dynamic: license-file
44
+
45
+ # jetstream-client
46
+
47
+ ILink 클라이언트 API입니다.
@@ -0,0 +1,3 @@
1
+ # jetstream-client
2
+
3
+ ILink 클라이언트 API입니다.
@@ -0,0 +1,90 @@
1
+ """iLink - Python client API for iLink M.O.M. (Message Oriented Middleware)."""
2
+
3
+ __version__ = "0.1.0"
4
+
5
+ # --- Admin / Service ---
6
+ from .admin import ILAdminService, ILAdminQmgr, ILLogBrowser, ILQueueBrowser
7
+
8
+ # --- Queue Manager & Queue ---
9
+ from .qmgr import ILQmgr, ILQueue
10
+
11
+ # --- Message ---
12
+ from .msg import ILMsg, ILMsgUtil
13
+
14
+ # --- Constants & Enums ---
15
+ from .common import ILC, ILCC, ILRC, MatchOption
16
+
17
+ # --- Properties ---
18
+ from .properties import (
19
+ DestItem,
20
+ PartitionItem,
21
+ ILQueueProperty,
22
+ ILChannelProperty,
23
+ ILChannelType,
24
+ ILChannelStatus,
25
+ ILChannelDirection,
26
+ ILChannelSecurity,
27
+ ILChannelBalanceMode,
28
+ ILQmgrProperty,
29
+ ILSessionProperty,
30
+ ILServiceProperty,
31
+ ILSpokeProperty,
32
+ ILAccessRuleProperty,
33
+ ILSecureFileProperty,
34
+ ILQueueRealTimeInfo,
35
+ ILQueueFlow,
36
+ )
37
+
38
+ # --- Exceptions ---
39
+ from .exception import (
40
+ ILException,
41
+ ILNoMsgException,
42
+ ILTimeoutException,
43
+ ILOperationException,
44
+ ILSessionException,
45
+ ILMsgTypeException,
46
+ )
47
+
48
+ __all__ = [
49
+ # Admin
50
+ "ILAdminService",
51
+ "ILAdminQmgr",
52
+ "ILLogBrowser",
53
+ "ILQueueBrowser",
54
+ # QMgr / Queue
55
+ "ILQmgr",
56
+ "ILQueue",
57
+ # Message
58
+ "ILMsg",
59
+ "ILMsgUtil",
60
+ # Constants
61
+ "ILC",
62
+ "ILCC",
63
+ "ILRC",
64
+ "MatchOption",
65
+ # Properties
66
+ "DestItem",
67
+ "PartitionItem",
68
+ "ILQueueProperty",
69
+ "ILChannelProperty",
70
+ "ILChannelType",
71
+ "ILChannelStatus",
72
+ "ILChannelDirection",
73
+ "ILChannelSecurity",
74
+ "ILChannelBalanceMode",
75
+ "ILQmgrProperty",
76
+ "ILSessionProperty",
77
+ "ILServiceProperty",
78
+ "ILSpokeProperty",
79
+ "ILAccessRuleProperty",
80
+ "ILSecureFileProperty",
81
+ "ILQueueRealTimeInfo",
82
+ "ILQueueFlow",
83
+ # Exceptions
84
+ "ILException",
85
+ "ILNoMsgException",
86
+ "ILTimeoutException",
87
+ "ILOperationException",
88
+ "ILSessionException",
89
+ "ILMsgTypeException",
90
+ ]