I’ve seen this idiom used a lot, so you don’t even have to do OS sniffing:
try:
import json
except ImportError:
import simplejson as json
I’ve seen this idiom used a lot, so you don’t even have to do OS sniffing:
try:
import json
except ImportError:
import simplejson as json