فهرست منبع

update script neuron doc

nico 8 سال پیش
والد
کامیت
612a4b0270
2فایلهای تغییر یافته به همراه12 افزوده شده و 2 حذف شده
  1. 11 0
      neurons/script/README.md
  2. 1 2
      neurons/script/script.py

+ 11 - 0
neurons/script/README.md

@@ -45,6 +45,17 @@ Keep in mind that you cannot get any returned value with this mode.
           async: True
 ```
 
+Make Kalliope speak out loud the result of the script.
+```
+  - name: "run-script-an-give-output"
+    signals:
+      - order: "run the script"
+    neurons:
+      - script:
+          path: "/path/to/script.sh"   
+          say_template: "{{ output }}"
+```
+
 
 ## Notes
 

+ 1 - 2
neurons/script/script.py

@@ -41,8 +41,7 @@ class Script(NeuronModule):
                 (output, err) = p.communicate()
                 self.output = output
                 self.returncode = p.returncode
-                print self.output
-                print self.returncode
+
                 message = {
                     "output": self.output,
                     "returncode": self.returncode