mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-11 09:55:21 +00:00
14 lines
201 B
Python
14 lines
201 B
Python
try:
|
|
import ujson as json
|
|
IS_UJSON = True
|
|
except ImportError:
|
|
import json
|
|
IS_UJSON = False
|
|
|
|
|
|
def dumps(data):
|
|
return json.dumps(data)
|
|
|
|
|
|
def loads(data):
|
|
return json.loads(data)
|