fx/pkg/reducer/python.py
2022-05-08 15:13:09 +02:00

10 lines
131 B
Python

import json, sys, os
x = json.load(sys.stdin)
# Reducers %v
try:
print(json.dumps(x))
except:
print(json.dumps(list(x)))