mirror of
https://github.com/KevinMidboe/fanController.git
synced 2025-10-29 17:40:22 +00:00
6 lines
104 B
Python
6 lines
104 B
Python
import sys, json
|
|
|
|
# simple JSON echo script
|
|
for line in sys.stdin:
|
|
print json.dumps(json.loads(line))
|