Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

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))


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: