I have a somewhat unique and frustrating situation. I need to do some JSON processing in Python, but with the following limitations:
- I'm stuck with Python 2.4.3 (so no
jsonmodule). - I can't install anything we don't currently have (so no old versions of
simplejson).
My employer is a very large company, and I don't think I would have the ability to change either of the above issues with any speed. Do I have any options here besides doing all of my JSON processing manually, or switching to another language entirely?
simplejsoncan be used just like any other module, bundled with your project. Are you sure you cannot use it? You don't even have to compile the C extension (offering speedups).simplejsonright next to the script it can be imported.