Python
JSON in Python
JSON is the standard way to move structured data between programs. Four functions cover it, and the type mapping has a few asymmetries worth knowing.
JSON encoding and decoding, configuration files, pickle and the risks of untrusted data.
2 notes
JSON is the standard way to move structured data between programs. Four functions cover it, and the type mapping has a few asymmetries worth knowing.
pickle stores almost any Python object exactly as it was. It is powerful, Python only, and unsafe on data you did not create yourself.