-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6304c4c
commit 39aaa69
Showing
7 changed files
with
1,107 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,27 @@ | ||
"""Collection of utilities for working with SGHI ETL Worflows.""" | ||
|
||
from .processors import ( | ||
NoOpProcessor, | ||
ProcessorPipe, | ||
ProcessorSet, | ||
ScatterProcessor, | ||
processor, | ||
) | ||
from .sinks import NullSink, ScatterSink, SinkSet, sink | ||
from .sources import SourceSet, source | ||
from .workflow_builder import WorkflowBuilder | ||
|
||
__all__ = [ | ||
"NoOpProcessor", | ||
"NullSink", | ||
"ProcessorPipe", | ||
"ProcessorSet", | ||
"ScatterProcessor", | ||
"ScatterSink", | ||
"SinkSet", | ||
"SourceSet", | ||
"WorkflowBuilder", | ||
"processor", | ||
"sink", | ||
"source", | ||
] |
Oops, something went wrong.