Great Expectations
Great Expectations Integration with ETIQ library details
Overview
Use Cases
Running An Existing Expectation Suite
import great_expectations as ge
context = ge.get_context()
# What Suites do we have?
suite_names = context.list_expectation_suite_names()
# For example...
chosen_suite = suite_names[0]
# Now tell ETIQ to run them;
(segments, issues, aggregates) = snapshot.scan_expectations(context=context, suite_name=chosen_suite)
Importing Existing Results
Declaring Expectations In Code
Declaring Expectations in JSON Config
Syntax/Required Sections
Integration API Documentation
Snapshot.get_validator() -> Validator
Snapshot.scan_expectations(validator, context, suite_name, results)
Last updated