I'm trying to deploy some code on several nodes for a distributed project. These nodes only have Python 2.5 on them, which is a problem because I'm sending data in json (mostly just json.loads and json.dumps). I can't install new modules or upgrade python for policy reasons.
I guess one way to get around this would be to manually convert strings in json to python objects and vice versa, but this sounds painful. Is there an easier way to do this?