You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert

8
8
9
-
This proof of concept aims to show how the **iris interoperability framework** can be use with **embedded python**.
9
+
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**.
10
+
11
+
## Example
12
+
13
+
Here's a simple example of how a Business Operation can be implemented in Python:
14
+
15
+
```python
16
+
from iop import BusinessOperation
17
+
18
+
classMyBo(BusinessOperation):
19
+
defon_message(self, request):
20
+
self.log_info("Hello World")
21
+
```
22
+
23
+
## Installation
24
+
25
+
To start using this proof of concept, install it using pip:
26
+
27
+
```bash
28
+
pip install iris-pex-embedded-python
29
+
```
30
+
31
+
## Getting Started
32
+
33
+
If you're new to this proof of concept, begin by reading the [installation guide](getting-started/installation.md). Then, follow the [first steps](getting-started/first-steps.md) to create your first Business Operation.
0 commit comments