Logo

Programming-Idioms

  • Python
  • Php

Idiom #92 Save object into JSON file

Write the contents of the object x into the file data.json.

file_put_contents('data.json', json_encode($x));
import json
with open("data.json", "w") as output:
    json.dump(x, output)
(require '[clojure.java.io :refer [file]])
(require '[jsonista.core :refer [write-value]])
(write-value (file "data.json") x)

New implementation...