great_expectations.experimental.context

Module Contents

Classes

DataContext(context_root_dir: Optional[DirectoryPath] = None)

NOTE: this is just a scaffold for exploring and iterating on our experimental datasource prototype

Functions

get_context(context_root_dir: Optional[DirectoryPath] = None, **kwargs)

Experimental get_context placeholder function.

great_expectations.experimental.context.LOGGER
class great_expectations.experimental.context.DataContext(context_root_dir: Optional[DirectoryPath] = None)

NOTE: this is just a scaffold for exploring and iterating on our experimental datasource prototype this will be formalized and tested prior to release.

Use great_expectations.get_context() for a real DataContext.

_context :ClassVar[Optional[DataContext]]
_config :ClassVar[Optional[GxConfig]]
_datasources :Dict[str, Datasource]
root_directory :Union[DirectoryPath, str, None]
classmethod get_context(cls, context_root_dir: Optional[DirectoryPath] = None, _config_file: str = 'config.yaml')
property sources(self)
_attach_datasource_to_context(self, datasource: Datasource)
get_datasource(self, datasource_name: str)
great_expectations.experimental.context.get_context(context_root_dir: Optional[DirectoryPath] = None, **kwargs) → DataContext

Experimental get_context placeholder function.