Skip to content

Latest commit

 

History

History
 
 

17 - JSON

JSON

Many APIs return data in JSON, JavaScript Object Notation. JSON is a standard format that can is readable by humans and parsed or generated by code.

JSON is built on two structures:

  • collections of key/value pairs
  • lists of values

JSON Linters will format JSON so it easier to read by a human. The following website have JSON linters:

Python includes a json module which helps you encode and decode JSON