Skip to content

Commit

Permalink
empty pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
rnoxy committed Nov 14, 2023
1 parent 0e026d6 commit 4cbd83f
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from .pipeline import create_pipeline

__all__ = ["create_pipeline"]

__version__ = "0.1"
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import logging

LOGGER = logging.getLogger(__name__)
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
from kedro.pipeline import Pipeline, pipeline, node

def create_pipeline(**kwargs) -> Pipeline:
return pipeline(
[
node(
func=lambda x: x,
inputs="raw_data",
outputs="processed_data",
name="data_processing",
)
],
inputs=None,
outputs=None,
parameters=None,
namespace=None,
tags=None,
)

0 comments on commit 4cbd83f

Please sign in to comment.