From 4f4cfc0c1dfc69a5cc6953209df25b2c46521936 Mon Sep 17 00:00:00 2001 From: Alessandro Romano Date: Fri, 21 Sep 2018 15:17:57 +0200 Subject: [PATCH] Set verify default value to True --- requests_html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requests_html.py b/requests_html.py index 752069e..db01993 100644 --- a/requests_html.py +++ b/requests_html.py @@ -688,7 +688,7 @@ class BaseSession(requests.Session): amongst other things. """ - def __init__(self, mock_browser : bool = True, verify : bool = False, + def __init__(self, mock_browser : bool = True, verify : bool = True, browser_args : list = ['--no-sandbox']): super().__init__()