flytekitplugins.great_expectations.schema
flytekitplugins.great_expectations.schema
Directory
Classes
flytekitplugins.great_expectations.schema.GreatExpectationsFlyteConfig
Use this configuration to configure GreatExpectations Plugin.
class GreatExpectationsFlyteConfig (
datasource_name: str,
expectation_suite_name: str,
data_connector_name: str,
data_asset_name: typing. Optional[str],
local_file_path: typing. Optional[str],
checkpoint_params: typing. Optional[typing. Dict[str, typing. Union[str, typing. List[str]]]],
batch_request_config: typing. Optional[flytekitplugins. great_expectations. task. BatchRequestConfig],
context_root_dir: str,
)
Parameter
Type
datasource_name
str
expectation_suite_name
str
data_connector_name
str
data_asset_name
typing.Optional[str]
local_file_path
typing.Optional[str]
checkpoint_params
typing.Optional[typing.Dict[str, typing.Union[str, typing.List[str]]]]
batch_request_config
typing.Optional[flytekitplugins.great_expectations.task.BatchRequestConfig]
context_root_dir
str
Methods
from_dict()
def from_dict (
kvs: typing. Union[dict, list, str, int, float, bool, NoneType],
infer_missing,
) -> ~ A
Parameter
Type
kvs
typing.Union[dict, list, str, int, float, bool, NoneType]
infer_missing
from_json()
def from_json (
s: typing. Union[str, bytes, bytearray],
parse_float,
parse_int,
parse_constant,
infer_missing,
kw,
) -> ~ A
Parameter
Type
s
typing.Union[str, bytes, bytearray]
parse_float
parse_int
parse_constant
infer_missing
kw
schema()
def schema (
infer_missing: bool,
only,
exclude,
many: bool,
context,
load_only,
dump_only,
partial: bool,
unknown,
) -> SchemaType[A]
Parameter
Type
infer_missing
bool
only
exclude
many
bool
context
load_only
dump_only
partial
bool
unknown
to_dict()
def to_dict (
encode_json,
) -> typing. Dict[str, typing. Union[dict, list, str, int, float, bool, NoneType]]
Parameter
Type
encode_json
to_json()
def to_json (
skipkeys: bool,
ensure_ascii: bool,
check_circular: bool,
allow_nan: bool,
indent: typing. Union[int, str, NoneType],
separators: typing. Tuple[str, str],
default: typing. Callable,
sort_keys: bool,
kw,
) -> str
Parameter
Type
skipkeys
bool
ensure_ascii
bool
check_circular
bool
allow_nan
bool
indent
typing.Union[int, str, NoneType]
separators
typing.Tuple[str, str]
default
typing.Callable
sort_keys
bool
kw
flytekitplugins.great_expectations.schema.GreatExpectationsType
Use this class to send the GreatExpectationsFlyteConfig.
Methods
config()
Base transformer type that should be implemented for every python native type that can be handled by flytekit
def GreatExpectationsTypeTransformer ()
Methods
assert_type()
def assert_type (
t: Type[T],
v: T,
)
Parameter
Type
t
Type[T]
v
T
from_binary_idl()
def from_binary_idl (
binary_idl_object: Binary,
expected_python_type: Type[T],
) -> Optional[T]
This function primarily handles deserialization for untyped dicts, dataclasses, Pydantic BaseModels, and attribute access.`
For untyped dict, dataclass, and pydantic basemodel:
Life Cycle (Untyped Dict as example):
python val -> msgpack bytes -> binary literal scalar -> msgpack bytes -> python val
(to_literal) (from_binary_idl)
For attribute access:
Life Cycle:
python val -> msgpack bytes -> binary literal scalar -> resolved golang value -> binary literal scalar -> msgpack bytes -> python val
(to_literal) (propeller attribute access) (from_binary_idl)
Parameter
Type
binary_idl_object
Binary
expected_python_type
Type[T]
from_generic_idl()
def from_generic_idl (
generic: Struct,
expected_python_type: Type[T],
) -> Optional[T]
TODO: Support all Flyte Types.
This is for dataclass attribute access from input created from the Flyte Console.
Note:
This can be removed in the future when the Flyte Console support generate Binary IDL Scalar as input.
Parameter
Type
generic
Struct
expected_python_type
Type[T]
get_config()
def get_config (
t: typing. Type[flytekitplugins. great_expectations. schema. GreatExpectationsType],
) -> typing. Tuple[typing. Type, flytekitplugins. great_expectations. schema. GreatExpectationsFlyteConfig]
Parameter
Type
t
typing.Type[flytekitplugins.great_expectations.schema.GreatExpectationsType]
get_literal_type()
def get_literal_type (
t: typing. Type[flytekitplugins. great_expectations. schema. GreatExpectationsType],
) -> flytekit. models. types. LiteralType
Converts the python type to a Flyte LiteralType
Parameter
Type
t
typing.Type[flytekitplugins.great_expectations.schema.GreatExpectationsType]
guess_python_type()
def guess_python_type (
literal_type: LiteralType,
) -> Type[T]
Converts the Flyte LiteralType to a python object type.
Parameter
Type
literal_type
LiteralType
isinstance_generic()
def isinstance_generic (
obj,
generic_alias,
)
Parameter
Type
obj
generic_alias
to_html()
def to_html (
ctx: FlyteContext,
python_val: T,
expected_python_type: Type[T],
) -> str
Converts any python val (dataframe, int, float) to a html string, and it will be wrapped in the HTML div
Parameter
Type
ctx
FlyteContext
python_val
T
expected_python_type
Type[T]
to_literal()
def to_literal (
ctx: flytekit. core. context_manager. FlyteContext,
python_val: typing. Union[flytekit. types. file. file. FlyteFile, flytekit. types. schema. types. FlyteSchema, str],
python_type: typing. Type[flytekitplugins. great_expectations. schema. GreatExpectationsType],
expected: flytekit. models. types. LiteralType,
) -> flytekit. models. literals. Literal
Converts a given python_val to a Flyte Literal, assuming the given python_val matches the declared python_type.
Implementers should refrain from using type(python_val) instead rely on the passed in python_type. If these
do not match (or are not allowed) the Transformer implementer should raise an AssertionError, clearly stating
what was the mismatch
Parameter
Type
ctx
flytekit.core.context_manager.FlyteContext
python_val
typing.Union[flytekit.types.file.file.FlyteFile, flytekit.types.schema.types.FlyteSchema, str]
python_type
typing.Type[flytekitplugins.great_expectations.schema.GreatExpectationsType]
expected
flytekit.models.types.LiteralType
to_python_value()
def to_python_value (
ctx: flytekit. core. context_manager. FlyteContext,
lv: flytekit. models. literals. Literal,
expected_python_type: typing. Type[flytekitplugins. great_expectations. schema. GreatExpectationsType],
) -> flytekitplugins. great_expectations. schema. GreatExpectationsType
Converts the given Literal to a Python Type. If the conversion cannot be done an AssertionError should be raised
Parameter
Type
ctx
flytekit.core.context_manager.FlyteContext
lv
flytekit.models.literals.Literal
expected_python_type
typing.Type[flytekitplugins.great_expectations.schema.GreatExpectationsType]
Properties
Property
Type
Description
is_async
name
python_type
This returns the python type
type_assertions_enabled
Indicates if the transformer wants type assertions to be enabled at the core type engine layer