mirror of
https://github.com/bvanroll/rpiRadio.git
synced 2025-08-31 13:02:44 +00:00
6 lines
109 B
Python
Executable File
6 lines
109 B
Python
Executable File
import sys, json
|
|
|
|
# simple JSON echo script
|
|
for line in sys.stdin:
|
|
print json.dumps(json.loads(line))
|