Files
fanController/node_modules/python-shell/test/python/echo_json.py

6 lines
104 B
Python
Executable File

import sys, json
# simple JSON echo script
for line in sys.stdin:
print json.dumps(json.loads(line))