Skip to content

Instantly share code, notes, and snippets.

@JustinTulloss
Created November 12, 2010 20:25
Show Gist options
  • Select an option

  • Save JustinTulloss/674615 to your computer and use it in GitHub Desktop.

Select an option

Save JustinTulloss/674615 to your computer and use it in GitHub Desktop.
importing json
try:
import json
except ImportError:
import simplejson as json
# in setuptools
dependencies = []
try:
import json
except:
dependencies.append('simplejson')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment