add paths

This commit is contained in:
VinciGit00 2024-04-29 16:07:11 +02:00
parent 674e64222e
commit 3eacc6fbc3
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ class JsonScraperGraph(AbstractGraph):
Creates the graph of nodes representing the workflow for web scraping.
"""
fetch_node = FetchNode(
input="url | local_dir",
input="json | json_dir",
output=["doc"],
)
parse_node = ParseNode(

View File

@ -30,7 +30,7 @@ class XmlScraperGraph(AbstractGraph):
Creates the graph of nodes representing the workflow for web scraping.
"""
fetch_node = FetchNode(
input="url | local_dir",
input="xml | xml_dir",
output=["doc"],
)
parse_node = ParseNode(