├── .gitignore ├── CHANGELOG.md ├── DataTransfer.md ├── Dockerfile ├── Dockerfile-GPU ├── Dockerfile191 ├── Gateway.md ├── LICENSE ├── README.md ├── RELEASE-NOTES.md ├── c ├── Makefile ├── iscpython.c └── iscpython.h ├── docs ├── Article I - Habr.md ├── Article I.md ├── Article II Installation.md ├── Article III Basics.md └── Article IV Interoperability Adapter.md ├── isc └── py │ ├── Callout.cls │ ├── Main.cls │ ├── data │ ├── Context.cls │ ├── Function.cls │ └── Variable.cls │ ├── ens │ ├── ContextSearch.cls │ ├── Operation.cls │ ├── ProcessUtils.cls │ └── SQL.cls │ ├── gw │ ├── DynamicObject.cls │ ├── Generator.cls │ └── PyString.cls │ ├── init │ ├── Abstract.cls │ ├── Generator.cls │ └── Test.cls │ ├── msg │ ├── ClassRequest.cls │ ├── CreateCQRequest.cls │ ├── DataRequest.cls │ ├── DebugRequest.cls │ ├── ExecutionRequest.cls │ ├── ExecutionResponse.cls │ ├── GlobalRequest.cls │ ├── QueryRequest.cls │ ├── RestoreRequest.cls │ ├── SQLRequest.cls │ ├── SaveRequest.cls │ ├── StreamExecutionRequest.cls │ ├── StreamExecutionResponse.cls │ └── TableRequest.cls │ ├── query │ ├── Abstract.cls │ ├── Custom.cls │ ├── Generator.cls │ └── List.cls │ ├── test │ ├── CannibalizationData.cls │ ├── Person.cls │ ├── Process.cls │ └── Production.cls │ ├── unit │ └── TestCase.cls │ └── util │ ├── BPEmulator.cls │ ├── Converter.cls │ ├── Evaluator.cls │ ├── Generator.cls │ ├── Installer.cls │ ├── Jupyter.cls │ ├── JupyterCheckpoints.cls │ ├── Matcher.cls │ ├── PMML.cls │ ├── Redirect.cls │ ├── Shell.cls │ └── Storage.cls ├── jupyter ├── Dockerfile ├── MLContentsManager.py ├── Readme.md └── jupyter_notebook_config.py ├── rtn ├── %ZLANGC00.xml └── %ZSTART.xml └── sc-list.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DataTransfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/DataTransfer.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-GPU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/Dockerfile-GPU -------------------------------------------------------------------------------- /Dockerfile191: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/Dockerfile191 -------------------------------------------------------------------------------- /Gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/Gateway.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/RELEASE-NOTES.md -------------------------------------------------------------------------------- /c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/c/Makefile -------------------------------------------------------------------------------- /c/iscpython.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/c/iscpython.c -------------------------------------------------------------------------------- /c/iscpython.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/c/iscpython.h -------------------------------------------------------------------------------- /docs/Article I - Habr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/docs/Article I - Habr.md -------------------------------------------------------------------------------- /docs/Article I.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/docs/Article I.md -------------------------------------------------------------------------------- /docs/Article II Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/docs/Article II Installation.md -------------------------------------------------------------------------------- /docs/Article III Basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/docs/Article III Basics.md -------------------------------------------------------------------------------- /docs/Article IV Interoperability Adapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/docs/Article IV Interoperability Adapter.md -------------------------------------------------------------------------------- /isc/py/Callout.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/Callout.cls -------------------------------------------------------------------------------- /isc/py/Main.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/Main.cls -------------------------------------------------------------------------------- /isc/py/data/Context.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/data/Context.cls -------------------------------------------------------------------------------- /isc/py/data/Function.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/data/Function.cls -------------------------------------------------------------------------------- /isc/py/data/Variable.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/data/Variable.cls -------------------------------------------------------------------------------- /isc/py/ens/ContextSearch.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/ens/ContextSearch.cls -------------------------------------------------------------------------------- /isc/py/ens/Operation.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/ens/Operation.cls -------------------------------------------------------------------------------- /isc/py/ens/ProcessUtils.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/ens/ProcessUtils.cls -------------------------------------------------------------------------------- /isc/py/ens/SQL.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/ens/SQL.cls -------------------------------------------------------------------------------- /isc/py/gw/DynamicObject.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/gw/DynamicObject.cls -------------------------------------------------------------------------------- /isc/py/gw/Generator.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/gw/Generator.cls -------------------------------------------------------------------------------- /isc/py/gw/PyString.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/gw/PyString.cls -------------------------------------------------------------------------------- /isc/py/init/Abstract.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/init/Abstract.cls -------------------------------------------------------------------------------- /isc/py/init/Generator.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/init/Generator.cls -------------------------------------------------------------------------------- /isc/py/init/Test.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/init/Test.cls -------------------------------------------------------------------------------- /isc/py/msg/ClassRequest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/msg/ClassRequest.cls -------------------------------------------------------------------------------- /isc/py/msg/CreateCQRequest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/msg/CreateCQRequest.cls -------------------------------------------------------------------------------- /isc/py/msg/DataRequest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/msg/DataRequest.cls -------------------------------------------------------------------------------- /isc/py/msg/DebugRequest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/msg/DebugRequest.cls -------------------------------------------------------------------------------- /isc/py/msg/ExecutionRequest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/msg/ExecutionRequest.cls -------------------------------------------------------------------------------- /isc/py/msg/ExecutionResponse.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/msg/ExecutionResponse.cls -------------------------------------------------------------------------------- /isc/py/msg/GlobalRequest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/msg/GlobalRequest.cls -------------------------------------------------------------------------------- /isc/py/msg/QueryRequest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/msg/QueryRequest.cls -------------------------------------------------------------------------------- /isc/py/msg/RestoreRequest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/msg/RestoreRequest.cls -------------------------------------------------------------------------------- /isc/py/msg/SQLRequest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/msg/SQLRequest.cls -------------------------------------------------------------------------------- /isc/py/msg/SaveRequest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/msg/SaveRequest.cls -------------------------------------------------------------------------------- /isc/py/msg/StreamExecutionRequest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/msg/StreamExecutionRequest.cls -------------------------------------------------------------------------------- /isc/py/msg/StreamExecutionResponse.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/msg/StreamExecutionResponse.cls -------------------------------------------------------------------------------- /isc/py/msg/TableRequest.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/msg/TableRequest.cls -------------------------------------------------------------------------------- /isc/py/query/Abstract.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/query/Abstract.cls -------------------------------------------------------------------------------- /isc/py/query/Custom.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/query/Custom.cls -------------------------------------------------------------------------------- /isc/py/query/Generator.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/query/Generator.cls -------------------------------------------------------------------------------- /isc/py/query/List.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/query/List.cls -------------------------------------------------------------------------------- /isc/py/test/CannibalizationData.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/test/CannibalizationData.cls -------------------------------------------------------------------------------- /isc/py/test/Person.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/test/Person.cls -------------------------------------------------------------------------------- /isc/py/test/Process.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/test/Process.cls -------------------------------------------------------------------------------- /isc/py/test/Production.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/test/Production.cls -------------------------------------------------------------------------------- /isc/py/unit/TestCase.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/unit/TestCase.cls -------------------------------------------------------------------------------- /isc/py/util/BPEmulator.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/util/BPEmulator.cls -------------------------------------------------------------------------------- /isc/py/util/Converter.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/util/Converter.cls -------------------------------------------------------------------------------- /isc/py/util/Evaluator.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/util/Evaluator.cls -------------------------------------------------------------------------------- /isc/py/util/Generator.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/util/Generator.cls -------------------------------------------------------------------------------- /isc/py/util/Installer.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/util/Installer.cls -------------------------------------------------------------------------------- /isc/py/util/Jupyter.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/util/Jupyter.cls -------------------------------------------------------------------------------- /isc/py/util/JupyterCheckpoints.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/util/JupyterCheckpoints.cls -------------------------------------------------------------------------------- /isc/py/util/Matcher.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/util/Matcher.cls -------------------------------------------------------------------------------- /isc/py/util/PMML.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/util/PMML.cls -------------------------------------------------------------------------------- /isc/py/util/Redirect.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/util/Redirect.cls -------------------------------------------------------------------------------- /isc/py/util/Shell.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/util/Shell.cls -------------------------------------------------------------------------------- /isc/py/util/Storage.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/isc/py/util/Storage.cls -------------------------------------------------------------------------------- /jupyter/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/jupyter/Dockerfile -------------------------------------------------------------------------------- /jupyter/MLContentsManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/jupyter/MLContentsManager.py -------------------------------------------------------------------------------- /jupyter/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/jupyter/Readme.md -------------------------------------------------------------------------------- /jupyter/jupyter_notebook_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/jupyter/jupyter_notebook_config.py -------------------------------------------------------------------------------- /rtn/%ZLANGC00.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/rtn/%ZLANGC00.xml -------------------------------------------------------------------------------- /rtn/%ZSTART.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intersystems-community/PythonGateway/HEAD/rtn/%ZSTART.xml -------------------------------------------------------------------------------- /sc-list.txt: -------------------------------------------------------------------------------- 1 | isc.py.pkg 2 | --------------------------------------------------------------------------------