[BangPypers] JSON PARSER

Noufal Ibrahim KV noufal at nibrahim.net.in
Fri Mar 21 09:38:27 CET 2014


On Fri, Mar 21 2014, lokesh bobby wrote:

> Hi ALL,
>
> Can you share your thoughts on how to parse a JSON file by using
> python?

import json

with open("data.json") as f:
     json.load(f)


[...]


-- 
Cordially,
Noufal
http://nibrahim.net.in


More information about the BangPypers mailing list