profileRyan KesPGP keyI build stuffEmailGithubTwitterLast.fmMastodonMatrix

serialization

Origin

English series "in order"

Defintion

The process of taking data from one format and converting it to a more generic form that can be used by other programs.

Example

const data = {
  hello: "world",
}

JSON.stringify(data)
import json

dataFromJS = "{hello: 'world'}"

# parse
x = json.loads(dataFromJS)