-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from pydiverse/api
Stabilize public API
- Loading branch information
Showing
66 changed files
with
712 additions
and
560 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,11 @@ | ||
from __future__ import annotations | ||
|
||
from pydiverse.transform.backend.targets import DuckDb, Polars, SqlAlchemy | ||
from pydiverse.transform.pipe.c import C | ||
from pydiverse.transform.pipe.functions import ( | ||
count, | ||
dense_rank, | ||
max, | ||
min, | ||
rank, | ||
row_number, | ||
when, | ||
) | ||
from pydiverse.transform.pipe.pipeable import verb | ||
from pydiverse.transform.pipe.table import Table | ||
from pydiverse.transform.tree.dtypes import ( | ||
Bool, | ||
Date, | ||
DateTime, | ||
Duration, | ||
Float64, | ||
Int64, | ||
String, | ||
) | ||
from ._internal.pipe.pipeable import verb | ||
from ._internal.pipe.table import Table | ||
from ._internal.tree.col_expr import ColExpr | ||
from .extended import * | ||
from .extended import __all__ as __extended | ||
from .types import * | ||
from .types import __all__ as __types | ||
|
||
__all__ = [ | ||
"Polars", | ||
"SqlAlchemy", | ||
"DuckDb", | ||
"Table", | ||
"aligned", | ||
"verb", | ||
"C", | ||
"Float64", | ||
"Int64", | ||
"String", | ||
"Bool", | ||
"DateTime", | ||
"Date", | ||
"Duration", | ||
] | ||
__all__ = __extended + __types + ["Table", "ColExpr", "verb"] |
File renamed without changes.
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
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
File renamed without changes.
Oops, something went wrong.