JSON module for python 2.4? -


I'm addicted to import json in Python 2.6, but now I have to write something like Python Code for 2.4 Is there a JSON library with a similar interface available for Python 2.4?

in Jason Python 2.6 module mostly simplejson Similar to third-party modules, which is also available for Python 2.4. You can do just that:

  Try: importError except import Jason: Import simple json as Jason  

Comments