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