Skip to content

Commit c82f5de

Browse files
committed
add fuzzy join recipe creator
1 parent 1041074 commit c82f5de

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

dataikuapi/dss/recipe.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1023,6 +1023,12 @@ class JoinRecipeCreator(VirtualInputsSingleOutputRecipeCreator):
10231023
def __init__(self, name, project):
10241024
VirtualInputsSingleOutputRecipeCreator.__init__(self, 'join', name, project)
10251025

1026+
class FuzzyJoinRecipeCreator(VirtualInputsSingleOutputRecipeCreator):
1027+
"""
1028+
Create a FuzzyJoin recipe
1029+
"""
1030+
def __init__(self, name, project):
1031+
VirtualInputsSingleOutputRecipeCreator.__init__(self, 'fuzzyjoin', name, project)
10261032

10271033
class StackRecipeSettings(DSSRecipeSettings):
10281034
"""

0 commit comments

Comments
 (0)