4. JSON¶

Language independent
Name / value pairs
Ordered list
Widely adopted today
Alternative to XML
XML is more detailed
XML is less readable
8
import urllib.request
import json
url = "http://api.icndb.com/jokes/random?limitTo=[nerdy]"
text = urllib.request.urlopen(url).read()
data = json.loads(text)
print(data["value"]["joke"])
Activity: 4.1 ActiveCode (ac_l35_4_en)
Activity: 4.2 Poll (TWP35E)
You have attempted 1 of 3 activities on this page