Skip to content

Commit daebd34

Browse files
authored
Update README.md
1 parent d6ade58 commit daebd34

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

README.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,25 @@
11
# PythonAdapter
2-
Python adapter via callout for InterSystems Data Platform
2+
Python adapter via callout for InterSystems Data Platforms.
3+
4+
# Installation
5+
6+
1. Load ObjectScript code from [here](https://github.com/intersystems-ru/PythonAdapter/blob/master/isc/py/Callout.cls).
7+
2. Place DLLs in `bin` folder.
8+
9+
# Use
10+
11+
```
12+
do ##class(isc.py.Callout).Initialize()
13+
write ##class(isc.py.Callout).SimpleString("x='ПРИВЕТ'","x")
14+
write ##class(isc.py.Callout).SimpleString("x=repr('ПРИВЕТ')","x")
15+
write ##class(isc.py.Callout).SimpleString("x=123","x")
16+
write ##class(isc.py.Callout).Unload()
17+
```
18+
19+
20+
# Development
21+
22+
Development of ObjectScript is done via [cache-tort-git](https://github.com/MakarovS96/cache-tort-git) in UDL mode.
23+
Development of C code is done in Eclipse.
24+
25+

0 commit comments

Comments
 (0)