jetstream-api 0.1.3__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.
- {jetstream_api-0.1.3/jetstream_api.egg-info → jetstream_api-0.1.4}/PKG-INFO +12 -3
- jetstream_api-0.1.4/README.md +12 -0
- {jetstream_api-0.1.3 → jetstream_api-0.1.4}/ilink/__init__.py +90 -90
- {jetstream_api-0.1.3 → jetstream_api-0.1.4}/ilink/common.py +769 -761
- {jetstream_api-0.1.3 → jetstream_api-0.1.4}/ilink/properties.py +1986 -1974
- {jetstream_api-0.1.3 → jetstream_api-0.1.4/jetstream_api.egg-info}/PKG-INFO +12 -3
- {jetstream_api-0.1.3 → jetstream_api-0.1.4}/pyproject.toml +33 -33
- jetstream_api-0.1.3/README.md +0 -3
- {jetstream_api-0.1.3 → jetstream_api-0.1.4}/LICENSE.txt +0 -0
- {jetstream_api-0.1.3 → jetstream_api-0.1.4}/ilink/admin.py +0 -0
- {jetstream_api-0.1.3 → jetstream_api-0.1.4}/ilink/connectivity.py +0 -0
- {jetstream_api-0.1.3 → jetstream_api-0.1.4}/ilink/exception.py +0 -0
- {jetstream_api-0.1.3 → jetstream_api-0.1.4}/ilink/msg.py +0 -0
- {jetstream_api-0.1.3 → jetstream_api-0.1.4}/ilink/qmgr.py +0 -0
- {jetstream_api-0.1.3 → jetstream_api-0.1.4}/ilink/util.py +0 -0
- {jetstream_api-0.1.3 → jetstream_api-0.1.4}/jetstream_api.egg-info/SOURCES.txt +0 -0
- {jetstream_api-0.1.3 → jetstream_api-0.1.4}/jetstream_api.egg-info/dependency_links.txt +0 -0
- {jetstream_api-0.1.3 → jetstream_api-0.1.4}/jetstream_api.egg-info/top_level.txt +0 -0
- {jetstream_api-0.1.3 → jetstream_api-0.1.4}/setup.cfg +0 -0
- {jetstream_api-0.1.3 → jetstream_api-0.1.4}/tests/test_example.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: jetstream-api
|
|
3
|
-
Version: 0.1.
|
|
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-
|
|
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
|
+
추후 업데이트 예정..
|
|
@@ -1,90 +1,90 @@
|
|
|
1
|
-
"""iLink - Python client API for iLink M.O.M. (Message Oriented Middleware)."""
|
|
2
|
-
|
|
3
|
-
__version__ = "0.1.
|
|
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
|
+
]
|