diff --git a/__init__.py b/__init__.py index 6e2dbcd7..7f0c958f 100644 --- a/__init__.py +++ b/__init__.py @@ -367,7 +367,7 @@ def git_pull(path): async def get_data(uri): print(f"FETCH DATA from: {uri}") if uri.startswith("http"): - async with aiohttp.ClientSession(trust_env=True) as session: + async with aiohttp.ClientSession(trust_env=True, connector=aiohttp.TCPConnector(verify_ssl=False)) as session: async with session.get(uri) as resp: json_text = await resp.text() else: