Commit 14e0bf7a authored by Francesco Poldi's avatar Francesco Poldi

Removed ssl req

parent 4130e2a6
......@@ -129,7 +129,7 @@ async def Request(url, connector=None, params=[], headers=[]):
async def Response(session, url, params=[]):
logme.debug(__name__+':Response')
with timeout(30):
async with session.get(url, ssl=True, params=params, proxy=httpproxy) as response:
async with session.get(url, ssl=False, params=params, proxy=httpproxy) as response:
return await response.text()
async def RandomUserAgent():
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment