jetstream-api 0.1.2__tar.gz → 0.1.4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jetstream-api
3
- Version: 0.1.2
3
+ Version: 0.1.4
4
4
  Summary: Python client API for iLink M.O.M. (Message Oriented Middleware)
5
5
  Author: snowjeans
6
6
  License: Boost Software License - Version 1.0 - August 17th, 2003
@@ -42,6 +42,15 @@ Description-Content-Type: text/markdown
42
42
  License-File: LICENSE.txt
43
43
  Dynamic: license-file
44
44
 
45
- # jetstream-client
45
+ # jetstream-api
46
46
 
47
- ILink 클라이언트 API입니다.
47
+ Python으로 작성된 ILink 클라이언트 API입니다.
48
+
49
+ ## 시스템 요구 사항
50
+ 시스템에 python 13 이상, pip가 설치되어 있어야 합니다.
51
+
52
+ ## 설치 방법
53
+ pip install jetstream-api
54
+
55
+ ## 개발자 가이드 문서
56
+ 추후 업데이트 예정..
@@ -0,0 +1,12 @@
1
+ # jetstream-api
2
+
3
+ Python으로 작성된 ILink 클라이언트 API입니다.
4
+
5
+ ## 시스템 요구 사항
6
+ 시스템에 python 13 이상, pip가 설치되어 있어야 합니다.
7
+
8
+ ## 설치 방법
9
+ pip install jetstream-api
10
+
11
+ ## 개발자 가이드 문서
12
+ 추후 업데이트 예정..
@@ -1,90 +1,90 @@
1
- """iLink - Python client API for iLink M.O.M. (Message Oriented Middleware)."""
2
-
3
- __version__ = "0.1.2"
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
- ]
1
+ """iLink - Python client API for iLink M.O.M. (Message Oriented Middleware)."""
2
+
3
+ __version__ = "0.1.4"
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
+ ]