On the surface it appears that python uses json natively. The only exception I can think of is the fact that json can store js functions.
Here\'s my issue: I need t
JSON does not have objects per se, and cannot store JavaScript functions. Its syntax may appear similar to JavaScript literals, but trying to use it as such all the time will cause nothing but pain.
And there should be no need to use eval(); both JavaScript and Python have JSON parsers and serializers readily available.