10 lines
182 B
Python
10 lines
182 B
Python
|
import json
|
||
|
|
||
|
|
||
|
def json_encode(data, indent=None, unicode=True):
|
||
|
return json.dumps(data, indent=indent, ensure_ascii=unicode)
|
||
|
|
||
|
|
||
|
def json_decode(data):
|
||
|
return json.loads(data)
|