mirror of
https://github.com/bvanroll/rpiRadio.git
synced 2025-08-30 20:42:44 +00:00
6 lines
90 B
Python
Executable File
6 lines
90 B
Python
Executable File
import sys, json
|
|
|
|
# simple JSON echo script
|
|
for line in sys.stdin:
|
|
print line[:-1]
|