Modified another json import to work on app engine
authorThomas Bohmbach, Jr <thomas@gumption.com>
Mon, 14 Sep 2009 19:43:24 +0000 (14:43 -0500)
committerThomas Bohmbach, Jr <thomas@gumption.com>
Mon, 14 Sep 2009 19:43:24 +0000 (14:43 -0500)
tweepy/streaming.py

index fcfc7fc25d52e7131001e9534205b309639f7a52..947d633e27a973dae483b7f311dbfce1340e2d84 100644 (file)
@@ -13,9 +13,15 @@ from . api import API
 from . error import TweepError
 
 try:
-    import json
+    import json #Python >= 2.6
 except ImportError:
-    import simplejson as json
+    try:
+        import simplejson as json #Python < 2.6
+    except ImportError:
+        try:
+            from django.utils import simplejson as json #Google App Engine
+        except ImportError:
+            raise ImportError, "Can't load a json library"
 
 STREAM_VERSION = 1