Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm accustomed to doing import json in Python 2.6, however I now need to write some code for Python 2.4. Is there a JSON library with a similar interface that is available for Python 2.4?

share|improve this question
Did you try simplejson? How did it work? – S.Lott Jul 20 '10 at 15:43

4 Answers

up vote 16 down vote accepted

The json module in Python 2.6 is mostly the same as the simplejson third-party module, which is available for Python 2.4 as well. You can just do:

try:
    import json
except ImportError:
    import simplejson as json
share|improve this answer
Perfect, many thanks. – kdt Jul 20 '10 at 17:04

Now, a few years later, simplejson does only support python 2.5+. No more simplejson for systems stuck on 2.4. Even though it is not supported, you may find older packages on pypi. 2.0.9 or 2.1.0 should work.

pip install simplejson==2.1.0

(I could not comment on the chosen answer, but this just bit me hard, so it may be useful to others as well)

share|improve this answer
1  
Good hint, you're not the only one "stuck" on 2.4! – Shirkrin Sep 21 '12 at 6:25
and for those who don't know the syntax: pip install simplejson==2.1.0 – reedstrm May 21 at 22:27

I needed to get this up on an old box with Python 2.4.3. Used simplejson-1.7-py2.4.egg from here:

https://pypi.python.org/packages/2.4/s/simplejson/

share|improve this answer

For what it may be worth, this worked on my systems with no hiccup (or simplejson issue) $uname -a Linux myserver.com 2.6.18-308.el5 #1 SMP Fri Jan 27 17:17:51 EST 2012 x86_64 x86_64 x86_64 GNU/Linux

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.