Skip to content

Commit 927c99b

Browse files
authored
Merge pull request #849 from SwapnilSonker/extract/SmartScraperGraph
#710 - just a check added for the detailed logging
2 parents bc7ae85 + 064ebfc commit 927c99b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scrapegraphai/graphs/smart_scraper_graph.py

+3
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ def __init__(
5555
super().__init__(prompt, config, source, schema)
5656

5757
self.input_key = "url" if source.startswith("http") else "local_dir"
58+
59+
# for detailed logging of the SmartScraper API set it to True
60+
self.verbose = config.get("verbose", False)
5861

5962
def _create_graph(self) -> BaseGraph:
6063
"""

0 commit comments

Comments
 (0)