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))
In python, you can have a jq like experience with