yandex_tracker_client icon indicating copy to clipboard operation
yandex_tracker_client copied to clipboard

asyncio support

Open Olegt0rr opened this issue 4 years ago • 2 comments

Blocking requests in 2019...? Welcome to the future :)

async with aiohttp.ClientSession() as session:
    async with session.get('http://httpbin.org/get') as resp:
        print(resp.status)
        print(await resp.text())

Olegt0rr avatar Nov 04 '19 09:11 Olegt0rr