iris-pex-embedded-python 3.1.4b1__py3-none-any.whl → 3.1.5__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.

Files changed (81) hide show
  1. intersystems_iris/_BufferReader.py +10 -0
  2. intersystems_iris/_BufferWriter.py +32 -0
  3. intersystems_iris/_ConnectionInformation.py +56 -0
  4. intersystems_iris/_ConnectionParameters.py +18 -0
  5. intersystems_iris/_Constant.py +38 -0
  6. intersystems_iris/_DBList.py +506 -0
  7. intersystems_iris/_Device.py +69 -0
  8. intersystems_iris/_GatewayContext.py +25 -0
  9. intersystems_iris/_GatewayException.py +4 -0
  10. intersystems_iris/_GatewayUtility.py +74 -0
  11. intersystems_iris/_IRIS.py +1294 -0
  12. intersystems_iris/_IRISConnection.py +516 -0
  13. intersystems_iris/_IRISEmbedded.py +85 -0
  14. intersystems_iris/_IRISGlobalNode.py +273 -0
  15. intersystems_iris/_IRISGlobalNodeView.py +25 -0
  16. intersystems_iris/_IRISIterator.py +143 -0
  17. intersystems_iris/_IRISList.py +360 -0
  18. intersystems_iris/_IRISNative.py +208 -0
  19. intersystems_iris/_IRISOREF.py +9 -0
  20. intersystems_iris/_IRISObject.py +424 -0
  21. intersystems_iris/_IRISReference.py +133 -0
  22. intersystems_iris/_InStream.py +149 -0
  23. intersystems_iris/_LegacyIterator.py +135 -0
  24. intersystems_iris/_ListItem.py +15 -0
  25. intersystems_iris/_ListReader.py +84 -0
  26. intersystems_iris/_ListWriter.py +161 -0
  27. intersystems_iris/_LogFileStream.py +115 -0
  28. intersystems_iris/_MessageHeader.py +51 -0
  29. intersystems_iris/_OutStream.py +25 -0
  30. intersystems_iris/_PrintStream.py +65 -0
  31. intersystems_iris/_PythonGateway.py +850 -0
  32. intersystems_iris/_SharedMemorySocket.py +87 -0
  33. intersystems_iris/__init__.py +79 -0
  34. intersystems_iris/__main__.py +7 -0
  35. intersystems_iris/dbapi/_Column.py +56 -0
  36. intersystems_iris/dbapi/_DBAPI.py +2631 -0
  37. intersystems_iris/dbapi/_Descriptor.py +46 -0
  38. intersystems_iris/dbapi/_IRISStream.py +65 -0
  39. intersystems_iris/dbapi/_Message.py +158 -0
  40. intersystems_iris/dbapi/_Parameter.py +171 -0
  41. intersystems_iris/dbapi/_ParameterCollection.py +141 -0
  42. intersystems_iris/dbapi/_ResultSetRow.py +361 -0
  43. intersystems_iris/dbapi/_SQLType.py +32 -0
  44. intersystems_iris/dbapi/__init__.py +0 -0
  45. intersystems_iris/dbapi/preparser/_PreParser.py +1674 -0
  46. intersystems_iris/dbapi/preparser/_Scanner.py +391 -0
  47. intersystems_iris/dbapi/preparser/_Token.py +81 -0
  48. intersystems_iris/dbapi/preparser/_TokenList.py +251 -0
  49. intersystems_iris/dbapi/preparser/__init__.py +0 -0
  50. intersystems_iris/pex/_BusinessHost.py +101 -0
  51. intersystems_iris/pex/_BusinessOperation.py +105 -0
  52. intersystems_iris/pex/_BusinessProcess.py +214 -0
  53. intersystems_iris/pex/_BusinessService.py +95 -0
  54. intersystems_iris/pex/_Common.py +228 -0
  55. intersystems_iris/pex/_Director.py +24 -0
  56. intersystems_iris/pex/_IRISBusinessOperation.py +5 -0
  57. intersystems_iris/pex/_IRISBusinessService.py +18 -0
  58. intersystems_iris/pex/_IRISInboundAdapter.py +5 -0
  59. intersystems_iris/pex/_IRISOutboundAdapter.py +17 -0
  60. intersystems_iris/pex/_InboundAdapter.py +57 -0
  61. intersystems_iris/pex/_Message.py +6 -0
  62. intersystems_iris/pex/_OutboundAdapter.py +46 -0
  63. intersystems_iris/pex/__init__.py +25 -0
  64. iop/_business_operation.py +1 -1
  65. iop/_business_service.py +1 -1
  66. iop/_director.py +19 -4
  67. iop/_private_session_duplex.py +2 -1
  68. iop/cls/IOP/Common.cls +7 -1
  69. iop/cls/IOP/Director.cls +4 -1
  70. iop/cls/IOP/Message.cls +12 -14
  71. iris_pex_embedded_python-3.1.5.dist-info/METADATA +88 -0
  72. iris_pex_embedded_python-3.1.5.dist-info/RECORD +137 -0
  73. {iris_pex_embedded_python-3.1.4b1.dist-info → iris_pex_embedded_python-3.1.5.dist-info}/WHEEL +1 -1
  74. iris_pex_embedded_python-3.1.5.dist-info/top_level.txt +4 -0
  75. irisnative/_IRISNative.py +9 -0
  76. irisnative/__init__.py +10 -0
  77. iris_pex_embedded_python-3.1.4b1.dist-info/METADATA +0 -1403
  78. iris_pex_embedded_python-3.1.4b1.dist-info/RECORD +0 -72
  79. iris_pex_embedded_python-3.1.4b1.dist-info/top_level.txt +0 -2
  80. {iris_pex_embedded_python-3.1.4b1.dist-info → iris_pex_embedded_python-3.1.5.dist-info}/LICENSE +0 -0
  81. {iris_pex_embedded_python-3.1.4b1.dist-info → iris_pex_embedded_python-3.1.5.dist-info}/entry_points.txt +0 -0
iop/cls/IOP/Message.cls CHANGED
@@ -1,7 +1,3 @@
1
- /* Copyright (c) 2021 by InterSystems Corporation.
2
- Cambridge, Massachusetts, U.S.A. All rights reserved.
3
- Confidential property of InterSystems Corporation. */
4
-
5
1
  Class IOP.Message Extends (Ens.MessageBody, %CSP.Page, %XML.Adaptor)
6
2
  {
7
3
 
@@ -79,11 +75,16 @@ Method jsonSet(pInput) As %Status
79
75
  , "Stream":..jsonStream
80
76
  , :$$$NULLOREF)
81
77
  Quit:tOldStream=pInput $$$OK
82
- Do:..type'="" Clear() Set i%type=""
78
+
79
+ If ..type'="" {
80
+ Set:(..type="String") i%jsonString=""
81
+ Set:(..type="Stream") i%jsonStream=$$$NULLOREF
82
+ Set i%type = ""
83
+ }
83
84
 
84
85
  If $ISOBJECT(pInput) {
85
86
  if pInput.%Extends("%Stream.GlobalCharacter") {
86
- Set ..jsonStream=pInput, i%type="Stream"
87
+ Set r%jsonStream=pInput, i%type="Stream"
87
88
  }
88
89
  else {
89
90
  Throw ##class(%Exception.General).%New("Invalid input type, must be a %Stream.GlobalCharacter or a %String")
@@ -94,18 +95,15 @@ Method jsonSet(pInput) As %Status
94
95
  // write in a stream
95
96
  Set stream = ##class(%Stream.GlobalCharacter).%New()
96
97
  for i=1:..#BUFFER:$LENGTH(pInput) {
97
- Set sc = stream.Write($EXTRACT(pInput,i,(i+..#BUFFER)))
98
+ Set sc = stream.Write($EXTRACT(pInput,i,(i+..#BUFFER-1)))
98
99
  Quit:$$$ISERR(sc)
99
100
  }
100
- Set ..jsonStream=stream, i%type="Stream"
101
+ Set r%jsonStream=stream, i%type="Stream"
102
+ }
103
+ else {
104
+ Set i%jsonString=pInput, i%type="String"
101
105
  }
102
- Set i%jsonString=pInput, i%type="String"
103
106
  }
104
- Quit $$$OK
105
- Clear()
106
- If ..type="String" { Set r%jsonString="" }
107
- ElseIf ..type="Stream" { Set r%jsonStream=$$$NULLOREF }
108
- Quit
109
107
  }
110
108
 
111
109
  Method GetObjectJson(ByRef atEnd)
@@ -0,0 +1,88 @@
1
+ Metadata-Version: 2.1
2
+ Name: iris_pex_embedded_python
3
+ Version: 3.1.5
4
+ Summary: Iris Interoperability based on Embedded Python
5
+ Author-email: grongier <guillaume.rongier@intersystems.com>
6
+ License: MIT License
7
+
8
+ Copyright (c) 2019 InterSystems Developer Community
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ of this software and associated documentation files (the "Software"), to deal
12
+ in the Software without restriction, including without limitation the rights
13
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ copies of the Software, and to permit persons to whom the Software is
15
+ furnished to do so, subject to the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included in all
18
+ copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ SOFTWARE.
27
+
28
+ Project-URL: homepage, https://github.com/grongierisc/interoperability-embedded-python
29
+ Project-URL: documentation, https://github.com/grongierisc/interoperability-embedded-python/blob/master/README.md
30
+ Project-URL: repository, https://github.com/grongierisc/interoperability-embedded-python
31
+ Project-URL: issues, https://github.com/grongierisc/interoperability-embedded-python/issues
32
+ Keywords: iris,intersystems,python,embedded
33
+ Classifier: Development Status :: 5 - Production/Stable
34
+ Classifier: Intended Audience :: Developers
35
+ Classifier: License :: OSI Approved :: MIT License
36
+ Classifier: Operating System :: OS Independent
37
+ Classifier: Programming Language :: Python :: 3.6
38
+ Classifier: Programming Language :: Python :: 3.7
39
+ Classifier: Programming Language :: Python :: 3.8
40
+ Classifier: Programming Language :: Python :: 3.9
41
+ Classifier: Programming Language :: Python :: 3.10
42
+ Classifier: Programming Language :: Python :: 3.11
43
+ Classifier: Programming Language :: Python :: 3.12
44
+ Classifier: Topic :: Utilities
45
+ Description-Content-Type: text/markdown
46
+ License-File: LICENSE
47
+ Requires-Dist: dacite>=1.6.0
48
+ Requires-Dist: xmltodict>=0.12.0
49
+ Requires-Dist: iris-embedded-python-wrapper>=0.0.6
50
+ Requires-Dist: setuptools>=40.8.0
51
+
52
+ # IoP (Interoperability On Python)
53
+
54
+ [![PyPI - Status](https://img.shields.io/pypi/status/iris-pex-embedded-python)](https://pypi.org/project/iris-pex-embedded-python/)
55
+ [![PyPI](https://img.shields.io/pypi/v/iris-pex-embedded-python)](https://pypi.org/project/iris-pex-embedded-python/)
56
+ [![PyPI - Downloads](https://img.shields.io/pypi/dm/iris-pex-embedded-python)](https://pypi.org/project/iris-pex-embedded-python/)
57
+ [![PyPI - License](https://img.shields.io/pypi/l/iris-pex-embedded-python)](https://pypi.org/project/iris-pex-embedded-python/)
58
+ ![GitHub last commit](https://img.shields.io/github/last-commit/grongierisc/interoperability-embedded-python)
59
+
60
+ Welcome to the **Interoperability On Python (IoP)** proof of concept! This project demonstrates how the **IRIS Interoperability Framework** can be utilized with a **Python-first approach**.
61
+
62
+ Documentation can be found [here](https://grongierisc.github.io/interoperability-embedded-python/).
63
+
64
+ ## Example
65
+
66
+ Here's a simple example of how a Business Operation can be implemented in Python:
67
+
68
+ ```python
69
+ from iop import BusinessOperation
70
+
71
+ class MyBo(BusinessOperation):
72
+ def on_message(self, request):
73
+ self.log_info("Hello World")
74
+ ```
75
+
76
+ ## Installation
77
+
78
+ To start using this proof of concept, install it using pip:
79
+
80
+ ```bash
81
+ pip install iris-pex-embedded-python
82
+ ```
83
+
84
+ ## Getting Started
85
+
86
+ If you're new to this project, begin by reading the [installation guide](https://grongierisc.github.io/interoperability-embedded-python/getting-started/installation.md). Then, follow the [first steps](https://grongierisc.github.io/interoperability-embedded-python/getting-started/first-steps.md) to create your first Business Operation.
87
+
88
+ Happy coding!
@@ -0,0 +1,137 @@
1
+ grongier/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ grongier/cls/Grongier/PEX/BusinessOperation.cls,sha256=FgLLHTU8yHKxZIoz__5rtHW89b-o_Tjjf5i09WIqcJs,291
3
+ grongier/cls/Grongier/PEX/BusinessProcess.cls,sha256=0S7RU0GYafviILGCwkOKk7mQtP1Bvmd01b1dqfLMjDk,341
4
+ grongier/cls/Grongier/PEX/BusinessService.cls,sha256=KEidVN2tnaJ-6QKmPj8--BqlxMOayPM7Z8A42caC5s8,287
5
+ grongier/cls/Grongier/PEX/Common.cls,sha256=_7K83DN_Krj5pSgPpfWmINSA0yAhZkhXLBDmKDgLeBs,292
6
+ grongier/cls/Grongier/PEX/Director.cls,sha256=CMmLEQRbK37zenYZOMkmRa9P6B9xLUdWgm7YLk1yKGg,306
7
+ grongier/cls/Grongier/PEX/InboundAdapter.cls,sha256=4S3gjicQ-yfClO4RgKgu7iJQgQaxfH_a-1NmAeZ6Uv0,285
8
+ grongier/cls/Grongier/PEX/Message.cls,sha256=KzWxhWjDKQMjc6fnUZSrxJ9y6u5i1jAsyj0zbeTCmto,273
9
+ grongier/cls/Grongier/PEX/OutboundAdapter.cls,sha256=6bRIZ2gzufF5uGzf3z0MY460Yl6gKP31yJm8kzttm8g,287
10
+ grongier/cls/Grongier/PEX/PickleMessage.cls,sha256=r4BTEML91d1YmvkL8L209ilSyCPunYE-zJbQIJK_kBw,285
11
+ grongier/cls/Grongier/PEX/Test.cls,sha256=lvCM0hUZEQuawyteeRjucJvDhkRUc2NfGC6n6vV4nrQ,116
12
+ grongier/cls/Grongier/PEX/Utils.cls,sha256=hJtkE_YMz0z7ufocwz98vl1ODHT-NU-Qpl5hyYVu8jo,233
13
+ grongier/cls/Grongier/PEX/Duplex/Operation.cls,sha256=0X9jHVkGqoh-aLTHmXdb9DuWFY6YxEBQ7dNYLCO7cdw,68
14
+ grongier/cls/Grongier/PEX/Duplex/Process.cls,sha256=AQiL_x5tG99tvauMwiPHsU3G6irb1HGSyBnqREXF4AQ,342
15
+ grongier/cls/Grongier/PEX/Duplex/Service.cls,sha256=OEYgYbxNtff_ACW2XGee9NtUht3u6nuC822cx7ng2cA,71
16
+ grongier/cls/Grongier/PEX/PrivateSession/Duplex.cls,sha256=7RUXLw53Tjv_IL8KpWKm4iFlAeSqAELrawJ42iu-AH4,270
17
+ grongier/cls/Grongier/PEX/PrivateSession/Message/Ack.cls,sha256=aKi3EhyQipGKMap19xW27CHEHRKCo9yf8Qk2LsEOwx4,429
18
+ grongier/cls/Grongier/PEX/PrivateSession/Message/Poll.cls,sha256=pcUgHgxX1pMH-wQpE_ow8JGBCgiKmsSmsgNwYgP5eD8,431
19
+ grongier/cls/Grongier/PEX/PrivateSession/Message/Start.cls,sha256=T3jNoR8RjKr1InQ6SgqBYTgFwpSB0Q60WholjbvForg,433
20
+ grongier/cls/Grongier/PEX/PrivateSession/Message/Stop.cls,sha256=zy30ZXXN4XcovPij-kOF3PuH1SkP1EUvlEJQRx2S9RU,431
21
+ grongier/cls/Grongier/Service/WSGI.cls,sha256=7u2SsFmnsubMfdazvaDchKCM3yesPRMfKBzMIkwQ9xc,77
22
+ grongier/pex/__init__.py,sha256=zHFF0Znipx1fwHYUEBZjNOYoZH1ro7z4IgYDU32kdn0,1067
23
+ grongier/pex/__main__.py,sha256=pQzVtkDhAeI6dpNRC632dVk2SGZZIEDwDufdgZe8VWs,98
24
+ grongier/pex/_business_host.py,sha256=dlV8CWJad8Pr2TNfD9OjcVKaq5gEYQACZla1FK6-bDM,44
25
+ grongier/pex/_cli.py,sha256=hOHz3n-aHtULuhdCkqZ_SSb3sv7M6j2WhRxgCTvgR9I,64
26
+ grongier/pex/_common.py,sha256=HZwG2C2-yB8yNN8kXhI6vxg8h-rROuEx38YOVFWIk1s,31
27
+ grongier/pex/_director.py,sha256=pCmoiJ-sxe24yQaDz6ZFBsAnqU6fh57_dlew98B7rtE,35
28
+ grongier/pex/_utils.py,sha256=gvsdr8WhWrE6smlsCxhoF14VUZfitrwqr5J57HkJhi4,29
29
+ grongier/pex/wsgi/handlers.py,sha256=NrFLo_YbAh-x_PlWhAiWkQnUUN2Ss9HoEm63dDWCBpQ,2947
30
+ intersystems_iris/_BufferReader.py,sha256=BXjHQs-sclAnvW9mvdlIrtku9m2Jf67Rc5rsZll7a5g,299
31
+ intersystems_iris/_BufferWriter.py,sha256=i2BKM99J8pB5fGn-Gjdo4vcwXPEZQymsLEQd69nJrhs,1337
32
+ intersystems_iris/_ConnectionInformation.py,sha256=45bPmGaXF3lG6aPClYr6qkdAUrtgDg5kvMbZKkgl_xA,1970
33
+ intersystems_iris/_ConnectionParameters.py,sha256=5-VwMJP_6Ya0lNnMf0UuwJQQfwHcozjknnUekMwCgQ4,578
34
+ intersystems_iris/_Constant.py,sha256=g2NdV669sNH4kUoAjQFNq2xWaEMQiPMoQytNNrrXOnk,1483
35
+ intersystems_iris/_DBList.py,sha256=D0m_N50ZhpUnGwQiPZ1ZPtNecqROZvSnVbP46RY6juA,20340
36
+ intersystems_iris/_Device.py,sha256=02rNhk32bLrcOdGDOsRHuX79-MLblGvAdBa-XfHtVkw,2311
37
+ intersystems_iris/_GatewayContext.py,sha256=anipv7v5rDS2Ha2MmXTuMtFjo6UNgzUF3SwKQSS-co8,618
38
+ intersystems_iris/_GatewayException.py,sha256=Hs5en7W1mhtt2heuoeyhF5IqFKGqbRD5GWyWZUhwDzs,96
39
+ intersystems_iris/_GatewayUtility.py,sha256=gJTslU_UZBI8bWPTPe6b41DwhaAmlpzUNYT0LkAKXKk,2735
40
+ intersystems_iris/_IRIS.py,sha256=vlxyMtfvyTkHHw5CkfNYqNbR1zUdAknfbLVTGxEOv3E,49548
41
+ intersystems_iris/_IRISConnection.py,sha256=MmPIQJPZ28HoSYafvf4r5cbenzDiHmZhKgZXVfSxnCw,21467
42
+ intersystems_iris/_IRISEmbedded.py,sha256=yYL71oLvHjLK_jF8wcyNjXu3ManQ_PpY2wD4GkOfa-E,2503
43
+ intersystems_iris/_IRISGlobalNode.py,sha256=o2MEvyRmNrvLAR0dpeQ76r9b8Yw2sKDaaRLFyGYdcDQ,12049
44
+ intersystems_iris/_IRISGlobalNodeView.py,sha256=0yw9z_mpSLk2m3we5z_vKSjnEdmKfZb11bbASZiiSm8,797
45
+ intersystems_iris/_IRISIterator.py,sha256=m1n_fRdoO8YPfDi7l-JvJTqdJuxq_kxC60aMxkxLJUE,6906
46
+ intersystems_iris/_IRISList.py,sha256=G_gMRqoP5DNiKwJYa6effkrKCwmFjxFTiEB104cdzow,10247
47
+ intersystems_iris/_IRISNative.py,sha256=aNMLADSzRwuKXomwrbB7AC6KaR6-R9fHYStAJLv0V9E,6756
48
+ intersystems_iris/_IRISOREF.py,sha256=tpsD0QeoqfESY-OQY0Nbm3MGD0zekCYFJ7la5TdZMyQ,213
49
+ intersystems_iris/_IRISObject.py,sha256=ZjdpQdy-NP0sXFdxQix58dW7kCo4ck-L9AKo9xRRoPU,14456
50
+ intersystems_iris/_IRISReference.py,sha256=pkDAYgxkOmDf8fpRpQf8w-12EYZ1lgqXmkRYuYQXvIo,4905
51
+ intersystems_iris/_InStream.py,sha256=6g4HdDoQ0MFub8Yn-Git8DkJNEoyyAtAhrvjkUdDA7I,6643
52
+ intersystems_iris/_LegacyIterator.py,sha256=K1CPMBDWBCwKVqIq9hBJ2q_uMiBnht_OdN66g7ZqXfw,4130
53
+ intersystems_iris/_ListItem.py,sha256=k9m0Q0W3e3WuI5cpB1GSZOR9NkkCT87lgvBwYFMzvic,354
54
+ intersystems_iris/_ListReader.py,sha256=wgK0HC56lI1Wdp9Sr3rax6w8NoR5p2YpklswpNIS5X8,2966
55
+ intersystems_iris/_ListWriter.py,sha256=zBQd7Mx3ho0jOd_q4RNAhw1ub1kUXVptwRYMN36OQew,5612
56
+ intersystems_iris/_LogFileStream.py,sha256=Dv3S8-zY3b7P4xXx7w0UVGm2vuz7bWTyaOTg6eK0l2s,3797
57
+ intersystems_iris/_MessageHeader.py,sha256=N45Qp25ER7ftGA0BRBxErIpavDF-j4qWv_0kobkAp6U,1662
58
+ intersystems_iris/_OutStream.py,sha256=_I83KPUCv9yBHsaB4QGBeSatypdiMGJxckKdNY1Jzyg,1327
59
+ intersystems_iris/_PrintStream.py,sha256=GNMTk-D1Nlgb6WuTGjEC6O5DRV9bqVg7JN__Gf9GNPM,1963
60
+ intersystems_iris/_PythonGateway.py,sha256=miV92LhCqsuBIRpLix1oqFjl5SCw9Df-GMTD6Z2Mbf0,41638
61
+ intersystems_iris/_SharedMemorySocket.py,sha256=2iUaS1FdJNSCUEaE-VT0O_dxF6NRwqZSxlyLfwhT9_E,4330
62
+ intersystems_iris/__init__.py,sha256=Tk1tD28LwvF6X3yXQsJFLE1Bc-PR3gUJWcX5UnNYOdY,1773
63
+ intersystems_iris/__main__.py,sha256=rCtINTfJcADMAsw1ja-MEO7Q-XekrWthYowzWV8xGIQ,218
64
+ intersystems_iris/dbapi/_Column.py,sha256=VCLHLXs3wuGcUa9w_qy7HBFsuGvhmmI3kGYBagQg59U,2535
65
+ intersystems_iris/dbapi/_DBAPI.py,sha256=LcJ42rkuyMBLW8ucaQFxAmSyPX_8atbCSpLj_W1uCiE,103150
66
+ intersystems_iris/dbapi/_Descriptor.py,sha256=IjyITxvjygDrhpk-0lGhdqQPh91SG6nTb1vi-AqyJNI,1391
67
+ intersystems_iris/dbapi/_IRISStream.py,sha256=dGJntWo4HXgM1nUHZl2hA4xHkBFEU2xkoEplVDFWhnA,2115
68
+ intersystems_iris/dbapi/_Message.py,sha256=jpLG3HZElqp981iNPFW8UNRO3NbHf6poEv6yywX0Ssw,4076
69
+ intersystems_iris/dbapi/_Parameter.py,sha256=lvPlQkoLlyEjg5J_a9t2I_6vRDkAav6kN1fGyukH4DY,5293
70
+ intersystems_iris/dbapi/_ParameterCollection.py,sha256=kcgNiGv2nH5AwuA6LlPpM4dWqhSqRyD3VtwqHqDGRGU,5541
71
+ intersystems_iris/dbapi/_ResultSetRow.py,sha256=tEQCttO6L2McLfcP7-PIltIu5L9cNzTI1jZ2IR7tdRg,13777
72
+ intersystems_iris/dbapi/_SQLType.py,sha256=IlDacXwQzUMWaJ02Zsu2bUfvUC3-5mBx-m6mE0Yp7ts,557
73
+ intersystems_iris/dbapi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
+ intersystems_iris/dbapi/preparser/_PreParser.py,sha256=yyX0iUO8vq2L8duelrndFr-xPn30UPp4N-nkTl0fbCo,78990
75
+ intersystems_iris/dbapi/preparser/_Scanner.py,sha256=xA8rkKsaVba_mAgoXEeliyuMxNKe4vVmmw_klukdf_U,16163
76
+ intersystems_iris/dbapi/preparser/_Token.py,sha256=9ZYrjvYJtMApAR7RtYzp32Hcoo3jB_YpG7ECo7p6QHA,2304
77
+ intersystems_iris/dbapi/preparser/_TokenList.py,sha256=P74kA3DXxi7imt0mea4LPjCCc_gk50zsYLOCWON_JvA,6770
78
+ intersystems_iris/dbapi/preparser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
+ intersystems_iris/pex/_BusinessHost.py,sha256=arBAUZetLPhJY2on3BK5BJOZXXjLVJ3gr_VvkncbWDs,4370
80
+ intersystems_iris/pex/_BusinessOperation.py,sha256=gEyPF6A04si6UqVUY_75ulYzjMBhe337GTkcbK2OGfA,5241
81
+ intersystems_iris/pex/_BusinessProcess.py,sha256=P5AT-F88-_AIPL4zgCghH5Ngu3Hm_ZwOBr_CCrv7w4g,10774
82
+ intersystems_iris/pex/_BusinessService.py,sha256=7NVCxIdAvT9Bpcd5NPGbq-0xdhLT-TzyAaUMYTnvlVk,5441
83
+ intersystems_iris/pex/_Common.py,sha256=lxvHRxd8bnhCFrbiz98q5hV7o9WrK0EMJyml4T7Ou98,10509
84
+ intersystems_iris/pex/_Director.py,sha256=_mVLMa0OG5E4mjf6TnHHi3Xli7RREo-9l9Pq73B5zCA,1203
85
+ intersystems_iris/pex/_IRISBusinessOperation.py,sha256=z95u6YdR41gsWKbBPJDIyQxogdUcjJIdwlHShaZLahQ,172
86
+ intersystems_iris/pex/_IRISBusinessService.py,sha256=FKZFyJMgZheSDWcv8y7cdkIdY24PEitV2stTIIN972U,585
87
+ intersystems_iris/pex/_IRISInboundAdapter.py,sha256=oHLaJXpXNaU1U5dx3Kum7tOwCyR3FAWethw9iuS8CK4,171
88
+ intersystems_iris/pex/_IRISOutboundAdapter.py,sha256=W0YGTbI4KANzeERmpcy0ZpPYy3pt-v86wiOD9QDQ_zI,522
89
+ intersystems_iris/pex/_InboundAdapter.py,sha256=gZlWl7afumamkj8pNbpLyKFSzhaTAiAXk5mDEiFPnrA,2296
90
+ intersystems_iris/pex/_Message.py,sha256=Ugaa_lsEYke__pI5kdC7phAuyPQ7rxXUcROJL4cUxVQ,320
91
+ intersystems_iris/pex/_OutboundAdapter.py,sha256=ao2Ubbta2DcrQGdzDUD_j1Zsk8bvUfcZNKTZkzPTNBU,1628
92
+ intersystems_iris/pex/__init__.py,sha256=l_I1dpnluWawbFrGMDC0GLHpuHwjbpd-nho8otFX6TE,1379
93
+ iop/__init__.py,sha256=zHFF0Znipx1fwHYUEBZjNOYoZH1ro7z4IgYDU32kdn0,1067
94
+ iop/__main__.py,sha256=pQzVtkDhAeI6dpNRC632dVk2SGZZIEDwDufdgZe8VWs,98
95
+ iop/_business_host.py,sha256=_U7f2Fy-7_qzBz4OQTAieVvEhBaT1Z0E77QoYPU0i-U,28244
96
+ iop/_business_operation.py,sha256=BX4CT6OW_i2jLZRTWQIDJsQSRxFWpKUf0pAXruy3Wsg,3546
97
+ iop/_business_process.py,sha256=F4NIQcwQ5u8yiAPpaN14OAXxbKJsRAGm5S4lrbgA3oI,13296
98
+ iop/_business_service.py,sha256=8dYTr4z3RE0WupT7_DeDvYjyhVqZtdDj0jA52ZSKCQ0,3771
99
+ iop/_cli.py,sha256=yg4wv1FkhgjmoZuTMUr61Ff21PegJDH_cpZeHcF8hQE,6207
100
+ iop/_common.py,sha256=uKJdfCSPOjVQOg8GVuUj4ywfAn_2sPB3C82HbWw_5bI,15384
101
+ iop/_director.py,sha256=DqBG3zXN9QE1kcroLPnEZK4Q0YZn8l622OIrIzcqZCE,11585
102
+ iop/_inbound_adapter.py,sha256=PS5ToqhrYcXq9ZdLbCBqAfVp8kCeRACm_KF66pwBO9U,1652
103
+ iop/_message.py,sha256=BmwBXriykU66bwAgRbdkMpjfJRVWoNRX2eDc9TXfXzA,325
104
+ iop/_outbound_adapter.py,sha256=YTAhLrRf9chEAd53mV6KKbpaHOKNOKJHoGgj5wakRR0,726
105
+ iop/_pickle_message.py,sha256=noKfc2VkXufV3fqjKvNHN_oANQ1YN9ffCaSV0XSTAIE,331
106
+ iop/_private_session_duplex.py,sha256=36OwAGlasbPtfwq2KgMFcr3a33RsNSqohJx243XcDWI,5153
107
+ iop/_private_session_process.py,sha256=pGjWFOQhWpQxUVpTtvNKTPvDxgzjfw0VC4Aqj3KUq8w,1704
108
+ iop/_utils.py,sha256=b1vFnAXbcNV4uN9zojIeSeLgr0CuSt9bBgguZra0ve8,18105
109
+ iop/cls/IOP/BusinessOperation.cls,sha256=lrymqZ8wHl5kJjXwdjbQVs5sScV__yIWGh-oGbiB_X0,914
110
+ iop/cls/IOP/BusinessProcess.cls,sha256=s3t38w1ykHqM26ETcbCYLt0ocjZyVVahm-_USZkuJ1E,2855
111
+ iop/cls/IOP/BusinessService.cls,sha256=7ebn32J9PiZXUgXuh5Xxm_7X6zHBiqkJr9c_dWxbPO8,1021
112
+ iop/cls/IOP/Common.cls,sha256=4f4ZpLj8fsj8IKJDNb9pKoCokzo522JHWX0OqpAaC5g,11192
113
+ iop/cls/IOP/Director.cls,sha256=M43LoTb6lwSr0J81RFxi1YLW1mwda09wQ7Xqr3nBtxo,2008
114
+ iop/cls/IOP/InboundAdapter.cls,sha256=GeoCm6q5HcLJ5e4VxgqXiErJXqolBbpKwpunaNzpvjU,610
115
+ iop/cls/IOP/Message.cls,sha256=_-RZ4AxyZ97M8Guvm5eFg_-rH1VbNtnFE3x_G4eMZFg,9719
116
+ iop/cls/IOP/OutboundAdapter.cls,sha256=9eOwy5ojwcTzwrHs6LNrFQvUD8aqcoNCZrILN1ycdDM,958
117
+ iop/cls/IOP/PickleMessage.cls,sha256=S3y7AClQ8mAILjxPuHdCjGosBZYzGbUQ5WTv4mYPNMQ,1673
118
+ iop/cls/IOP/Test.cls,sha256=gAC9PEfMZsvAEWIa241-ug2FWAhITbN1SOispZzJPnI,2094
119
+ iop/cls/IOP/Utils.cls,sha256=ZTBr02spm4ppxVBfhnUwb08BmhTjG5-ZbItRshYHs1I,13746
120
+ iop/cls/IOP/Duplex/Operation.cls,sha256=K_fmgeLjPZQbHgNrc0kd6DUQoW0fDn1VHQjJxHo95Zk,525
121
+ iop/cls/IOP/Duplex/Process.cls,sha256=xbefZ4z84a_IUhavWN6P_gZBzqkdJ5XRTXxro6iDvAg,6986
122
+ iop/cls/IOP/Duplex/Service.cls,sha256=sTMOQUCMBgVitmQkM8bbsrmrRtCdj91VlctJ3I7b8WU,161
123
+ iop/cls/IOP/PrivateSession/Duplex.cls,sha256=8a_dO7E2RTzuxzoufryjlS41l-99NmTtOcmFXOnSwA8,7957
124
+ iop/cls/IOP/PrivateSession/Message/Ack.cls,sha256=y6-5uSVod36bxeQuT2ytPN4TUAfM1mvGGJuTbWbpNv4,941
125
+ iop/cls/IOP/PrivateSession/Message/Poll.cls,sha256=z3ALYmGYQasTcyYNyBeoHzJdNXI4nBO_N8Cqo9l4sQY,942
126
+ iop/cls/IOP/PrivateSession/Message/Start.cls,sha256=uk-WTe66GicCshgmVy3F5ugHiAyPs1m2ueS_3g0YubQ,949
127
+ iop/cls/IOP/PrivateSession/Message/Stop.cls,sha256=7g3gKFUjNg0WXBLuWnj-VnCs5G6hSE09YTzGEp0zbGc,1390
128
+ iop/cls/IOP/Service/WSGI.cls,sha256=VLNCXEwmHW9dBnE51uGE1nvGX6T4HjhqePT3LVhsjAE,10440
129
+ iop/wsgi/handlers.py,sha256=NrFLo_YbAh-x_PlWhAiWkQnUUN2Ss9HoEm63dDWCBpQ,2947
130
+ irisnative/_IRISNative.py,sha256=HQ4nBhc8t8_5OtxdMG-kx1aa-T1znf2I8obZOPLOPzg,665
131
+ irisnative/__init__.py,sha256=6YmvBLQSURsCPKaNg7LK-xpo4ipDjrlhKuwdfdNb3Kg,341
132
+ iris_pex_embedded_python-3.1.5.dist-info/LICENSE,sha256=rZSiBFId_sfbJ6RL0GjjPX-InNLkNS9ou7eQsikciI8,1089
133
+ iris_pex_embedded_python-3.1.5.dist-info/METADATA,sha256=7_BYWV-e1Mk1oH2fs43GsXyCaa8OYxBsLHFTPNJDqnc,4365
134
+ iris_pex_embedded_python-3.1.5.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
135
+ iris_pex_embedded_python-3.1.5.dist-info/entry_points.txt,sha256=pj-i4LSDyiSP6xpHlVjMCbg1Pik7dC3_sdGY3Yp9Vhk,38
136
+ iris_pex_embedded_python-3.1.5.dist-info/top_level.txt,sha256=VWDlX4YF4qFVRGrG3-Gs0kgREol02i8gIpsHNbhfFPw,42
137
+ iris_pex_embedded_python-3.1.5.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.3.0)
2
+ Generator: setuptools (75.6.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -0,0 +1,4 @@
1
+ grongier
2
+ intersystems_iris
3
+ iop
4
+ irisnative
@@ -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
+