I want to pass an Authentication object when creating a get request in requests_html. Also want to pass a file path for the certificate. This is what I have so far.
def get_url():
s = HTMLSession()
try:
response = s.get(url)
except Exception as e:
logging.exception('Could not send get request: {}'.format(e))
response.html.render()
return response