Files
2020-04-03 12:10:53 -07:00

9 lines
224 B
Cython

cdef extern from "wrap_json.c":
object decode_json(char * value)
object get_exception_class()
JSONException = get_exception_class()
def decode(value):
value = value.encode('utf-8')
return decode_json(value)