Skip to content

Commit 3eacc6f

Browse files
committed
add paths
1 parent 674e642 commit 3eacc6f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

scrapegraphai/graphs/json_scraper_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def _create_graph(self):
3030
Creates the graph of nodes representing the workflow for web scraping.
3131
"""
3232
fetch_node = FetchNode(
33-
input="url | local_dir",
33+
input="json | json_dir",
3434
output=["doc"],
3535
)
3636
parse_node = ParseNode(

scrapegraphai/graphs/xml_scraper_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def _create_graph(self):
3030
Creates the graph of nodes representing the workflow for web scraping.
3131
"""
3232
fetch_node = FetchNode(
33-
input="url | local_dir",
33+
input="xml | xml_dir",
3434
output=["doc"],
3535
)
3636
parse_node = ParseNode(

0 commit comments

Comments
 (0)