commit 7b597244c224052030f4bae982a304a11777b029
parent 86b1408e2086047445731767ae921a073b97512b
Author: Joris Vink <joris@coders.se>
Date: Fri, 10 Oct 2025 07:34:59 +0200
examples: correct usage in python examples.
Diffstat:
examples/python-async/README.md | 2 +-
examples/python-echo/README.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/examples/python-async/README.md b/examples/python-async/README.md
@@ -7,7 +7,7 @@ Requires that Kore is built with PYTHON=1 CURL=1
Run:
```
- $ kore app.py
+ $ kore -rn app.py
```
Test:
diff --git a/examples/python-echo/README.md b/examples/python-echo/README.md
@@ -5,7 +5,7 @@ Kore must have been built with PYTHON=1.
On the command-line run the following
-$ kore echo.py
+$ kore -rn echo.py
Then connect to 127.0.0.1 port 6969 using netcat or so and you'll
see it echo back everything you send it.