|
|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
|
|
|
|
|
from kedro.pipeline import Pipeline, node, pipeline
|
|
|
|
|
|
|
|
|
|
from .nodes import (parse_xml_collection, parse_json_collection)
|
|
|
|
|
from .nodes import (parse_xml_collection, make_json_collection)
|
|
|
|
|
# add_xmlcontent_tojson)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -15,7 +15,7 @@ def create_pipeline(**kwargs) -> Pipeline:
|
|
|
|
|
name="bourbon_ds_collection",
|
|
|
|
|
),
|
|
|
|
|
node(
|
|
|
|
|
func=parse_json_collection,
|
|
|
|
|
func=make_json_collection,
|
|
|
|
|
inputs="bourbon_json",
|
|
|
|
|
outputs="bourbon_jsonoutput",
|
|
|
|
|
name="bourbon_json_ds_collection",
|
|
|
|
|
|