json module python code example
Example 1: print json python
import json
uglyjson = '{"firstnam":"James","surname":"Bond","mobile":["007-700-007","001-007-007-0007"]}'
parsed = json.loads(uglyjson)
print(json.dumps(parsed, indent=2, sort_keys=True))
Example 2: json python
import json
x = '{ "name":"John", "age":30, "city":"New York"}'
y = json.loads(x)
print(y["age"])
Example 3: Json in python
import json
json_file = json.load(open("your file.json", "r", encoding="utf-8"))
print(json_file)
Example 4: python to json
x = {
"name": "John",
"age": 30,
"city": "New York"
}
y = json.dumps(x)
Example 5: json decode py
>>> import json
>>> json.loads('["foo", {"bar":["baz", null, 1.0, 2]}]')
['foo', {'bar': ['baz', None, 1.0, 2]}]
>>> json.loads('"\\"foo\\bar"')
'"foo\x08ar'
>>> from io import StringIO
>>> io = StringIO('["streaming API"]')
>>> json.load(io)
['streaming API']
Example 6: Json in python
{
"Icons":{
"app icon": "your icon.ico",
"eg icon": "eg.ico"
}
}