mirror of
https://github.com/KevinMidboe/fanController.git
synced 2026-02-03 06:55:46 +00:00
6 lines
85 B
Python
6 lines
85 B
Python
import sys, json
|
|
|
|
# simple JSON echo script
|
|
for line in sys.stdin:
|
|
print line[:-1]
|