iris-pex-embedded-python 2.3.16__py3-none-any.whl → 2.3.18__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.
Potentially problematic release.
This version of iris-pex-embedded-python might be problematic. Click here for more details.
- grongier/iris/Grongier/PEX/BusinessOperation.cls +33 -0
- grongier/iris/Grongier/PEX/BusinessProcess.cls +100 -0
- grongier/iris/Grongier/PEX/BusinessService.cls +33 -0
- grongier/iris/Grongier/PEX/Common.cls +133 -0
- grongier/iris/Grongier/PEX/Director.cls +15 -0
- grongier/iris/Grongier/PEX/Duplex/Operation.cls +27 -0
- grongier/iris/Grongier/PEX/Duplex/Process.cls +211 -0
- grongier/iris/Grongier/PEX/Duplex/Service.cls +9 -0
- grongier/iris/Grongier/PEX/InboundAdapter.cls +22 -0
- grongier/iris/Grongier/PEX/Message.cls +126 -0
- grongier/iris/Grongier/PEX/OutboundAdapter.cls +34 -0
- grongier/iris/Grongier/PEX/PickleMessage.cls +58 -0
- grongier/iris/Grongier/PEX/PrivateSession/Duplex.cls +247 -0
- grongier/iris/Grongier/PEX/PrivateSession/Message/Ack.cls +32 -0
- grongier/iris/Grongier/PEX/PrivateSession/Message/Poll.cls +32 -0
- grongier/iris/Grongier/PEX/PrivateSession/Message/Start.cls +32 -0
- grongier/iris/Grongier/PEX/PrivateSession/Message/Stop.cls +48 -0
- grongier/iris/Grongier/PEX/Python.cls +27 -0
- grongier/iris/Grongier/PEX/Test.cls +62 -0
- grongier/iris/Grongier/PEX/Utils.cls +312 -0
- grongier/iris/__init__.py +0 -0
- grongier/pex/_business_host.py +9 -1
- grongier/pex/_cli.py +8 -2
- grongier/pex/data/PEX/BusinessOperation.cls +35 -0
- grongier/pex/data/PEX/BusinessProcess.cls +113 -0
- grongier/pex/data/PEX/BusinessService.cls +35 -0
- grongier/pex/data/PEX/Common.cls +146 -0
- grongier/pex/data/PEX/Director.cls +57 -0
- grongier/pex/data/PEX/Duplex/Operation.cls +29 -0
- grongier/pex/data/PEX/Duplex/Process.cls +229 -0
- grongier/pex/data/PEX/Duplex/Service.cls +9 -0
- grongier/pex/data/PEX/InboundAdapter.cls +22 -0
- grongier/pex/data/PEX/Message.cls +128 -0
- grongier/pex/data/PEX/OutboundAdapter.cls +36 -0
- grongier/pex/data/PEX/PickleMessage.cls +58 -0
- grongier/pex/data/PEX/PrivateSession/Duplex.cls +260 -0
- grongier/pex/data/PEX/PrivateSession/Message/Ack.cls +32 -0
- grongier/pex/data/PEX/PrivateSession/Message/Poll.cls +32 -0
- grongier/pex/data/PEX/PrivateSession/Message/Start.cls +32 -0
- grongier/pex/data/PEX/PrivateSession/Message/Stop.cls +48 -0
- grongier/pex/data/PEX/Test.cls +62 -0
- grongier/pex/data/PEX/Utils.cls +413 -0
- intersystems_iris/_BufferReader.py +10 -0
- intersystems_iris/_BufferWriter.py +32 -0
- intersystems_iris/_ConnectionInformation.py +54 -0
- intersystems_iris/_ConnectionParameters.py +18 -0
- intersystems_iris/_Constant.py +38 -0
- intersystems_iris/_DBList.py +500 -0
- intersystems_iris/_Device.py +69 -0
- intersystems_iris/_GatewayContext.py +25 -0
- intersystems_iris/_GatewayException.py +4 -0
- intersystems_iris/_GatewayUtility.py +74 -0
- intersystems_iris/_IRIS.py +1294 -0
- intersystems_iris/_IRISConnection.py +516 -0
- intersystems_iris/_IRISEmbedded.py +85 -0
- intersystems_iris/_IRISGlobalNode.py +273 -0
- intersystems_iris/_IRISGlobalNodeView.py +25 -0
- intersystems_iris/_IRISIterator.py +143 -0
- intersystems_iris/_IRISList.py +360 -0
- intersystems_iris/_IRISNative.py +208 -0
- intersystems_iris/_IRISOREF.py +4 -0
- intersystems_iris/_IRISObject.py +424 -0
- intersystems_iris/_IRISReference.py +133 -0
- intersystems_iris/_InStream.py +149 -0
- intersystems_iris/_LegacyIterator.py +135 -0
- intersystems_iris/_ListItem.py +15 -0
- intersystems_iris/_ListReader.py +84 -0
- intersystems_iris/_ListWriter.py +157 -0
- intersystems_iris/_LogFileStream.py +115 -0
- intersystems_iris/_MessageHeader.py +51 -0
- intersystems_iris/_OutStream.py +25 -0
- intersystems_iris/_PrintStream.py +65 -0
- intersystems_iris/_PythonGateway.py +850 -0
- intersystems_iris/_SharedMemorySocket.py +87 -0
- intersystems_iris/__init__.py +79 -0
- intersystems_iris/__main__.py +7 -0
- intersystems_iris/dbapi/_Column.py +56 -0
- intersystems_iris/dbapi/_DBAPI.py +2587 -0
- intersystems_iris/dbapi/_Descriptor.py +46 -0
- intersystems_iris/dbapi/_IRISStream.py +65 -0
- intersystems_iris/dbapi/_Message.py +158 -0
- intersystems_iris/dbapi/_Parameter.py +169 -0
- intersystems_iris/dbapi/_ParameterCollection.py +141 -0
- intersystems_iris/dbapi/_ResultSetRow.py +338 -0
- intersystems_iris/dbapi/_SQLType.py +32 -0
- intersystems_iris/dbapi/__init__.py +0 -0
- intersystems_iris/dbapi/preparser/_PreParser.py +1671 -0
- intersystems_iris/dbapi/preparser/_Scanner.py +391 -0
- intersystems_iris/dbapi/preparser/_Token.py +81 -0
- intersystems_iris/dbapi/preparser/_TokenList.py +251 -0
- intersystems_iris/dbapi/preparser/__init__.py +0 -0
- intersystems_iris/pex/_BusinessHost.py +101 -0
- intersystems_iris/pex/_BusinessOperation.py +105 -0
- intersystems_iris/pex/_BusinessProcess.py +214 -0
- intersystems_iris/pex/_BusinessService.py +95 -0
- intersystems_iris/pex/_Common.py +228 -0
- intersystems_iris/pex/_Director.py +24 -0
- intersystems_iris/pex/_IRISBusinessOperation.py +5 -0
- intersystems_iris/pex/_IRISBusinessService.py +18 -0
- intersystems_iris/pex/_IRISInboundAdapter.py +5 -0
- intersystems_iris/pex/_IRISOutboundAdapter.py +17 -0
- intersystems_iris/pex/_InboundAdapter.py +57 -0
- intersystems_iris/pex/_Message.py +6 -0
- intersystems_iris/pex/_OutboundAdapter.py +46 -0
- intersystems_iris/pex/__init__.py +25 -0
- iris/__init__.py +33 -0
- iris/iris_ipm.py +40 -0
- iris/iris_site.py +13 -0
- iris/irisbuiltins.py +97 -0
- iris/irisloader.py +199 -0
- {iris_pex_embedded_python-2.3.16.dist-info → iris_pex_embedded_python-2.3.18.dist-info}/METADATA +3 -4
- iris_pex_embedded_python-2.3.18.dist-info/RECORD +153 -0
- {iris_pex_embedded_python-2.3.16.dist-info → iris_pex_embedded_python-2.3.18.dist-info}/WHEEL +1 -1
- iris_pex_embedded_python-2.3.18.dist-info/top_level.txt +4 -0
- irisnative/_IRISNative.py +9 -0
- irisnative/__init__.py +10 -0
- iris_pex_embedded_python-2.3.16.dist-info/RECORD +0 -43
- iris_pex_embedded_python-2.3.16.dist-info/top_level.txt +0 -1
- {iris_pex_embedded_python-2.3.16.dist-info → iris_pex_embedded_python-2.3.18.dist-info}/LICENSE +0 -0
- {iris_pex_embedded_python-2.3.16.dist-info → iris_pex_embedded_python-2.3.18.dist-info}/entry_points.txt +0 -0
iris/irisbuiltins.py
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
from collections import abc
|
|
2
|
+
|
|
3
|
+
#
|
|
4
|
+
# IRIS Exceptions
|
|
5
|
+
#
|
|
6
|
+
class SQLError(Exception):
|
|
7
|
+
"""Error raised on an invalid IRIS SQL statement
|
|
8
|
+
|
|
9
|
+
Attributes:
|
|
10
|
+
sqlcode -- IRIS SQL error code
|
|
11
|
+
message -- Error description
|
|
12
|
+
statement -- Statement that failed
|
|
13
|
+
"""
|
|
14
|
+
|
|
15
|
+
def __init__(self,sqlcode,message,statement=None):
|
|
16
|
+
self.sqlcode = sqlcode
|
|
17
|
+
self.message = message
|
|
18
|
+
self.statement = statement
|
|
19
|
+
super().__init__(self.message)
|
|
20
|
+
|
|
21
|
+
#
|
|
22
|
+
# Helper to raise a properly formatted AttributeError when we decide that
|
|
23
|
+
# we don't want to handle a last-chance method.
|
|
24
|
+
#
|
|
25
|
+
def _no_such_method(target,method):
|
|
26
|
+
raise AttributeError(f"'{target.__class__.__name__}' has no attribute '{method}'")
|
|
27
|
+
|
|
28
|
+
#
|
|
29
|
+
# irisbuiltins: Implements impedence matching methods for projecting IRIS behavior
|
|
30
|
+
# over Python objects.
|
|
31
|
+
#
|
|
32
|
+
class irisbuiltins:
|
|
33
|
+
|
|
34
|
+
#
|
|
35
|
+
# Common functions for mapping Python collection behavior to IRIS behavior
|
|
36
|
+
#
|
|
37
|
+
# NOTE: With Sequences, the indicies are 0 based for Python and 1 based
|
|
38
|
+
# for IRIS.
|
|
39
|
+
#
|
|
40
|
+
|
|
41
|
+
def Count(self):
|
|
42
|
+
if isinstance(self,abc.Mapping) or isinstance(self,abc.Sequence):
|
|
43
|
+
return len(self)
|
|
44
|
+
_no_such_method(self,"Count")
|
|
45
|
+
|
|
46
|
+
def GetAt(self,index):
|
|
47
|
+
if isinstance(self,abc.Mapping):
|
|
48
|
+
return self[index]
|
|
49
|
+
if isinstance(self,abc.Sequence):
|
|
50
|
+
return self[index-1]
|
|
51
|
+
_no_such_method(self,"GetAt")
|
|
52
|
+
|
|
53
|
+
def SetAt(self,value,index):
|
|
54
|
+
if isinstance(self,abc.Mapping):
|
|
55
|
+
self[index] = value
|
|
56
|
+
return
|
|
57
|
+
if isinstance(self,abc.Sequence):
|
|
58
|
+
self[index-1] = value
|
|
59
|
+
return
|
|
60
|
+
_no_such_method(self,"SetAt")
|
|
61
|
+
|
|
62
|
+
def Insert(self,value):
|
|
63
|
+
if isinstance(self,abc.Sequence):
|
|
64
|
+
self.append(value)
|
|
65
|
+
return
|
|
66
|
+
_no_such_method(self,"Insert")
|
|
67
|
+
|
|
68
|
+
def InsertAt(self,value,index):
|
|
69
|
+
if isinstance(self,abc.Sequence):
|
|
70
|
+
self.insert(index-1,value)
|
|
71
|
+
return
|
|
72
|
+
_no_such_method(self,"InsertAt")
|
|
73
|
+
|
|
74
|
+
def Clear(self):
|
|
75
|
+
if isinstance(self,abc.Mapping) or isinstance(self,abc.Sequence):
|
|
76
|
+
self.clear()
|
|
77
|
+
return
|
|
78
|
+
_no_such_method(self,"Clear")
|
|
79
|
+
|
|
80
|
+
def IsDefined(self,key):
|
|
81
|
+
if isinstance(self,abc.Mapping):
|
|
82
|
+
return (key in self)
|
|
83
|
+
_no_such_method(self,"IsDefined")
|
|
84
|
+
|
|
85
|
+
def Find(self,value):
|
|
86
|
+
if isinstance(self,abc.Sequence):
|
|
87
|
+
return self.index(value)+1
|
|
88
|
+
if isinstance(self,abc.Mapping):
|
|
89
|
+
for (k,v) in self.items():
|
|
90
|
+
if v == value:
|
|
91
|
+
return k
|
|
92
|
+
return None;
|
|
93
|
+
_no_such_method(self,"Find")
|
|
94
|
+
|
|
95
|
+
#
|
|
96
|
+
# End-of-file
|
|
97
|
+
#
|
iris/irisloader.py
ADDED
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
from importlib.abc import MetaPathFinder
|
|
2
|
+
from importlib.abc import Loader
|
|
3
|
+
import importlib
|
|
4
|
+
from types import ModuleType
|
|
5
|
+
import math
|
|
6
|
+
import marshal
|
|
7
|
+
import sys
|
|
8
|
+
import iris
|
|
9
|
+
|
|
10
|
+
sources=iris.gref("^ROUTINE")
|
|
11
|
+
binaries=iris.gref("^rPYC")
|
|
12
|
+
MAX_STRING_SIZE=3800000
|
|
13
|
+
|
|
14
|
+
def getFromDirectory(directory, path):
|
|
15
|
+
level=len(path)
|
|
16
|
+
if level == 1:
|
|
17
|
+
return directory[path[0]]
|
|
18
|
+
elif level == 2:
|
|
19
|
+
return directory[path[0],path[1]]
|
|
20
|
+
elif level == 3:
|
|
21
|
+
return directory[path[0],path[1],path[2]]
|
|
22
|
+
elif level == 4:
|
|
23
|
+
return directory[path[0],path[1],path[2],path[3]]
|
|
24
|
+
elif level == 5:
|
|
25
|
+
return directory[path[0],path[1],path[2],path[3],path[4]]
|
|
26
|
+
elif level == 6:
|
|
27
|
+
return directory[path[0],path[1],path[2],path[3],path[4],path[5]]
|
|
28
|
+
elif level == 7:
|
|
29
|
+
return directory[path[0],path[1],path[2],path[3],path[4],path[5],path[6]]
|
|
30
|
+
elif level == 8:
|
|
31
|
+
return directory[path[0],path[1],path[2],path[3],path[4],path[5],path[6],path[7]]
|
|
32
|
+
elif level == 9:
|
|
33
|
+
return directory[path[0],path[1],path[2],path[3],path[4],path[5],path[6],path[7],path[8]]
|
|
34
|
+
|
|
35
|
+
#name is name of rtn with .py
|
|
36
|
+
def getSourceCode(name):
|
|
37
|
+
currentP = [name] + [0,0]
|
|
38
|
+
length = getFromDirectory(sources, currentP)
|
|
39
|
+
currentP.pop()
|
|
40
|
+
if not length or length == 0:
|
|
41
|
+
return None
|
|
42
|
+
code = ""
|
|
43
|
+
for i in range(1,int(length)+1):
|
|
44
|
+
currentP.append(i)
|
|
45
|
+
code += getFromDirectory(sources, currentP)
|
|
46
|
+
code += "\r\n"
|
|
47
|
+
currentP.pop()
|
|
48
|
+
return code
|
|
49
|
+
|
|
50
|
+
def getCodeFromBinary(name):
|
|
51
|
+
length = binaries.get([name],0)
|
|
52
|
+
if (length < 1):
|
|
53
|
+
return None
|
|
54
|
+
codeBytes = binaries.getAsBytes([name,1])
|
|
55
|
+
for i in range(1,int(length)):
|
|
56
|
+
codeBytes += binaries.getAsBytes([name,i+1])
|
|
57
|
+
return marshal.loads(codeBytes)
|
|
58
|
+
|
|
59
|
+
# def checkCode(directory, path):
|
|
60
|
+
# currentP = [p for p in path] + [0,0]
|
|
61
|
+
# length = getFromDirectory(directory, currentP)
|
|
62
|
+
# currentP.pop()
|
|
63
|
+
# if not length or length == 0:
|
|
64
|
+
# return None
|
|
65
|
+
# return length
|
|
66
|
+
|
|
67
|
+
def checkCode(name):
|
|
68
|
+
#code exist for module
|
|
69
|
+
|
|
70
|
+
if binaries.get([name],0) > 0:
|
|
71
|
+
return True
|
|
72
|
+
sub = binaries.order([name+"."])
|
|
73
|
+
#there exists some subpackage
|
|
74
|
+
if (sub and sub[:len(name)] == name):
|
|
75
|
+
return True
|
|
76
|
+
return False
|
|
77
|
+
|
|
78
|
+
def compileCode(name):
|
|
79
|
+
path = name.split(".")
|
|
80
|
+
classname = path[-1]
|
|
81
|
+
code = getSourceCode(name+".py")
|
|
82
|
+
if code:
|
|
83
|
+
codeobj = compile(code,classname,"exec")
|
|
84
|
+
compiledpython = marshal.dumps(codeobj)
|
|
85
|
+
|
|
86
|
+
#store in database
|
|
87
|
+
length=len(compiledpython)
|
|
88
|
+
chunks = math.ceil(length / MAX_STRING_SIZE)
|
|
89
|
+
binaries[name] = chunks
|
|
90
|
+
for i in range(chunks):
|
|
91
|
+
binaries[name,i+1] = compiledpython[i*MAX_STRING_SIZE:min(MAX_STRING_SIZE*(i+1),length)]
|
|
92
|
+
|
|
93
|
+
#delete old version of this module
|
|
94
|
+
# if name in sys.modules:
|
|
95
|
+
# del sys.modules[name]
|
|
96
|
+
return 1
|
|
97
|
+
return 0
|
|
98
|
+
|
|
99
|
+
#
|
|
100
|
+
# Impedence matcher prototype
|
|
101
|
+
#
|
|
102
|
+
|
|
103
|
+
def mapping_GetAt(self,key):
|
|
104
|
+
return self[key]
|
|
105
|
+
|
|
106
|
+
def mapping_SetAt(self,value,key):
|
|
107
|
+
self[key] = value
|
|
108
|
+
|
|
109
|
+
def sequence_GetAt(self,index):
|
|
110
|
+
return self[index-1]
|
|
111
|
+
|
|
112
|
+
def sequence_SetAt(self,value,index):
|
|
113
|
+
self[index-1] = value
|
|
114
|
+
|
|
115
|
+
def materialize(obj):
|
|
116
|
+
if isinstance(obj,collections.abc.Mapping):
|
|
117
|
+
obj.Count = obj.__len__
|
|
118
|
+
obj.GetAt = mapping_GetAt
|
|
119
|
+
obj.SetAt = mapping_SetAt
|
|
120
|
+
return True
|
|
121
|
+
if isinstance(obj,collections.abc.Sequence):
|
|
122
|
+
obj.Count = obj.__len__
|
|
123
|
+
obj.GetAt = sequence_GetAt
|
|
124
|
+
obj.SetAt = sequence_SetAt
|
|
125
|
+
return True
|
|
126
|
+
return False
|
|
127
|
+
|
|
128
|
+
class MyLoader(Loader):
|
|
129
|
+
def create_module(self,spec):
|
|
130
|
+
|
|
131
|
+
module = ModuleType(spec.name)
|
|
132
|
+
module.__spec__=spec
|
|
133
|
+
module.__loader__ = self
|
|
134
|
+
module.__path__ = spec.__path__
|
|
135
|
+
return module
|
|
136
|
+
|
|
137
|
+
def exec_module(self, module):
|
|
138
|
+
#path = [p+".py" for p in module.__path__]
|
|
139
|
+
name = ""
|
|
140
|
+
code = None
|
|
141
|
+
for n in module.__path__:
|
|
142
|
+
name += n
|
|
143
|
+
name += "."
|
|
144
|
+
if name:
|
|
145
|
+
code = getCodeFromBinary(name[:len(name)-1])
|
|
146
|
+
|
|
147
|
+
#this is a class or has code by itself
|
|
148
|
+
if code:
|
|
149
|
+
#print(marshal.loads(bytes(code,"utf-8")))
|
|
150
|
+
#print(type(code))
|
|
151
|
+
exec(code,module.__dict__)
|
|
152
|
+
#this is a module
|
|
153
|
+
# ismodule = getFromDirectory(path+["catalog"])
|
|
154
|
+
# if ismodule:
|
|
155
|
+
# for s in ismodule.split(","):
|
|
156
|
+
# code = getFromDirectory(path+[s])
|
|
157
|
+
# if code:
|
|
158
|
+
# exec(code,module.__dict__)
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
class MyFinder(MetaPathFinder):
|
|
162
|
+
def __init__(self):
|
|
163
|
+
return
|
|
164
|
+
|
|
165
|
+
def find_spec(self,fullname,path,target=None):
|
|
166
|
+
|
|
167
|
+
#print("importing1: "+fullname)
|
|
168
|
+
ans = fullname.split(".")
|
|
169
|
+
currentName=ans[-1]
|
|
170
|
+
for i in range(len(ans)):
|
|
171
|
+
ans[i] += ".py"
|
|
172
|
+
#validate existance from globals
|
|
173
|
+
#this might be wrong
|
|
174
|
+
if not checkCode(fullname):
|
|
175
|
+
return None
|
|
176
|
+
spec = importlib.machinery.ModuleSpec(fullname, MyLoader())
|
|
177
|
+
#update path
|
|
178
|
+
if path:
|
|
179
|
+
spec.__path__ = path + [currentName]
|
|
180
|
+
else:
|
|
181
|
+
spec.__path__ = [currentName]
|
|
182
|
+
# set parent
|
|
183
|
+
if len(ans) == 1:
|
|
184
|
+
if path:
|
|
185
|
+
spec.__parent__=path[-1]
|
|
186
|
+
else:
|
|
187
|
+
spec.__parent__= None
|
|
188
|
+
else:
|
|
189
|
+
spec.__parent__=ans[-1]
|
|
190
|
+
|
|
191
|
+
return spec
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
sys.meta_path.append(MyFinder())
|
|
195
|
+
#del sys
|
|
196
|
+
#test:
|
|
197
|
+
#s imp = ##class(%SYS.Python).Import("customImport")
|
|
198
|
+
#s xx = ##class(%SYS.Python).Import("User")
|
|
199
|
+
|
{iris_pex_embedded_python-2.3.16.dist-info → iris_pex_embedded_python-2.3.18.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: iris-pex-embedded-python
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.18
|
|
4
4
|
Summary: iris_pex_embedded_python
|
|
5
5
|
Home-page: https://github.com/grongierisc/interoperability-embedded-python
|
|
6
6
|
Author: grongier
|
|
@@ -21,9 +21,8 @@ Classifier: Topic :: Utilities
|
|
|
21
21
|
Requires-Python: >=3.6
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
License-File: LICENSE
|
|
24
|
-
Requires-Dist: dacite >=1.6.0
|
|
25
|
-
Requires-Dist: xmltodict >=0.12.0
|
|
26
|
-
Requires-Dist: irissqlcli
|
|
24
|
+
Requires-Dist: dacite (>=1.6.0)
|
|
25
|
+
Requires-Dist: xmltodict (>=0.12.0)
|
|
27
26
|
|
|
28
27
|
# 1. interoperability-embedded-python
|
|
29
28
|
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
grongier/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
grongier/cls/Grongier/PEX/BusinessOperation.cls,sha256=qvLahHnQPAKMrGCekQNXPJgKPvlCWH5nJa0eYvceGvQ,932
|
|
3
|
+
grongier/cls/Grongier/PEX/BusinessProcess.cls,sha256=qnYVrS_ndjPHcXIms2G1yOeUegHP09RhBqUAh4dGWcM,2633
|
|
4
|
+
grongier/cls/Grongier/PEX/BusinessService.cls,sha256=2FXGkJ29zU3m-BcMVJTqD9skG9o7GvcHw60DAx4Fj3s,1039
|
|
5
|
+
grongier/cls/Grongier/PEX/Common.cls,sha256=-b19FFB3ABDGKjP75j5XmlbTxdaBe6uEb03OL2pGPeY,3745
|
|
6
|
+
grongier/cls/Grongier/PEX/Director.cls,sha256=wImRl1P37_A-Om8ahl2hfl92hxicqKnKAqzHOE4L8wg,1894
|
|
7
|
+
grongier/cls/Grongier/PEX/InboundAdapter.cls,sha256=j-6tQPzo3tWTq7HJNxDR-4cK3VGVG0o3zgzD5LzIa74,628
|
|
8
|
+
grongier/cls/Grongier/PEX/Message.cls,sha256=tM5gkSdoCdssxAcX6mV4e3BoVgYBmNnNUsmAH_d-cHc,8227
|
|
9
|
+
grongier/cls/Grongier/PEX/OutboundAdapter.cls,sha256=75AquKo4iZ7Hzzo2nVrh1Z4CnS8x-qPO-Q1HpgUZRQw,976
|
|
10
|
+
grongier/cls/Grongier/PEX/PickleMessage.cls,sha256=M8Q5-BHddj6gnURYAGTlaNPB-o1JByycBrCKbpqfDLE,1691
|
|
11
|
+
grongier/cls/Grongier/PEX/Test.cls,sha256=97xsKrV0KuaE-2V_vUsDLdV0VNCGp2BXKWSkuAjp628,1622
|
|
12
|
+
grongier/cls/Grongier/PEX/Utils.cls,sha256=BxeQ8dza6QzSEDezVvPBNM6NyG0K8xqN5jNNGcIXl6g,13874
|
|
13
|
+
grongier/cls/Grongier/PEX/Duplex/Operation.cls,sha256=bt6j7ZdhFyYfQAhNZEWoHtIYoOgOWqCb5s6VmlJjc4E,543
|
|
14
|
+
grongier/cls/Grongier/PEX/Duplex/Process.cls,sha256=sLoYjHJHYNBx2kpEijvkIH1ZgMmUD_Pr7aUiguloxEs,7103
|
|
15
|
+
grongier/cls/Grongier/PEX/Duplex/Service.cls,sha256=omgn16L2XfagAN8iZXXrlyNToRe5Af-kMBnjMzMigdo,179
|
|
16
|
+
grongier/cls/Grongier/PEX/PrivateSession/Duplex.cls,sha256=w5Lx9gXKrOs4QOBJ7_eet5vWdpHMegddL5j43EaZwEE,8065
|
|
17
|
+
grongier/cls/Grongier/PEX/PrivateSession/Message/Ack.cls,sha256=WbBn7pWj5mzruVfLpOAwzTW4JG44qDKHOSJq82_UgTc,986
|
|
18
|
+
grongier/cls/Grongier/PEX/PrivateSession/Message/Poll.cls,sha256=2lj-e20AH7RR8UgGJaldrk-1kd8WjQJNPiH-duds_4A,987
|
|
19
|
+
grongier/cls/Grongier/PEX/PrivateSession/Message/Start.cls,sha256=DAtq4DyRqFq2_4Isa0cZjjwuAzdHjsQu8wMppK4myzs,994
|
|
20
|
+
grongier/cls/Grongier/PEX/PrivateSession/Message/Stop.cls,sha256=ofVKjrN6UPFasalrjPFWYNwlJ5IBlAE62IH8_U07c0g,1435
|
|
21
|
+
grongier/cls/Grongier/Service/WSGI.cls,sha256=X_yM4oxTBOfIOzsCGnvutIuqCAfg7hd6Oqfl-Kq3TjM,2979
|
|
22
|
+
grongier/iris/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
+
grongier/iris/Grongier/PEX/BusinessOperation.cls,sha256=caMn6qSn9TV8ZCwhg5Tax4fIhktkefar-dZ5Xh9T978,929
|
|
24
|
+
grongier/iris/Grongier/PEX/BusinessProcess.cls,sha256=Mm9c6sZ-Tww4RNsqHfKhxk-yjdy-gGBN1RcmweMvHAQ,2615
|
|
25
|
+
grongier/iris/Grongier/PEX/BusinessService.cls,sha256=asW1PvIHfrlNe22ztlOikPrUxvzhylnCSUrU50F7iEY,1036
|
|
26
|
+
grongier/iris/Grongier/PEX/Common.cls,sha256=Q6hVlFM35WbS_ZFkLtBwVw5DbxKDXZaQ_DwXXQfTqgY,3282
|
|
27
|
+
grongier/iris/Grongier/PEX/Director.cls,sha256=tPq5YvaMamVDL5ow2VFuQQM_URUeRhLWmz1hlShaCkI,535
|
|
28
|
+
grongier/iris/Grongier/PEX/InboundAdapter.cls,sha256=j-6tQPzo3tWTq7HJNxDR-4cK3VGVG0o3zgzD5LzIa74,628
|
|
29
|
+
grongier/iris/Grongier/PEX/Message.cls,sha256=dcwmyFEM60rNpq0tIx7hcr6eyTyCgxGlaMzHxNGQYY4,8224
|
|
30
|
+
grongier/iris/Grongier/PEX/OutboundAdapter.cls,sha256=M4axUcAmH8NCDuigLA-ntIEaAkV4A2B65qAKRmzHFh4,973
|
|
31
|
+
grongier/iris/Grongier/PEX/PickleMessage.cls,sha256=M8Q5-BHddj6gnURYAGTlaNPB-o1JByycBrCKbpqfDLE,1691
|
|
32
|
+
grongier/iris/Grongier/PEX/Python.cls,sha256=X51MIeo2cFzwjDcnxTrj_H3mLt6fRWBSy0bW8ru4sLQ,546
|
|
33
|
+
grongier/iris/Grongier/PEX/Test.cls,sha256=97xsKrV0KuaE-2V_vUsDLdV0VNCGp2BXKWSkuAjp628,1622
|
|
34
|
+
grongier/iris/Grongier/PEX/Utils.cls,sha256=q7UTjvuUUX-pmv-u3afucqB97OQCFvY1rFg5Pkt26p0,12214
|
|
35
|
+
grongier/iris/Grongier/PEX/Duplex/Operation.cls,sha256=GFg6VaJQlSjNeL-og2wMI1odNx35kgjO712o0x9YCwA,540
|
|
36
|
+
grongier/iris/Grongier/PEX/Duplex/Process.cls,sha256=yzZUgTZ1Rw_rV_O8rraypX-VtOq6uuYtoyv_1uNHous,7078
|
|
37
|
+
grongier/iris/Grongier/PEX/Duplex/Service.cls,sha256=omgn16L2XfagAN8iZXXrlyNToRe5Af-kMBnjMzMigdo,179
|
|
38
|
+
grongier/iris/Grongier/PEX/PrivateSession/Duplex.cls,sha256=qvu2huBCFMiaW5Po_Z07Cj90-cQdXTLXSLjASji6-ZY,8046
|
|
39
|
+
grongier/iris/Grongier/PEX/PrivateSession/Message/Ack.cls,sha256=WbBn7pWj5mzruVfLpOAwzTW4JG44qDKHOSJq82_UgTc,986
|
|
40
|
+
grongier/iris/Grongier/PEX/PrivateSession/Message/Poll.cls,sha256=2lj-e20AH7RR8UgGJaldrk-1kd8WjQJNPiH-duds_4A,987
|
|
41
|
+
grongier/iris/Grongier/PEX/PrivateSession/Message/Start.cls,sha256=DAtq4DyRqFq2_4Isa0cZjjwuAzdHjsQu8wMppK4myzs,994
|
|
42
|
+
grongier/iris/Grongier/PEX/PrivateSession/Message/Stop.cls,sha256=ofVKjrN6UPFasalrjPFWYNwlJ5IBlAE62IH8_U07c0g,1435
|
|
43
|
+
grongier/pex/__init__.py,sha256=nvcmRCxLy-lpL5GzlCKrmsSK8LF8Q0aKddx6ib8U50E,1166
|
|
44
|
+
grongier/pex/__main__.py,sha256=ebEYPDOBKiXOlmdI4onpQLzfBKU4wyfijYyquA5dWV4,107
|
|
45
|
+
grongier/pex/_business_host.py,sha256=DB8dGQUEzcWaVzE4lbydt97uZqrkG1UbYIHgBD7UNq4,18190
|
|
46
|
+
grongier/pex/_business_operation.py,sha256=W_B9Ci1fei8SGcElkAd13gV9S4BNKeQciTMVqxxJVZc,3509
|
|
47
|
+
grongier/pex/_business_process.py,sha256=WtO1RCZUKykaxUFocI1XmZmnSQzEOz_VFsVFytsOzFE,11838
|
|
48
|
+
grongier/pex/_business_service.py,sha256=8CgpjcdVmv5747CTa3Lw3B48RYXq2SQN9qfdxvqEI5g,3735
|
|
49
|
+
grongier/pex/_cli.py,sha256=NcMA3sXMDYA2NnGG0LB9Eww14aEmQbu0jQywWJZGD7E,6297
|
|
50
|
+
grongier/pex/_common.py,sha256=yiJ-sH4ml5u9qEnZFX_4F-Rn2X6shtMhceJA9RCMChI,15158
|
|
51
|
+
grongier/pex/_director.py,sha256=q9_4-a9YcZ2m_HVTQABe4TqjEoQdu328wetQGlcbt1s,11077
|
|
52
|
+
grongier/pex/_inbound_adapter.py,sha256=aQqRfyw69Iz6AaYzeTAbC_ERDvKadY3tSSC1LJCUVQg,1661
|
|
53
|
+
grongier/pex/_message.py,sha256=BmwBXriykU66bwAgRbdkMpjfJRVWoNRX2eDc9TXfXzA,325
|
|
54
|
+
grongier/pex/_outbound_adapter.py,sha256=HOxTSGwgQVDXzYpSMArLEmipPNYLxOCFaiN51MelFNA,735
|
|
55
|
+
grongier/pex/_pickle_message.py,sha256=noKfc2VkXufV3fqjKvNHN_oANQ1YN9ffCaSV0XSTAIE,331
|
|
56
|
+
grongier/pex/_private_session_duplex.py,sha256=Qj_xzwwFnFVwi_Sl7Q7nKk4zmL6UC8iqBAuwnz7mVX8,5033
|
|
57
|
+
grongier/pex/_private_session_process.py,sha256=_2r_csWcVRLmIUt4O0Y1Hg1FcX6A08lt9DvALQhwu8s,1722
|
|
58
|
+
grongier/pex/_utils.py,sha256=GjHT5WolQAoeYkhHP3a0uDBlRzPIkyGG_bi-TwrMdjI,15877
|
|
59
|
+
grongier/pex/data/PEX/BusinessOperation.cls,sha256=qvLahHnQPAKMrGCekQNXPJgKPvlCWH5nJa0eYvceGvQ,932
|
|
60
|
+
grongier/pex/data/PEX/BusinessProcess.cls,sha256=qnYVrS_ndjPHcXIms2G1yOeUegHP09RhBqUAh4dGWcM,2633
|
|
61
|
+
grongier/pex/data/PEX/BusinessService.cls,sha256=2FXGkJ29zU3m-BcMVJTqD9skG9o7GvcHw60DAx4Fj3s,1039
|
|
62
|
+
grongier/pex/data/PEX/Common.cls,sha256=N1tioRUfh7fZqw7OqZul7vlpaHC9lXIQtczogmwtXFM,3538
|
|
63
|
+
grongier/pex/data/PEX/Director.cls,sha256=wImRl1P37_A-Om8ahl2hfl92hxicqKnKAqzHOE4L8wg,1894
|
|
64
|
+
grongier/pex/data/PEX/InboundAdapter.cls,sha256=j-6tQPzo3tWTq7HJNxDR-4cK3VGVG0o3zgzD5LzIa74,628
|
|
65
|
+
grongier/pex/data/PEX/Message.cls,sha256=tM5gkSdoCdssxAcX6mV4e3BoVgYBmNnNUsmAH_d-cHc,8227
|
|
66
|
+
grongier/pex/data/PEX/OutboundAdapter.cls,sha256=75AquKo4iZ7Hzzo2nVrh1Z4CnS8x-qPO-Q1HpgUZRQw,976
|
|
67
|
+
grongier/pex/data/PEX/PickleMessage.cls,sha256=M8Q5-BHddj6gnURYAGTlaNPB-o1JByycBrCKbpqfDLE,1691
|
|
68
|
+
grongier/pex/data/PEX/Test.cls,sha256=97xsKrV0KuaE-2V_vUsDLdV0VNCGp2BXKWSkuAjp628,1622
|
|
69
|
+
grongier/pex/data/PEX/Utils.cls,sha256=76yP4lu4A37OCerX16CgOhjVo2pLTNrQhII8xJdtnT0,15854
|
|
70
|
+
grongier/pex/data/PEX/Duplex/Operation.cls,sha256=bt6j7ZdhFyYfQAhNZEWoHtIYoOgOWqCb5s6VmlJjc4E,543
|
|
71
|
+
grongier/pex/data/PEX/Duplex/Process.cls,sha256=sLoYjHJHYNBx2kpEijvkIH1ZgMmUD_Pr7aUiguloxEs,7103
|
|
72
|
+
grongier/pex/data/PEX/Duplex/Service.cls,sha256=omgn16L2XfagAN8iZXXrlyNToRe5Af-kMBnjMzMigdo,179
|
|
73
|
+
grongier/pex/data/PEX/PrivateSession/Duplex.cls,sha256=w5Lx9gXKrOs4QOBJ7_eet5vWdpHMegddL5j43EaZwEE,8065
|
|
74
|
+
grongier/pex/data/PEX/PrivateSession/Message/Ack.cls,sha256=WbBn7pWj5mzruVfLpOAwzTW4JG44qDKHOSJq82_UgTc,986
|
|
75
|
+
grongier/pex/data/PEX/PrivateSession/Message/Poll.cls,sha256=2lj-e20AH7RR8UgGJaldrk-1kd8WjQJNPiH-duds_4A,987
|
|
76
|
+
grongier/pex/data/PEX/PrivateSession/Message/Start.cls,sha256=DAtq4DyRqFq2_4Isa0cZjjwuAzdHjsQu8wMppK4myzs,994
|
|
77
|
+
grongier/pex/data/PEX/PrivateSession/Message/Stop.cls,sha256=ofVKjrN6UPFasalrjPFWYNwlJ5IBlAE62IH8_U07c0g,1435
|
|
78
|
+
intersystems_iris/_BufferReader.py,sha256=BXjHQs-sclAnvW9mvdlIrtku9m2Jf67Rc5rsZll7a5g,299
|
|
79
|
+
intersystems_iris/_BufferWriter.py,sha256=i2BKM99J8pB5fGn-Gjdo4vcwXPEZQymsLEQd69nJrhs,1337
|
|
80
|
+
intersystems_iris/_ConnectionInformation.py,sha256=Xr6sOPy3uKFyOG05hTmutDHTNjHDhCnCVwH0TTNEwBE,1896
|
|
81
|
+
intersystems_iris/_ConnectionParameters.py,sha256=5-VwMJP_6Ya0lNnMf0UuwJQQfwHcozjknnUekMwCgQ4,578
|
|
82
|
+
intersystems_iris/_Constant.py,sha256=g2NdV669sNH4kUoAjQFNq2xWaEMQiPMoQytNNrrXOnk,1483
|
|
83
|
+
intersystems_iris/_DBList.py,sha256=dXg08f87nWduVaClhFOAw_cc0ue_Q9pbaPkbtPVjSlY,20104
|
|
84
|
+
intersystems_iris/_Device.py,sha256=02rNhk32bLrcOdGDOsRHuX79-MLblGvAdBa-XfHtVkw,2311
|
|
85
|
+
intersystems_iris/_GatewayContext.py,sha256=anipv7v5rDS2Ha2MmXTuMtFjo6UNgzUF3SwKQSS-co8,618
|
|
86
|
+
intersystems_iris/_GatewayException.py,sha256=Hs5en7W1mhtt2heuoeyhF5IqFKGqbRD5GWyWZUhwDzs,96
|
|
87
|
+
intersystems_iris/_GatewayUtility.py,sha256=gJTslU_UZBI8bWPTPe6b41DwhaAmlpzUNYT0LkAKXKk,2735
|
|
88
|
+
intersystems_iris/_IRIS.py,sha256=vlxyMtfvyTkHHw5CkfNYqNbR1zUdAknfbLVTGxEOv3E,49548
|
|
89
|
+
intersystems_iris/_IRISConnection.py,sha256=MmPIQJPZ28HoSYafvf4r5cbenzDiHmZhKgZXVfSxnCw,21467
|
|
90
|
+
intersystems_iris/_IRISEmbedded.py,sha256=27oB-o53b1w3gbXNxyT6Z1DGWd9gc4x1h3Nz9luOhN4,2614
|
|
91
|
+
intersystems_iris/_IRISGlobalNode.py,sha256=o2MEvyRmNrvLAR0dpeQ76r9b8Yw2sKDaaRLFyGYdcDQ,12049
|
|
92
|
+
intersystems_iris/_IRISGlobalNodeView.py,sha256=0yw9z_mpSLk2m3we5z_vKSjnEdmKfZb11bbASZiiSm8,797
|
|
93
|
+
intersystems_iris/_IRISIterator.py,sha256=m1n_fRdoO8YPfDi7l-JvJTqdJuxq_kxC60aMxkxLJUE,6906
|
|
94
|
+
intersystems_iris/_IRISList.py,sha256=G_gMRqoP5DNiKwJYa6effkrKCwmFjxFTiEB104cdzow,10247
|
|
95
|
+
intersystems_iris/_IRISNative.py,sha256=aNMLADSzRwuKXomwrbB7AC6KaR6-R9fHYStAJLv0V9E,6756
|
|
96
|
+
intersystems_iris/_IRISOREF.py,sha256=WRRJV-_9QlOrzc_8gG6sfItfks4JdQy3N0aCcYXdpkQ,82
|
|
97
|
+
intersystems_iris/_IRISObject.py,sha256=ZjdpQdy-NP0sXFdxQix58dW7kCo4ck-L9AKo9xRRoPU,14456
|
|
98
|
+
intersystems_iris/_IRISReference.py,sha256=pkDAYgxkOmDf8fpRpQf8w-12EYZ1lgqXmkRYuYQXvIo,4905
|
|
99
|
+
intersystems_iris/_InStream.py,sha256=6g4HdDoQ0MFub8Yn-Git8DkJNEoyyAtAhrvjkUdDA7I,6643
|
|
100
|
+
intersystems_iris/_LegacyIterator.py,sha256=K1CPMBDWBCwKVqIq9hBJ2q_uMiBnht_OdN66g7ZqXfw,4130
|
|
101
|
+
intersystems_iris/_ListItem.py,sha256=k9m0Q0W3e3WuI5cpB1GSZOR9NkkCT87lgvBwYFMzvic,354
|
|
102
|
+
intersystems_iris/_ListReader.py,sha256=wgK0HC56lI1Wdp9Sr3rax6w8NoR5p2YpklswpNIS5X8,2966
|
|
103
|
+
intersystems_iris/_ListWriter.py,sha256=JGmUkzzWUGbwflb9szpRQU305dWqoGkFMvCMwP8uPkE,5515
|
|
104
|
+
intersystems_iris/_LogFileStream.py,sha256=Dv3S8-zY3b7P4xXx7w0UVGm2vuz7bWTyaOTg6eK0l2s,3797
|
|
105
|
+
intersystems_iris/_MessageHeader.py,sha256=N45Qp25ER7ftGA0BRBxErIpavDF-j4qWv_0kobkAp6U,1662
|
|
106
|
+
intersystems_iris/_OutStream.py,sha256=_I83KPUCv9yBHsaB4QGBeSatypdiMGJxckKdNY1Jzyg,1327
|
|
107
|
+
intersystems_iris/_PrintStream.py,sha256=GNMTk-D1Nlgb6WuTGjEC6O5DRV9bqVg7JN__Gf9GNPM,1963
|
|
108
|
+
intersystems_iris/_PythonGateway.py,sha256=miV92LhCqsuBIRpLix1oqFjl5SCw9Df-GMTD6Z2Mbf0,41638
|
|
109
|
+
intersystems_iris/_SharedMemorySocket.py,sha256=2iUaS1FdJNSCUEaE-VT0O_dxF6NRwqZSxlyLfwhT9_E,4330
|
|
110
|
+
intersystems_iris/__init__.py,sha256=Tk1tD28LwvF6X3yXQsJFLE1Bc-PR3gUJWcX5UnNYOdY,1773
|
|
111
|
+
intersystems_iris/__main__.py,sha256=rCtINTfJcADMAsw1ja-MEO7Q-XekrWthYowzWV8xGIQ,218
|
|
112
|
+
intersystems_iris/dbapi/_Column.py,sha256=VCLHLXs3wuGcUa9w_qy7HBFsuGvhmmI3kGYBagQg59U,2535
|
|
113
|
+
intersystems_iris/dbapi/_DBAPI.py,sha256=GR09iiA59NYfR4bB8YhdEwzZBQgyZaeGjqmmhUtoMJ0,101649
|
|
114
|
+
intersystems_iris/dbapi/_Descriptor.py,sha256=IjyITxvjygDrhpk-0lGhdqQPh91SG6nTb1vi-AqyJNI,1391
|
|
115
|
+
intersystems_iris/dbapi/_IRISStream.py,sha256=dGJntWo4HXgM1nUHZl2hA4xHkBFEU2xkoEplVDFWhnA,2115
|
|
116
|
+
intersystems_iris/dbapi/_Message.py,sha256=jpLG3HZElqp981iNPFW8UNRO3NbHf6poEv6yywX0Ssw,4076
|
|
117
|
+
intersystems_iris/dbapi/_Parameter.py,sha256=PrfQQnfBf1R1M3P9oUrus6T5PROg35A8LO-RRFo6J1I,5202
|
|
118
|
+
intersystems_iris/dbapi/_ParameterCollection.py,sha256=kcgNiGv2nH5AwuA6LlPpM4dWqhSqRyD3VtwqHqDGRGU,5541
|
|
119
|
+
intersystems_iris/dbapi/_ResultSetRow.py,sha256=tNKCv5P8XhP9zzdPpBGiXYHLKOScITTBGSqtui1TAM0,12910
|
|
120
|
+
intersystems_iris/dbapi/_SQLType.py,sha256=IlDacXwQzUMWaJ02Zsu2bUfvUC3-5mBx-m6mE0Yp7ts,557
|
|
121
|
+
intersystems_iris/dbapi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
122
|
+
intersystems_iris/dbapi/preparser/_PreParser.py,sha256=024w-s3n_JNsk_ISC8avJMK3QEZE3hSuD0Nr8arJdZw,78828
|
|
123
|
+
intersystems_iris/dbapi/preparser/_Scanner.py,sha256=xA8rkKsaVba_mAgoXEeliyuMxNKe4vVmmw_klukdf_U,16163
|
|
124
|
+
intersystems_iris/dbapi/preparser/_Token.py,sha256=9ZYrjvYJtMApAR7RtYzp32Hcoo3jB_YpG7ECo7p6QHA,2304
|
|
125
|
+
intersystems_iris/dbapi/preparser/_TokenList.py,sha256=P74kA3DXxi7imt0mea4LPjCCc_gk50zsYLOCWON_JvA,6770
|
|
126
|
+
intersystems_iris/dbapi/preparser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
127
|
+
intersystems_iris/pex/_BusinessHost.py,sha256=arBAUZetLPhJY2on3BK5BJOZXXjLVJ3gr_VvkncbWDs,4370
|
|
128
|
+
intersystems_iris/pex/_BusinessOperation.py,sha256=gEyPF6A04si6UqVUY_75ulYzjMBhe337GTkcbK2OGfA,5241
|
|
129
|
+
intersystems_iris/pex/_BusinessProcess.py,sha256=P5AT-F88-_AIPL4zgCghH5Ngu3Hm_ZwOBr_CCrv7w4g,10774
|
|
130
|
+
intersystems_iris/pex/_BusinessService.py,sha256=7NVCxIdAvT9Bpcd5NPGbq-0xdhLT-TzyAaUMYTnvlVk,5441
|
|
131
|
+
intersystems_iris/pex/_Common.py,sha256=lxvHRxd8bnhCFrbiz98q5hV7o9WrK0EMJyml4T7Ou98,10509
|
|
132
|
+
intersystems_iris/pex/_Director.py,sha256=_mVLMa0OG5E4mjf6TnHHi3Xli7RREo-9l9Pq73B5zCA,1203
|
|
133
|
+
intersystems_iris/pex/_IRISBusinessOperation.py,sha256=z95u6YdR41gsWKbBPJDIyQxogdUcjJIdwlHShaZLahQ,172
|
|
134
|
+
intersystems_iris/pex/_IRISBusinessService.py,sha256=FKZFyJMgZheSDWcv8y7cdkIdY24PEitV2stTIIN972U,585
|
|
135
|
+
intersystems_iris/pex/_IRISInboundAdapter.py,sha256=oHLaJXpXNaU1U5dx3Kum7tOwCyR3FAWethw9iuS8CK4,171
|
|
136
|
+
intersystems_iris/pex/_IRISOutboundAdapter.py,sha256=W0YGTbI4KANzeERmpcy0ZpPYy3pt-v86wiOD9QDQ_zI,522
|
|
137
|
+
intersystems_iris/pex/_InboundAdapter.py,sha256=gZlWl7afumamkj8pNbpLyKFSzhaTAiAXk5mDEiFPnrA,2296
|
|
138
|
+
intersystems_iris/pex/_Message.py,sha256=Ugaa_lsEYke__pI5kdC7phAuyPQ7rxXUcROJL4cUxVQ,320
|
|
139
|
+
intersystems_iris/pex/_OutboundAdapter.py,sha256=ao2Ubbta2DcrQGdzDUD_j1Zsk8bvUfcZNKTZkzPTNBU,1628
|
|
140
|
+
intersystems_iris/pex/__init__.py,sha256=l_I1dpnluWawbFrGMDC0GLHpuHwjbpd-nho8otFX6TE,1379
|
|
141
|
+
iris/__init__.py,sha256=VyBPMqjkad0JPoza38YZbBeLHM7jZUMS90t8KKEIW94,1045
|
|
142
|
+
iris/iris_ipm.py,sha256=Q0jcNItjywlqOPZr0hgdTFSeLPNEmB-tcICOI_cXnaY,790
|
|
143
|
+
iris/iris_site.py,sha256=K05T41T2dEZcoN45sFgIMNNeH2tandxgcJWjVEQzbno,501
|
|
144
|
+
iris/irisbuiltins.py,sha256=0xMYrnTJ8q3WsQ8CXlKHYnfAVTIkO-PXDpdQ_SvHVpI,2687
|
|
145
|
+
iris/irisloader.py,sha256=2ZLM0FlYNStTiZrXuvDcO-V_XZVgmB3R8vesmaqMqYA,4808
|
|
146
|
+
irisnative/_IRISNative.py,sha256=HQ4nBhc8t8_5OtxdMG-kx1aa-T1znf2I8obZOPLOPzg,665
|
|
147
|
+
irisnative/__init__.py,sha256=6YmvBLQSURsCPKaNg7LK-xpo4ipDjrlhKuwdfdNb3Kg,341
|
|
148
|
+
iris_pex_embedded_python-2.3.18.dist-info/LICENSE,sha256=rZSiBFId_sfbJ6RL0GjjPX-InNLkNS9ou7eQsikciI8,1089
|
|
149
|
+
iris_pex_embedded_python-2.3.18.dist-info/METADATA,sha256=qgmU6DQUBf-JkfKS8mnIgyFIzdUsEgLJU3w06Dnumwg,48121
|
|
150
|
+
iris_pex_embedded_python-2.3.18.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
|
151
|
+
iris_pex_embedded_python-2.3.18.dist-info/entry_points.txt,sha256=atkAtHoIuwXcZ0jl5gwof0l__ru_lt8WhVYk6HxYf70,47
|
|
152
|
+
iris_pex_embedded_python-2.3.18.dist-info/top_level.txt,sha256=Tl4ZHgeNefaZW2Oug30vSldhD-tWzixsIfzASBrZ9ps,43
|
|
153
|
+
iris_pex_embedded_python-2.3.18.dist-info/RECORD,,
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import intersystems_iris
|
|
2
|
+
|
|
3
|
+
def createConnection(*args, connectionstr=None, hostname=None, port=None, namespace=None, username=None, password=None, timeout=None, sharedmemory=None, logfile=None):
|
|
4
|
+
'''This method has been deprecated. Please use iris.createConnection(...)'''
|
|
5
|
+
return intersystems_iris.createConnection(*args, connectionstr=connectionstr, hostname=hostname, port=port, namespace=namespace, username=username, password=password, timeout=timeout, sharedmemory=sharedmemory, logfile=logfile)
|
|
6
|
+
|
|
7
|
+
def createIris(connection):
|
|
8
|
+
'''This method has been deprecated. Please use iris.createIRIS(...)'''
|
|
9
|
+
return intersystems_iris.createIRIS(connection)
|
irisnative/__init__.py
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
'''
|
|
2
|
+
irisnative module provided for backwards compatibility only.
|
|
3
|
+
|
|
4
|
+
IRIS Native API for Python.
|
|
5
|
+
|
|
6
|
+
This module provides highly efficient and lightweight access to IRIS, including the Global Module and object oriented programming environment.
|
|
7
|
+
'''
|
|
8
|
+
from irisnative._IRISNative import createConnection
|
|
9
|
+
from irisnative._IRISNative import createIris
|
|
10
|
+
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
grongier/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
grongier/cls/Grongier/PEX/BusinessOperation.cls,sha256=qvLahHnQPAKMrGCekQNXPJgKPvlCWH5nJa0eYvceGvQ,932
|
|
3
|
-
grongier/cls/Grongier/PEX/BusinessProcess.cls,sha256=qnYVrS_ndjPHcXIms2G1yOeUegHP09RhBqUAh4dGWcM,2633
|
|
4
|
-
grongier/cls/Grongier/PEX/BusinessService.cls,sha256=2FXGkJ29zU3m-BcMVJTqD9skG9o7GvcHw60DAx4Fj3s,1039
|
|
5
|
-
grongier/cls/Grongier/PEX/Common.cls,sha256=-b19FFB3ABDGKjP75j5XmlbTxdaBe6uEb03OL2pGPeY,3745
|
|
6
|
-
grongier/cls/Grongier/PEX/Director.cls,sha256=wImRl1P37_A-Om8ahl2hfl92hxicqKnKAqzHOE4L8wg,1894
|
|
7
|
-
grongier/cls/Grongier/PEX/InboundAdapter.cls,sha256=j-6tQPzo3tWTq7HJNxDR-4cK3VGVG0o3zgzD5LzIa74,628
|
|
8
|
-
grongier/cls/Grongier/PEX/Message.cls,sha256=tM5gkSdoCdssxAcX6mV4e3BoVgYBmNnNUsmAH_d-cHc,8227
|
|
9
|
-
grongier/cls/Grongier/PEX/OutboundAdapter.cls,sha256=75AquKo4iZ7Hzzo2nVrh1Z4CnS8x-qPO-Q1HpgUZRQw,976
|
|
10
|
-
grongier/cls/Grongier/PEX/PickleMessage.cls,sha256=M8Q5-BHddj6gnURYAGTlaNPB-o1JByycBrCKbpqfDLE,1691
|
|
11
|
-
grongier/cls/Grongier/PEX/Test.cls,sha256=97xsKrV0KuaE-2V_vUsDLdV0VNCGp2BXKWSkuAjp628,1622
|
|
12
|
-
grongier/cls/Grongier/PEX/Utils.cls,sha256=BxeQ8dza6QzSEDezVvPBNM6NyG0K8xqN5jNNGcIXl6g,13874
|
|
13
|
-
grongier/cls/Grongier/PEX/Duplex/Operation.cls,sha256=bt6j7ZdhFyYfQAhNZEWoHtIYoOgOWqCb5s6VmlJjc4E,543
|
|
14
|
-
grongier/cls/Grongier/PEX/Duplex/Process.cls,sha256=sLoYjHJHYNBx2kpEijvkIH1ZgMmUD_Pr7aUiguloxEs,7103
|
|
15
|
-
grongier/cls/Grongier/PEX/Duplex/Service.cls,sha256=omgn16L2XfagAN8iZXXrlyNToRe5Af-kMBnjMzMigdo,179
|
|
16
|
-
grongier/cls/Grongier/PEX/PrivateSession/Duplex.cls,sha256=w5Lx9gXKrOs4QOBJ7_eet5vWdpHMegddL5j43EaZwEE,8065
|
|
17
|
-
grongier/cls/Grongier/PEX/PrivateSession/Message/Ack.cls,sha256=WbBn7pWj5mzruVfLpOAwzTW4JG44qDKHOSJq82_UgTc,986
|
|
18
|
-
grongier/cls/Grongier/PEX/PrivateSession/Message/Poll.cls,sha256=2lj-e20AH7RR8UgGJaldrk-1kd8WjQJNPiH-duds_4A,987
|
|
19
|
-
grongier/cls/Grongier/PEX/PrivateSession/Message/Start.cls,sha256=DAtq4DyRqFq2_4Isa0cZjjwuAzdHjsQu8wMppK4myzs,994
|
|
20
|
-
grongier/cls/Grongier/PEX/PrivateSession/Message/Stop.cls,sha256=ofVKjrN6UPFasalrjPFWYNwlJ5IBlAE62IH8_U07c0g,1435
|
|
21
|
-
grongier/cls/Grongier/Service/WSGI.cls,sha256=X_yM4oxTBOfIOzsCGnvutIuqCAfg7hd6Oqfl-Kq3TjM,2979
|
|
22
|
-
grongier/pex/__init__.py,sha256=nvcmRCxLy-lpL5GzlCKrmsSK8LF8Q0aKddx6ib8U50E,1166
|
|
23
|
-
grongier/pex/__main__.py,sha256=ebEYPDOBKiXOlmdI4onpQLzfBKU4wyfijYyquA5dWV4,107
|
|
24
|
-
grongier/pex/_business_host.py,sha256=a3sAXvX9h_SMYTDJPTGHXxalHrsD10i5Z8PO107htkU,17804
|
|
25
|
-
grongier/pex/_business_operation.py,sha256=W_B9Ci1fei8SGcElkAd13gV9S4BNKeQciTMVqxxJVZc,3509
|
|
26
|
-
grongier/pex/_business_process.py,sha256=WtO1RCZUKykaxUFocI1XmZmnSQzEOz_VFsVFytsOzFE,11838
|
|
27
|
-
grongier/pex/_business_service.py,sha256=8CgpjcdVmv5747CTa3Lw3B48RYXq2SQN9qfdxvqEI5g,3735
|
|
28
|
-
grongier/pex/_cli.py,sha256=QUqZNyU6RQTpqleqb837cWZ3qyA3ILjDWZpk7f9CGDc,6040
|
|
29
|
-
grongier/pex/_common.py,sha256=yiJ-sH4ml5u9qEnZFX_4F-Rn2X6shtMhceJA9RCMChI,15158
|
|
30
|
-
grongier/pex/_director.py,sha256=q9_4-a9YcZ2m_HVTQABe4TqjEoQdu328wetQGlcbt1s,11077
|
|
31
|
-
grongier/pex/_inbound_adapter.py,sha256=aQqRfyw69Iz6AaYzeTAbC_ERDvKadY3tSSC1LJCUVQg,1661
|
|
32
|
-
grongier/pex/_message.py,sha256=BmwBXriykU66bwAgRbdkMpjfJRVWoNRX2eDc9TXfXzA,325
|
|
33
|
-
grongier/pex/_outbound_adapter.py,sha256=HOxTSGwgQVDXzYpSMArLEmipPNYLxOCFaiN51MelFNA,735
|
|
34
|
-
grongier/pex/_pickle_message.py,sha256=noKfc2VkXufV3fqjKvNHN_oANQ1YN9ffCaSV0XSTAIE,331
|
|
35
|
-
grongier/pex/_private_session_duplex.py,sha256=Qj_xzwwFnFVwi_Sl7Q7nKk4zmL6UC8iqBAuwnz7mVX8,5033
|
|
36
|
-
grongier/pex/_private_session_process.py,sha256=_2r_csWcVRLmIUt4O0Y1Hg1FcX6A08lt9DvALQhwu8s,1722
|
|
37
|
-
grongier/pex/_utils.py,sha256=GjHT5WolQAoeYkhHP3a0uDBlRzPIkyGG_bi-TwrMdjI,15877
|
|
38
|
-
iris_pex_embedded_python-2.3.16.dist-info/LICENSE,sha256=rZSiBFId_sfbJ6RL0GjjPX-InNLkNS9ou7eQsikciI8,1089
|
|
39
|
-
iris_pex_embedded_python-2.3.16.dist-info/METADATA,sha256=RCYq7XmTbEtGzOnP7YxI0YzRBO3jNCIx3MlkoGnCag8,48143
|
|
40
|
-
iris_pex_embedded_python-2.3.16.dist-info/WHEEL,sha256=Xo9-1PvkuimrydujYJAjF7pCkriuXBpUPEjma1nZyJ0,92
|
|
41
|
-
iris_pex_embedded_python-2.3.16.dist-info/entry_points.txt,sha256=atkAtHoIuwXcZ0jl5gwof0l__ru_lt8WhVYk6HxYf70,47
|
|
42
|
-
iris_pex_embedded_python-2.3.16.dist-info/top_level.txt,sha256=IHTNyQ_h3DSfdFPl6yKfe3Flu-EfpykyfJi7jo-O6Vs,9
|
|
43
|
-
iris_pex_embedded_python-2.3.16.dist-info/RECORD,,
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
grongier
|
{iris_pex_embedded_python-2.3.16.dist-info → iris_pex_embedded_python-2.3.18.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|