Wednesday, April 25, 2012

Google app engine JSON


try:
    import json # only in Python 2.6+
except ImportError:
    import simplejson as json # but appengine only has Python 2.5

# from stackoverflow somewhere ...

No comments: