From eaae5908c9f9157e6e0cfb461e95c8f482c1b032 Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Sun, 3 Nov 2024 13:33:24 +0200 Subject: [PATCH] Make auto_match enabled by default --- scrapling/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapling/parser.py b/scrapling/parser.py index 57a7529..2d0ebf1 100644 --- a/scrapling/parser.py +++ b/scrapling/parser.py @@ -27,7 +27,7 @@ class Adaptor(SelectorsGeneration): huge_tree: bool = True, root: Optional[html.HtmlElement] = None, keep_comments: Optional[bool] = False, - auto_match: Optional[bool] = False, + auto_match: Optional[bool] = True, storage: Any = SQLiteStorageSystem, storage_args: Optional[Dict] = None, debug: Optional[bool] = True,