Skip to main content

DataSemver

PyPI Python License: MIT

Your data changed. DataSemver tells you whether that is a patch, a minor or a breaking release.

DataSemver compares two versions of a CSV, JSON or Parquet dataset, classifies every difference it finds against a configurable rule set, and returns the semantic version bump plus a ready-to-commit changelog entry. It is a CLI first and a Python library second, and it needs no schema registry, no database and no service running.

Install

pip install datasemver              # library and CLI
pip install "datasemver[web]"       # adds the dashboard
pipx install datasemver             # standalone command

Python 3.10 or newer. The package ships typed, so py.typed annotations reach type checkers.

Use it

datasemver diff old.csv new.csv --current-version 1.4.2
╭───────────── DataSemver ──────────────╮
│ Suggested bump: MAJOR                 │
│ 0.0.0 -> 1.0.0                        │
│                                       │
│ old: old.csv (8 rows)                 │
│ new: new.csv (10 rows)                │
╰───────────────────────────────────────╯
                                    Columns
┏━━━━━━━━━━━━━┳━━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━┳━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━┓
┃ column      ┃ status    ┃ type old ┃ type new ┃ nulls         ┃ cardinality ┃
┡━━━━━━━━━━━━━╇━━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━╇━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━┩
│ country     │ added     │ -        │ string   │ - -> 0.0%     │ - -> 4      │
│ phone       │ modified  │ int64    │ string   │ 0.0% -> 0.0%  │ 8 -> 10     │
│ email       │ modified  │ string   │ string   │ 25.0% -> 0.0% │ 6 -> 10     │
│ legacy_code │ removed   │ string   │ -        │ 0.0% -> -     │ 8 -> -      │
└─────────────┴───────────┴──────────┴──────────┴───────────────┴─────────────┘
                                        Changes
┏━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ severity ┃ rule                      ┃ description                                   ┃
┡━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ MAJOR    │ column_removed            │ Column 'legacy_code' was removed              │
│ MAJOR    │ type_changed_incompatible │ Column 'phone' changed type from int64 to     │
│          │                           │ string                                        │
│ MINOR    │ row_count_increased       │ Row count grew from 8 to 10 (+25.00%)         │
│ MINOR    │ column_added              │ Column 'country' was added                    │
│ PATCH    │ nulls_fixed               │ Column 'email' nulls dropped from 25.0% to    │
│          │                           │ 0.0%                                          │
└──────────┴───────────────────────────┴───────────────────────────────────────────────┘

A removed column and an int64 that became a string make this a breaking release. Without --output, the changelog entry is printed at the end; with it, the entry is prepended to the file you name.

datasemver diff old.csv new.csv --output CHANGELOG.md
datasemver diff old.csv new.csv --json | jq -r '.bump'
datasemver rules examples/lenient_rules.yaml
Option Short Description
--rules PATH -r Rule file replacing the bundled defaults
--current-version TEXT -c Version the new dataset is bumped from (default 0.0.0)
--output PATH -o Write the changelog entry, prepending it if the file exists
--json Print the full report as JSON instead of the tables

What it looks at

  • Schema — columns added, removed and renamed, dtype changes, nullability.
  • Content — row counts, cardinality, mean and standard deviation of numeric columns, mode and category sets of categorical ones.
  • Semantics — renames inferred from the similarity of both the column name and its values, so user_name becoming username is one rename rather than a removal plus an addition.

The bump is the strongest severity across every classified change. Changes no rule covers are reported as unclassified and never inflate it.

Bump Meaning for consumers
Major Existing queries and pipelines can break
Minor New information, existing contracts still hold
Patch Same meaning, better data

Formats

Detected by extension: .csv, .tsv, .json, .jsonl, .ndjson, .parquet, .pq.

The delimiter of a .csv is detected from its first lines — comma, semicolon, tab and pipe are recognised, and a character that only appears inside quoted values does not win — while .tsv always uses the tab. Set DATASEMVER_CSV_DELIMITER to skip detection and force one character, the tab written as \t.

Nested JSON objects and Parquet structs are flattened with a ., so {"user": {"name": "..."}} is profiled as user.name. Types are inferred for the text formats; Parquet carries its own schema and is trusted as it stands.

Rules

Every severity is a list of rules, evaluated major, then minor, then patch. The first rule that matches a change assigns its severity.

major:
  - column_removed
  - type_changed_incompatible
  - row_count_decrease_greater_than: 20

minor:
  - column_added
  - row_count_decreased

patch:
  - nulls_fixed
  - minor_stat_change

Pass it with --rules custom.yaml, and check how it was parsed with datasemver rules custom.yaml. Threshold rules pair with their plain counterpart in a lower severity, which then acts as the fallback. Unknown rule names and severities are errors, not silent no-ops.

Python API

from datasemver import analyze

report = analyze("old.csv", "new.csv", current_version="1.4.2")

print(report.bump)          # Severity.MAJOR
print(report.next_version)  # 2.0.0

for item in report.classified:
    print(item.severity, item.rule, item.change.description)

analyze_schemas() takes two already loaded profiles, so dataframes from anywhere can be compared without touching the filesystem:

import pandas as pd
from datasemver.core.analyzer import analyze_schemas
from datasemver.formats.loader import schema_from_frame

report = analyze_schemas(
    schema_from_frame(pd.read_sql(query, engine), "warehouse@yesterday"),
    schema_from_frame(pd.read_sql(query, engine), "warehouse@today"),
)

Also in the box

  • A web dashboard — FastAPI backend, no-build frontend — under the web extra. It is a local tool with no authentication: keep it on the loopback interface.
  • A GitHub Action that analyses the datasets a pull request touches and posts the suggested bump as a comment, rewritten on each push.
  • Two ready-made rule profiles, strict and lenient, and a full catalogue of rules, metrics and thresholds.

Those, the source, the changelog and a Spanish edition of this page live in the project repository, linked from this page's sidebar.

Security

Reading a dataset parses it. CSV and JSON go through pandas and the standard library, which do not execute file content; Parquet goes through pyarrow, and the dependency floor is pyarrow>=23.0.1 because earlier versions carried a critical code-execution flaw (CVE-2023-47248) triggered by a malicious Parquet file. Do not lower that floor. Rule files are YAML loaded with yaml.safe_load and cannot execute code. The library and the CLI never open a socket, and write nothing unless you pass --output.

License

MIT.

Download files

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

Source Distribution

datasemver-0.2.4.tar.gz (60.9 kB view details)

Uploaded Source

Built Distribution

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

datasemver-0.2.4-py3-none-any.whl (24.1 kB view details)

Uploaded Python 3

File details

Details for the file datasemver-0.2.4.tar.gz.

File metadata

  • Download URL: datasemver-0.2.4.tar.gz
  • Upload date:
  • Size: 60.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for datasemver-0.2.4.tar.gz
Algorithm Hash digest
SHA256 3c43e790ed2ae6d061ec226447e1d90295649c6ca1b094839b9c555720b4e169
MD5 701321f98745ceb94c771d1b2b4c181d
BLAKE2b-256 26ebf2967d4baedae55c6aaca05d0fe8a6d7b7c58969486a69b6304857300286

See more details on using hashes here.

File details

Details for the file datasemver-0.2.4-py3-none-any.whl.

File metadata

  • Download URL: datasemver-0.2.4-py3-none-any.whl
  • Upload date:
  • Size: 24.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for datasemver-0.2.4-py3-none-any.whl
Algorithm Hash digest
SHA256 27bdf347cef579cf5726614f04a1874584e5d21d52838ac229d901c262c2510d
MD5 b24834bbd55a230514440034768dcd37
BLAKE2b-256 cf8f8853861b69b8218f23b7b1f7b60207c9795e659da081efd7c29416859f35

See more details on using hashes here.

Release history Release notifications | RSS feed

0.2.5

2 files

This release

0.2.4 This release

2 files

0.2.3

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page