Logo

Programming-Idioms

  • Python
  • Go

Idiom #92 Save object into JSON file

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

import "encoding/json"
import "os"
buffer, err := json.MarshalIndent(x, "", "  ")
if err != nil {
	return err
}
err = os.WriteFile("data.json", buffer, 0644)

json.MarshalIndent is more human-readable than json.Marshal.
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...