RHInception / jsonstats

system stats over rest in json (buzzzzwords here)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

json lib not in 2.5

ashcrow opened this issue · comments

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

try:
    import json
except ImportError:
    # Fallback for 2.5
    import simplejson as json

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//issues/4
.