cd1986

Results 1 issues of cd1986

Found the solution: ``` with prestodb.dbapi.connect( host='host.namel', port=443, user='myuser', catalog='catalog', schema='schema', http_scheme='https' ) as conn: conn._http_session.verify = '/path/to/cert.pem' cur = conn.cursor() cur.execute(sql_str) ``` _Originally posted by @trabbani in https://github.com/prestodb/presto-python-client/issues/87#issuecomment-519757134_