5 ms·
You can use any language with json support, which is most languages. In python, you can have a jq like experience with def f(data): # put code here d
by code-faster 6y ago
You can use any language with json support, which is most languages.
In python, you can have a jq like experience with
def f(data):
# put code here
data = json.load(sys.stdin)
output = f(data)
print(json.dumps(output))