aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri@ouroboros.rocks>2020-05-17 20:28:33 +0200
committerDimitri Staessens <dimitri@ouroboros.rocks>2020-05-17 20:28:33 +0200
commitc2e85f56cf99652fea1fc0d88cc36f819739920b (patch)
treecd0385a24b081c977fcc68c8038fe60e0724ea00
parentbb49c7108a75f8bdc6f6bc979f0d6c9deecedb78 (diff)
downloadwebsite-c2e85f56cf99652fea1fc0d88cc36f819739920b.tar.gz
website-c2e85f56cf99652fea1fc0d88cc36f819739920b.zip
docs: Add irmd setup for python example
-rw-r--r--content/en/docs/API/python.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/content/en/docs/API/python.md b/content/en/docs/API/python.md
index cb0405c..4c8c862 100644
--- a/content/en/docs/API/python.md
+++ b/content/en/docs/API/python.md
@@ -247,5 +247,20 @@ if __name__ == "__main__":
server() if args.listen is True else client()
```
+Running it is just the same as the binary program, register the name
+"oecho", bind the server to "oecho" (you can even bind both the C and
+Python programs at the same time), and allocating a flow should reach
+the server. For a local layer
+
+```bash
+$ irm i b t local n local l local
+$ irm n r oecho l local
+$ irm b prog ./oechy.py n oecho
+$ ./oecho.py -l &
+# or:
+# python oecho.py -l
+$ ./oechy.py
+```
+
## License
pyOuorboros is LGPLv2.1. The examples are 3-clause BSD. \ No newline at end of file