python json loads 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 import json data
import ast
def import_json(filename):
for line in open(filename):
yield ast.literal_eval(line)
data = list(import_json("/path/to/filename.json"))
dataframe = pd.DataFrame.from_dict(data)
Example 5: Json in python
{
"Icons":{
"app icon": "your icon.ico",
"eg icon": "eg.ico"
}
}