RHInception / jsonstats

system stats over rest in json (buzzzzwords here)
MIT License
22 stars 8 forks source link

json lib not in 2.5 #4

Closed ashcrow closed 10 years ago

ashcrow commented 10 years ago

... however simplejson can be installed. I think the best bet is:

try:
    import json
except ImportError:
    # Fallback for 2.5
    import simplejson as json
tbielawa commented 10 years ago

CRAP

dang it.

Good call On Nov 5, 2013 3:32 PM, "Steve Milner" notifications@github.com wrote:

... however simplejson can be installed. I think the best bet is:

try: import jsonexcept ImportError:

Fallback for 2.5

import simplejson as json

— Reply to this email directly or view it on GitHubhttps://github.com/tbielawa/restfulstatsjson/issues/4 .