From fac6b7ba2a2e79d6fda622f958cc0081ac112484 Mon Sep 17 00:00:00 2001 From: Thomas Ashish Cherian <6967017+PandaWhoCodes@users.noreply.github.com> Date: Mon, 11 Mar 2019 15:08:44 +0530 Subject: [PATCH] Update utils.py --- PyDictionary/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PyDictionary/utils.py b/PyDictionary/utils.py index 07c564f..1250678 100644 --- a/PyDictionary/utils.py +++ b/PyDictionary/utils.py @@ -2,5 +2,5 @@ from bs4 import BeautifulSoup -def _get_soup_object(url, parser="html.parser"): +def _get_soup_object(url, parser="lxml"): return BeautifulSoup(requests.get(url).text, parser)