Skip to main content

A lightweight data contracts library

Project description

🔍 Wimsey

Codeberg PyPi

Docs License coverage

Wimsey is lightweight, flexible and fully open-source data contract library.

  • 🐋 Bring your own dataframe library: Built on top of Narwhals so your tests are carried out natively in your own dataframe library (including Pandas, Polars, Pyspark, Dask, DuckDB, CuDF, Rapids, Arrow and Modin)
  • 🎍 Bring your own contract format: Write contracts in yaml, json or python - whichever you prefer!
  • 🪶 Ultra Lightweight: Built for fast imports and minimal overwhead with only two dependencies (Narwhals and FSSpec)
  • 🥔 Simple, easy API: Low mental overheads with two simple functions for testing dataframes, and a simple dataclass for results.

Check out the handy test catalogue and quick start guide

What is a data contract?

As well as being a good buzzword to mention at your next data event, data contracts are a good way of testing data values at boundary points. Ideally, all data would be usable when you recieve it, but you probably already have figured that's not always the case.

A data contract is an expression of what should be true of some data - we might want to check that the only columns that exist are first_name, last_name and rating, or we might want to check that rating is a number less than 10.

Wimsey let's you write contracts in json, yaml or python, here's how the above checks would look in yaml:

- test: columns_should
  be:
    - first_name
    - last_name
    - rating
- column: rating
  test: max_should
  be_less_than_or_equal_to: 10

Wimsey then can execute tests for you in a couple of ways, validate - which will throw an error if tests fail, and otherwise pass back your dataframe - and test, which will give you a detailed run down of individual test success and fails.

Validate is designed to work nicely with polars or pandas pipe methods as a handy guard:

import polars as pl
import wimsey

df = (
  pl.read_csv("hopefully_nice_data.csv")
  .pipe(wimsey.validate, "tests.json")
  .group_by("name").agg(pl.col("value").sum())
)

Test is a single function call, returning a FinalResult data-type:

import pandas as pd
import wimsey

df = pd.read_csv("hopefully_nice_data.csv")
results = wimsey.test(df, "tests.yaml")

if results.success:
  print("Yay we have good data! 🥳")
else:
  print(f"Oh nooo, something's up! 😭")
  print([i for i in results.results if not i.success])

Roadmap, Contributing & Feedback

Wimsey is still pre v1. There's a lot more to come soon in the form of additional available data tests and friendly error messages. Data profiling in particular is still being developed, and liable to change behaviour at fairly short notice.

Wimsey's mirrored on github, but hosted and developed on codeberg. Issues and pull requests are accepted on both.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wimsey-0.8.0.tar.gz (95.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

wimsey-0.8.0-py3-none-any.whl (13.7 kB view details)

Uploaded Python 3

File details

Details for the file wimsey-0.8.0.tar.gz.

File metadata

  • Download URL: wimsey-0.8.0.tar.gz
  • Upload date:
  • Size: 95.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for wimsey-0.8.0.tar.gz
Algorithm Hash digest
SHA256 34a79598e1fdac94da887c296a4cf484844a6ae141b5a4153ca0e49e505caf75
MD5 84c09e5fc382c68a4d83b5e060889738
BLAKE2b-256 e99c5c23d092dca5e6dace1b2354c7ccb3063baeb3861f149819c62a421fe3f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for wimsey-0.8.0.tar.gz:

Publisher: release.yml on benrutter/wimsey

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wimsey-0.8.0-py3-none-any.whl.

File metadata

  • Download URL: wimsey-0.8.0-py3-none-any.whl
  • Upload date:
  • Size: 13.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for wimsey-0.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4d83ae8d9c8ffa110ac0ad0370d63721ff3ac1485d299c2a661a9e8282b60361
MD5 1385be0d38c368d2f3ef0c960517b88d
BLAKE2b-256 8f3757b11aa1870cef462eef7cdeeec80dbbe112bffda62eca3291426d4c26b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for wimsey-0.8.0-py3-none-any.whl:

Publisher: release.yml on benrutter/wimsey

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page