ivy
(Ivan Cornell)
3
Did the same for my pymelcloud script and that seems to have fixed it, changed:
async with aiohttp.ClientSession() as session:
to:
async with aiohttp.ClientSession(connector=aiohttp.TCPConnector(verify_ssl=False)) as session:
1 Like