great_expectations.core.data_context_key

Module Contents

Classes

DataContextKey()

DataContextKey objects are used to uniquely identify resources used by the DataContext.

StringKey(key)

A simple DataContextKey with just a single string value

DataContextVariableKey(resource_name: Optional[str] = None)

DataContextKey objects are used to uniquely identify resources used by the DataContext.

class great_expectations.core.data_context_key.DataContextKey

DataContextKey objects are used to uniquely identify resources used by the DataContext.

A DataContextKey is designed to support clear naming with multiple representations including a hashable version making it suitable for use as the key in a dictionary.

abstract to_tuple(self)
classmethod from_tuple(cls, tuple_)
abstract to_fixed_length_tuple(self)
abstract classmethod from_fixed_length_tuple(cls, tuple_)
__eq__(self, other)

Return self==value.

__ne__(self, other)

Return self!=value.

__lt__(self, other)

Return self<value.

__le__(self, other)

Return self<=value.

__gt__(self, other)

Return self>value.

__ge__(self, other)

Return self>=value.

__hash__(self)

Return hash(self).

__repr__(self)

Return repr(self).

class great_expectations.core.data_context_key.StringKey(key)

Bases: great_expectations.core.data_context_key.DataContextKey

A simple DataContextKey with just a single string value

to_tuple(self)
to_fixed_length_tuple(self)
classmethod from_fixed_length_tuple(cls, tuple_)
class great_expectations.core.data_context_key.DataContextVariableKey(resource_name: Optional[str] = None)

Bases: great_expectations.core.data_context_key.DataContextKey

DataContextKey objects are used to uniquely identify resources used by the DataContext.

A DataContextKey is designed to support clear naming with multiple representations including a hashable version making it suitable for use as the key in a dictionary.

property resource_name(self)
to_tuple(self)

See parent DataContextKey.to_tuple for more information.

to_fixed_length_tuple(self)

See parent DataContextKey.to_fixed_length_tuple for more information.

classmethod from_fixed_length_tuple(cls, tuple_: tuple)

See parent DataContextKey.from_fixed_length_tuple for more information.