web.response aiohttp
async def handler(request):
data = {'some': 'data'}
return web.json_response(data)
https://docs.aiohttp.org/en/stable/web_quickstart.html#json-response
web.response aiohttp
async def handler(request):
data = {'some': 'data'}
return web.json_response(data)
https://docs.aiohttp.org/en/stable/web_quickstart.html#json-response