We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 261ecbf commit 3c90d2fCopy full SHA for 3c90d2f
examples/gemini/smart_scraper_gemini.py
@@ -4,6 +4,7 @@
4
5
import os
6
from dotenv import load_dotenv
7
+from scrapegraphai.utils import prettify_exec_info
8
from scrapegraphai.graphs import SmartScraperGraph
9
load_dotenv()
10
@@ -34,3 +35,10 @@
34
35
36
result = smart_scraper_graph.run()
37
print(result)
38
+
39
+# ************************************************
40
+# Get graph execution info
41
42
43
+graph_exec_info = smart_scraper_graph.get_execution_info()
44
+print(prettify_exec_info(graph_exec_info))
0 commit comments