please help me how to check the validity of the json object
if suppose the example of the JSON is as
({type:'AAU', msgid:1265033798233, sel:0, gadinfo:[{
adid:316,adprt:40.0,dur:10,ef:'2009/06/03 10:00:00',et:'2012/06/03 12:00:00',imgfurl:'vaccumcleaner_h.jpg'
}]})
SO I want a script in python which would give me the validity of the object as the output by taking the json object as the input.
I tried json module in python but I could'nt fetch the required result..
Thanks in advance.