7 lines
117 B
Python
7 lines
117 B
Python
|
from aiohttp import ClientSession
|
||
|
from ujson import dumps
|
||
|
|
||
|
http_session = ClientSession(
|
||
|
json_serialize=dumps,
|
||
|
)
|