__init__.py
Go to the documentation of this file.
00001 # try to import json-lib: 1st try usjon, 2nd try simplejson, else import standard python json
00002 try:
00003     import ujson as json
00004 except ImportError:
00005     try:
00006         import simplejson as json
00007     except ImportError:
00008         import json


rosbridge_library
Author(s): Jonathan Mace
autogenerated on Wed Sep 13 2017 03:18:07