-
Notifications
You must be signed in to change notification settings - Fork 89
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
8ef02fc
commit 3d1fe0d
Showing
10 changed files
with
263 additions
and
96 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,8 +1,21 @@ | ||
from narwhals import containers | ||
from narwhals.containers import get_implementation | ||
from narwhals.containers import is_dataframe | ||
from narwhals.containers import is_pandas | ||
from narwhals.containers import is_polars | ||
from narwhals.containers import is_series | ||
from narwhals.translate import translate_any | ||
from narwhals.translate import translate_frame | ||
from narwhals.translate import translate_series | ||
|
||
__version__ = "0.2.0" | ||
|
||
__all__ = ["translate_frame", "translate_series", "translate_any", "containers"] | ||
__all__ = [ | ||
"translate_frame", | ||
"translate_series", | ||
"translate_any", | ||
"is_dataframe", | ||
"is_series", | ||
"is_polars", | ||
"is_pandas", | ||
"get_implementation", | ||
] |
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
Oops, something went wrong.