mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-29 01:50:53 +00:00
9 lines
224 B
Cython
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) |