-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cotransform dict DataFrames, improve transformer deco, add no effect …
…checkpoint (#30) * setup fugue sql * SQL: add basic extensions and tests * update * update * clean up sql files * fix syntax, add save load * add test for load * FugueSQLWorkflow * update version * Add pandas udf support, add SQL persist broadcast * update * update * update * update * update * make transformer schema more flexible * Remove ABC from Transformers * cotransform on dict like dataframes, add no effect checkpoint * change deco lambda * add more tests
- Loading branch information
Han Wang
authored
Jun 14, 2020
1 parent
f62f918
commit 711941b
Showing
22 changed files
with
5,570 additions
and
5,137 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
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
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,5 +1,10 @@ | ||
# flake8: noqa | ||
from fugue.extensions.transformer import Transformer, CoTransformer, transformer | ||
from fugue.extensions.transformer import ( | ||
Transformer, | ||
CoTransformer, | ||
transformer, | ||
cotransformer, | ||
) | ||
from fugue.extensions.creator import Creator, creator | ||
from fugue.extensions.processor import Processor, processor | ||
from fugue.extensions.outputter import Outputter, outputter |
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
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
Oops, something went wrong.