-
-
Notifications
You must be signed in to change notification settings - Fork 317
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add code for basic
Column
, and stub more modules
Signed-off-by: Deepyaman Datta <[email protected]>
- Loading branch information
Showing
6 changed files
with
21 additions
and
3 deletions.
There are no files selected for viewing
Empty file.
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
"""Core Ibis schema component specifications.""" | ||
|
||
from pandera.api.pandas.components import Column as _Column | ||
|
||
|
||
class Column(_Column): | ||
"""Validate types and properties of table columns.""" |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
"""Ibis backend implementation for schemas and checks.""" | ||
|
||
from pandera.api.checks import Check | ||
from pandera.api.ibis.container import DataFrameSchema | ||
from pandera.api.ibis.components import Column | ||
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
"""A flexible and expressive Ibis validation library.""" | ||
# pylint: disable=unused-import | ||
import pandera.backends.ibis | ||
from pandera.api.checks import Check | ||
from pandera.api.ibis.components import Column | ||
from pandera.api.ibis.container import DataFrameSchema | ||