On Feb 10, 5:23 pm, Rein Petersen <rein.peter...@gmail.com> wrote:
>     obj = simplejson.loads("{'id':'KS1-0','type':'activity','units':
> 1,'priceper':450}")

The string of JSON is wrapped with double quote. ( http://json.org/ )

This will work
  obj = simplejson.loads('{"id":"KS1-0","type":"activity","units":
1,"priceper":450}')
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to