Skip to content
ai-supply.store
DiscoverCategoriesLeaderboardsCommunityAgent APIFAQ
Sign inSign up free
catalog / Data & ETL / Great Expectations
△EvalData & ETLFree

Great Expectations

Data quality framework for defining, testing, and documenting expectations about your data pipelines.

@ai-supply
Installs185k
⟳ upstream 1.19.1 · updated 3d ago
↗ Source repository
← More Data & ETLData & ETL leaderboard →How we grade security →Source ↗
! Grade B · 75/100 · ReviewSecurity assessment
✓No compromise signals29capabilities surfaced1known CVE5of 20 OWASP controls clear
Broad capability surfaceSuspicious code patternsSuspicious code patternsSuspicious code patterns
scanned 1d ago·osv · gitleaks · opengrep · picklescan + heuristics·full breakdown in the Security tab ↓

Great Expectations

Great Expectations (GX) is the leading open-source Python library for data quality. It lets you define "expectations" — assertions about your data — and automatically generates human-readable documentation and data quality reports.

Key Features

  • Expectation Suite: 300+ built-in expectations (column types, ranges, uniqueness, regex, statistical distributions)
  • Data Docs: Auto-generated HTML reports showing expectation results with data samples
  • Checkpoints: Integrate validation into Airflow, Prefect, Dagster, dbt, or any CI/CD pipeline
  • Multi-backend: Validate data in Pandas, Spark, Snowflake, BigQuery, Redshift, Databricks
  • Custom expectations: Extend with Python for domain-specific rules
  • Profiling: Auto-generate an initial Expectation Suite from a data sample

Quick Start

pip install great_expectations
gx init
import great_expectations as gx

context = gx.get_context()
batch = context.sources.pandas_default.read_csv("my_data.csv")

batch.expect_column_values_to_not_be_null("user_id")
batch.expect_column_values_to_be_between("age", min_value=0, max_value=120)
batch.expect_column_values_to_match_regex("email", r".+@.+\..+")

results = batch.validate()
print(results.success)

Add to ai-supply

npx ai-supply add great-expectations-data-quality

Curated mirror of the open-source Great Expectations (Apache-2.0). Get it from the source.

Rating rank
#1
of 24 in Data & ETL
Install rank
#7
of 24 in Data & ETL
Security score
75/100 · B
review
Security rank
#12
of 24 in Data & ETL
Installs
185k
cat avg 164k
This listing vs category average
Installs
this
cat avg
Security (of 100)
this
cat avg
Adoption trend
See the Data & ETL leaderboard →
! Security: Review · 7575/100 · grade Bscanned 1d ago
✓ no compromise signals30 risk-surface · 9/20 OWASP controls flagged

Compromise signals — malicious or tampered code (leaked secrets, backdoors, a dropped executable) — reduce the score, and known dependency CVEs carry a bounded penalty (they warrant review but never QUARANTINE — update the dependency to clear). Other dangerous-by-capability traits are risk surface, expected for some capabilities. Every finding is mapped to its OWASP control below.

Control card · high confidence (static)
framework: pytestcovers: prompt-injectioncovers: secrets-leak
markdowntextareainputdropdowncheckstringdoicheck_dependencies

Findings mapped to the OWASP Top 10 for LLM Applications (2025) and the OWASP Machine Learning Security Top 10. Expand any flagged control for the exact findings — compromise reduces the score; expected/risk-surface do not, except a known CVE, which carries a small bounded penalty (high/critical → Review).

OWASP Top 10 for LLM Applications
⚠LLM03Supply Chaincritical
Vulnerable/compromised dependencies, models or archives in the artifact.
•Dependency manifest — 4 npm dependencies declared · fivetran-great_expectations-33614cd/assets/scripts/AlgoliaScripts/package.jsonrisk surface
•Dependency manifest — 5 pip requirements declared · fivetran-great_expectations-33614cd/contrib/capitalone_dataprofiler_expectations/requirements.txtrisk surface
•Dependency manifest — 8 pip requirements declared · fivetran-great_expectations-33614cd/contrib/cli/requirements.txtrisk surface
•Dependency manifest — 13 pip requirements declared · fivetran-great_expectations-33614cd/contrib/great_expectations_geospatial_expectations/requirements.txtrisk surface
•Dependency manifest — 37 pip requirements declared · fivetran-great_expectations-33614cd/contrib/great_expectations_semantic_types_expectations/requirements.txtrisk surface
•Dependency manifest — 1 pip requirements declared · fivetran-great_expectations-33614cd/contrib/time_series_expectations/requirements.txtrisk surface
•Dependency manifest — 39 npm dependencies declared · fivetran-great_expectations-33614cd/docs/docusaurus/package.jsonrisk surface
•Non-registry dependency source — 1 dependency/ies pulled from git/URL/file · fivetran-great_expectations-33614cd/docs/docusaurus/package.json (CWE-829)risk surface
•Vulnerable dependencies — 115 known vulnerabilities in: click@7.1.2, pydantic@1.0, pytest@5.3.5, pyarrow@14, azure-identity@1.10.0, azure-storage-blob@12.5.0, orjson@3.9.7, flask@1.0.0 (CWE-1395)known CVE · -25 pts
⚠LLM02Sensitive Information Disclosurehigh
Secrets, credentials or PII shipped inside the artifact.
•Email addresses present — contains email-like strings · fivetran-great_expectations-33614cd/.github/actions/cla-status/decide.test.jsexpected
•Credit-card-like number — a number passes the Luhn checksum · fivetran-great_expectations-33614cd/contrib/great_expectations_geospatial_expectations/great_expectations_geospatial_expectations/expectations/expect_column_minimum_bounding_radius_to_be_between.py (CWE-359)expected
•Phone number present — contains phone number-like pattern (E.164 or formatted) · fivetran-great_expectations-33614cd/contrib/great_expectations_semantic_types_expectations/great_expectations_semantic_types_expectations/expectations/expect_column_values_ip_address_in_network.py (CWE-359)expected
•US-SSN-like pattern — matches ###-##-#### · fivetran-great_expectations-33614cd/contrib/great_expectations_semantic_types_expectations/great_expectations_semantic_types_expectations/expectations/expect_column_values_to_be_valid_ssn.py (CWE-359)expected
•Embedded credentials — found: hardcoded credential · fivetran-great_expectations-33614cd/docs/docusaurus/src/theme/SearchBar/index.js (CWE-798)expected
⚠LLM05Improper Output Handlinghigh
Code that pipes model/user output into shell, eval, SQL or paths unsafely.
•Suspicious code patterns — environment/secret exfiltration · fivetran-great_expectations-33614cd/assets/scripts/AlgoliaScripts/upload_s3_expectation_to_algolia.js (CWE-200)risk surface
•Suspicious code patterns — OS command execution · fivetran-great_expectations-33614cd/ci/checks/check_integration_test_gets_run.py (CWE-78)risk surface
•Suspicious code patterns — unsafe yaml.load · fivetran-great_expectations-33614cd/contrib/cli/great_expectations_contrib/package.py (CWE-502)risk surface
•Suspicious code patterns — dynamic code execution · fivetran-great_expectations-33614cd/contrib/experimental/great_expectations_experimental/expectations/expect_column_values_to_follow_rule.py (CWE-95)risk surface
•Suspicious code patterns — OS command execution; dynamic code execution; unsafe yaml.load · fivetran-great_expectations-33614cd/docs/docusaurus/docs/oss/guides/setup/configuring_metadata_stores/how_to_configure_a_validation_result_store_in_gcs.py (CWE-78)risk surface
•Suspicious code patterns — OS command execution; unsafe yaml.load · fivetran-great_expectations-33614cd/docs/docusaurus/docs/oss/guides/setup/configuring_metadata_stores/how_to_configure_an_expectation_store_in_gcs.py (CWE-78)risk surface
•Suspicious code patterns — scheduled-task persistence · fivetran-great_expectations-33614cd/docs/docusaurus/versioned_docs/version-0.18/oss/guides/validation/advanced/how_to_deploy_a_scheduled_checkpoint_with_cron.mdrisk surface
⚠LLM06Excessive Agencyhigh
Over-broad tool/permission surface or unrestricted egress.
•External endpoints declared — 3 distinct host(s) · fivetran-great_expectations-33614cd/.clabotexpected
•External endpoints declared — 1 distinct host(s) · fivetran-great_expectations-33614cd/.github/ISSUE_TEMPLATE/config.ymlexpected
•Broad capability surface — 3 high-impact capability categories referenced — verify least-privilege · fivetran-great_expectations-33614cd/.github/actions/cla-status/action.yml (CWE-272)risk surface
•External endpoints declared — 8 distinct host(s) · fivetran-great_expectations-33614cd/.github/workflows/ci.ymlexpected
•External endpoints declared — 2 distinct host(s) · fivetran-great_expectations-33614cd/.github/workflows/cla-check.ymlexpected
•External endpoints declared — 18 distinct host(s) · fivetran-great_expectations-33614cd/DEVELOPMENT.mdexpected
•External endpoints declared — 14 distinct host(s) · fivetran-great_expectations-33614cd/README.mdexpected
•External endpoints declared — 6 distinct host(s) · fivetran-great_expectations-33614cd/assets/scripts/AlgoliaScripts/.gitignoreexpected
•External endpoints declared — 5 distinct host(s) · fivetran-great_expectations-33614cd/contrib/capitalone_dataprofiler_expectations/README.mdexpected
•External endpoints declared — 4 distinct host(s) · fivetran-great_expectations-33614cd/contrib/capitalone_dataprofiler_expectations/package_info.ymlexpected
•External endpoints declared — 7 distinct host(s) · fivetran-great_expectations-33614cd/docs/docusaurus/docs/help/compatibility_reference.mdexpected
•Broad capability surface — 4 high-impact capability categories referenced — verify least-privilege · fivetran-great_expectations-33614cd/docs/docusaurus/docs/oss/changelog.md (CWE-272)risk surface
•Egress to a private/loopback host — 127.0.0.1 · fivetran-great_expectations-33614cd/docs/docusaurus/docs/reference/learn/integrations/dbt_tutorial.md (CWE-918)expected
•External endpoints declared — 9 distinct host(s) · fivetran-great_expectations-33614cd/docs/docusaurus/docs/reference/learn/integrations/dbt_tutorial.mdexpected
•External endpoints declared — 10 distinct host(s) · fivetran-great_expectations-33614cd/docs/docusaurus/docusaurus.config.jsexpected
⚠LLM07System Prompt Leakagehigh
Secrets, internal hosts or proprietary logic exposed in shipped prompts.
•Internal host / private infrastructure reference — shipped content references a private IP range or internal-only host · fivetran-great_expectations-33614cd/contrib/great_expectations_semantic_types_expectations/great_expectations_semantic_types_expectations/expectations/expect_column_values_ip_address_in_network.py (CWE-200)risk surface
•Embedded credentials — found: hardcoded credential · fivetran-great_expectations-33614cd/docs/docusaurus/src/theme/SearchBar/index.js (CWE-798)expected
⚠LLM08Vector and Embedding Weaknesseshigh
PII or plaintext source leakage in embedding/vector exports.
Embedding inversion/poisoning is largely runtime; static check covers PII in vector exports.
•Email addresses present — contains email-like strings · fivetran-great_expectations-33614cd/.github/actions/cla-status/decide.test.jsexpected
•Credit-card-like number — a number passes the Luhn checksum · fivetran-great_expectations-33614cd/contrib/great_expectations_geospatial_expectations/great_expectations_geospatial_expectations/expectations/expect_column_minimum_bounding_radius_to_be_between.py (CWE-359)expected
•Phone number present — contains phone number-like pattern (E.164 or formatted) · fivetran-great_expectations-33614cd/contrib/great_expectations_semantic_types_expectations/great_expectations_semantic_types_expectations/expectations/expect_column_values_ip_address_in_network.py (CWE-359)expected
•US-SSN-like pattern — matches ###-##-#### · fivetran-great_expectations-33614cd/contrib/great_expectations_semantic_types_expectations/great_expectations_semantic_types_expectations/expectations/expect_column_values_to_be_valid_ssn.py (CWE-359)expected
§LLM09MisinformationGovernance
Artifacts designed to produce false/deceptive output.
Detectable only by runtime behavioral evaluation; addressed via responsible-use attestation.
◷LLM10Unbounded ConsumptionRuntime-enforced
Unbounded loops/recursion causing DoS or runaway cost.
Enforced at runtime by the gateway (rate limits + spend caps + size caps); static check flags unbounded loops.
✓LLM01Prompt InjectionPassed
✓LLM04Data and Model PoisoningPassed
Backdoors/poisoning in training data or serialized models.
Behavioral poisoning needs model execution; static check covers unsafe serialization + dataset skew only.
OWASP Machine Learning Security Top 10
⚠ML06AI Supply Chaincritical
Compromised PyPI/npm packages, typosquats, unsafe serialized models.
•Dependency manifest — 4 npm dependencies declared · fivetran-great_expectations-33614cd/assets/scripts/AlgoliaScripts/package.jsonrisk surface
•Dependency manifest — 5 pip requirements declared · fivetran-great_expectations-33614cd/contrib/capitalone_dataprofiler_expectations/requirements.txtrisk surface
•Dependency manifest — 8 pip requirements declared · fivetran-great_expectations-33614cd/contrib/cli/requirements.txtrisk surface
•Dependency manifest — 13 pip requirements declared · fivetran-great_expectations-33614cd/contrib/great_expectations_geospatial_expectations/requirements.txtrisk surface
•Dependency manifest — 37 pip requirements declared · fivetran-great_expectations-33614cd/contrib/great_expectations_semantic_types_expectations/requirements.txtrisk surface
•Dependency manifest — 1 pip requirements declared · fivetran-great_expectations-33614cd/contrib/time_series_expectations/requirements.txtrisk surface
•Dependency manifest — 39 npm dependencies declared · fivetran-great_expectations-33614cd/docs/docusaurus/package.jsonrisk surface
•Non-registry dependency source — 1 dependency/ies pulled from git/URL/file · fivetran-great_expectations-33614cd/docs/docusaurus/package.json (CWE-829)risk surface
•Vulnerable dependencies — 115 known vulnerabilities in: click@7.1.2, pydantic@1.0, pytest@5.3.5, pyarrow@14, azure-identity@1.10.0, azure-storage-blob@12.5.0, orjson@3.9.7, flask@1.0.0 (CWE-1395)known CVE · -25 pts
⚠ML02Data Poisoninghigh
Poisoned training datasets with triggers or anomalous distributions.
Static check covers trigger phrasing, PII and label skew; full poisoning detection is runtime.
•Email addresses present — contains email-like strings · fivetran-great_expectations-33614cd/.github/actions/cla-status/decide.test.jsexpected
•Credit-card-like number — a number passes the Luhn checksum · fivetran-great_expectations-33614cd/contrib/great_expectations_geospatial_expectations/great_expectations_geospatial_expectations/expectations/expect_column_minimum_bounding_radius_to_be_between.py (CWE-359)expected
•Phone number present — contains phone number-like pattern (E.164 or formatted) · fivetran-great_expectations-33614cd/contrib/great_expectations_semantic_types_expectations/great_expectations_semantic_types_expectations/expectations/expect_column_values_ip_address_in_network.py (CWE-359)expected
•US-SSN-like pattern — matches ###-##-#### · fivetran-great_expectations-33614cd/contrib/great_expectations_semantic_types_expectations/great_expectations_semantic_types_expectations/expectations/expect_column_values_to_be_valid_ssn.py (CWE-359)expected
⚠ML09Output Integrityhigh
Middleware tampering with model outputs in transit.
Gateway enforces TLS + response integrity; static check flags output-rewriting code.
•Suspicious code patterns — environment/secret exfiltration · fivetran-great_expectations-33614cd/assets/scripts/AlgoliaScripts/upload_s3_expectation_to_algolia.js (CWE-200)risk surface
•Suspicious code patterns — OS command execution · fivetran-great_expectations-33614cd/ci/checks/check_integration_test_gets_run.py (CWE-78)risk surface
•Suspicious code patterns — unsafe yaml.load · fivetran-great_expectations-33614cd/contrib/cli/great_expectations_contrib/package.py (CWE-502)risk surface
•Suspicious code patterns — dynamic code execution · fivetran-great_expectations-33614cd/contrib/experimental/great_expectations_experimental/expectations/expect_column_values_to_follow_rule.py (CWE-95)risk surface
•Suspicious code patterns — OS command execution; dynamic code execution; unsafe yaml.load · fivetran-great_expectations-33614cd/docs/docusaurus/docs/oss/guides/setup/configuring_metadata_stores/how_to_configure_a_validation_result_store_in_gcs.py (CWE-78)risk surface
•Suspicious code patterns — OS command execution; unsafe yaml.load · fivetran-great_expectations-33614cd/docs/docusaurus/docs/oss/guides/setup/configuring_metadata_stores/how_to_configure_an_expectation_store_in_gcs.py (CWE-78)risk surface
•Suspicious code patterns — scheduled-task persistence · fivetran-great_expectations-33614cd/docs/docusaurus/versioned_docs/version-0.18/oss/guides/validation/advanced/how_to_deploy_a_scheduled_checkpoint_with_cron.mdrisk surface
§ML01Input Manipulation (Adversarial)Governance
Models vulnerable to adversarial perturbations.
Requires runtime robustness evaluation; addressed via publisher robustness attestation.
§ML03Model InversionGovernance
Training data reconstructable from a model's outputs.
Runtime/evaluation property; addressed via model-card data-provenance + DP attestation.
§ML04Membership InferenceGovernance
Determining whether a record was in the training set.
Runtime/evaluation property; addressed via overfitting disclosure + DP attestation.
§ML08Model SkewingGovernance
Models trained on skewed data producing biased output.
Requires fairness evaluation; addressed via model-card bias/limitations disclosure.
✓ML05Model TheftPassed
Unlicensed re-distribution / license-incompatible derivatives.
Static check verifies license declaration; extraction throttling is runtime.
✓ML07Transfer Learning AttackPassed
Backdoored base models / LoRA adapters propagating to derivatives.
Backdoor detection needs behavioral probing; static check covers unsafe serialization + provenance.
✓ML10Model Poisoning (Weights)Passed
Tampered model weight files; integrity must be verifiable.
Static check enforces safe formats + records a content hash for downstream verification.
Other findings (18) · hygiene / uncategorized
•Unrecognized file type — '.clabot' is not on the allowlist · fivetran-great_expectations-33614cd/.clabotrisk surface
•Unrecognized file type — '.git-blame-ignore-revs' is not on the allowlist · fivetran-great_expectations-33614cd/.git-blame-ignore-revsrisk surface
•Unrecognized file type — '.gitattributes' is not on the allowlist · fivetran-great_expectations-33614cd/.gitattributesrisk surface
•Unrecognized file type — '.gitignore' is not on the allowlist · fivetran-great_expectations-33614cd/.gitignorerisk surface
•Unrecognized file type — '.cff' is not on the allowlist · fivetran-great_expectations-33614cd/CITATION.cffrisk surface
•Unrecognized file type — '.?' is not on the allowlist · fivetran-great_expectations-33614cd/LICENSErisk surface
•Unrecognized file type — '.in' is not on the allowlist · fivetran-great_expectations-33614cd/MANIFEST.inrisk surface
•Unrecognized file type — '.cnf' is not on the allowlist · fivetran-great_expectations-33614cd/assets/docker/mysql/conf.d/docker.cnfrisk surface
•Unrecognized file type — '.ge_store_backend_id' is not on the allowlist · fivetran-great_expectations-33614cd/contrib/capitalone_dataprofiler_expectations/capitalone_dataprofiler_expectations/tests/data_profiler_files/fixtures/yellow_tripdata_pandas_fixture/great_expectations/expectations/.ge_store_backend_idrisk surface
•Unrecognized file type — '.adr-dir' is not on the allowlist · fivetran-great_expectations-33614cd/docs/.adr-dirrisk surface
•Unrecognized file type — '.nvmrc' is not on the allowlist · fivetran-great_expectations-33614cd/docs/docusaurus/.nvmrcrisk surface
•Unrecognized file type — '.mdx' is not on the allowlist · fivetran-great_expectations-33614cd/docs/docusaurus/docs/components/_python_version.mdxrisk surface
•Unrecognized file type — '.md_template' is not on the allowlist · fivetran-great_expectations-33614cd/docs/docusaurus/docs/core/_core_components/component_templates/_prerequisite.md_templaterisk surface
•Unrecognized file type — '.drawio' is not on the allowlist · fivetran-great_expectations-33614cd/docs/docusaurus/docs/core/introduction/overview_images/gx_overview.drawiorisk surface
•Suspicious network references — raw IP URL (14 URLs) · fivetran-great_expectations-33614cd/docs/docusaurus/docs/reference/learn/integrations/dbt_tutorial.mdrisk surface
•Unrecognized file type — '.scss' is not on the allowlist · fivetran-great_expectations-33614cd/docs/docusaurus/src/components/NavbarItems/ColorModeToggle/styles.module.scssrisk surface
•Unrecognized file type — '.webmanifest' is not on the allowlist · fivetran-great_expectations-33614cd/docs/docusaurus/static/site.webmanifestrisk surface
•Unrecognized file type — '.gitkeep' is not on the allowlist · fivetran-great_expectations-33614cd/docs/docusaurus/versioned_docs/version-0.18/cloud/why_gx_cloud_images/.gitkeeprisk surface
✔ verified source · pinned fivetran-great_expectations-33614cd
Check against a policy

The same gate an agent runs before installing (POST /api/v1/trust/great-expectations-data-quality/check). Click a policy:

Consume Great Expectations programmatically. Authenticate with an API key or session — see Authorize an agent.

# Agents: CHECK BEFORE YOU INSTALL (no auth) — score, grade, level, capability manifest
curl https://ai-supply.store/api/v1/trust/great-expectations-data-quality

# Gate against your org policy (returns { pass, violations })
curl -X POST https://ai-supply.store/api/v1/trust/great-expectations-data-quality/check \
  -H "Content-Type: application/json" \
  -d '{"minGrade":"B","denyPermissions":["shell"],"denyUnknownEgress":true}'

# CLI
npx ai-supply add great-expectations-data-quality

# REST (install → download)
curl -X POST https://ai-supply.store/api/v1/listings/great-expectations-data-quality/install \
  -H "Authorization: Bearer $AIM_KEY"

# MCP tool
install_listing({ "slug": "great-expectations-data-quality" })
OpenAPI spec →
vlatest
! Security: Review · 751mo ago

Curated mirror — latest upstream source. See the repository for tagged releases.

Sign in and install this listing to leave a review.

More from @ai-supply

View profile →
◉Agent
MetaGPT
Multi-agent framework that assigns GPT roles (PM, engineer, QA) to solve complex software tasks end-to-end.
↓ 1.0M
⇄Connector
vLLM
High-throughput, memory-efficient LLM inference engine with PagedAttention and continuous batching.
↓ 892k
⇄Connector
Meilisearch
Lightning-fast open-source search engine with typo-tolerance, semantic hybrid search, and sub-50ms response times.
↓ 811k
△Eval
Weights & Biases (wandb)
ML experiment tracking and visualization — log metrics, hyperparameters, models, and media in real time.
↓ 784k
ai-supply.store

Free, security-vetted AI capabilities — skills, MCPs, plugins, agents, datasets and more, each graded and freshness-tracked, and built for humans and agents alike.

api · v3.1status · all green
Contact
support@ai-supply.storesecurity@ai-supply.store
Catalog
  • Discover
  • Categories
  • Leaderboards
  • Benchmarks
  • Security
  • Scan a repo
Community
  • Community
  • FAQ
For agents
  • Quickstart (60s)
  • Authorize an agent
  • Agent API
  • OpenAPI spec
For builders
  • Publish
  • Dashboard
Account
  • Create account
  • Sign in
  • Settings
Legal
  • Terms
  • Publisher Agreement
  • Acceptable Use
  • Privacy