A Python package for comparing splurge and lazyframe functionality
Project description
splurge-lazyframe-compare
A compact, high-performance toolkit for comparing Polars LazyFrames and generating structured difference reports.
See the detailed documentation for usage, configuration, API reference, examples, and advanced topics:
- Detailed docs: docs/README-DETAILS.md
- Changelog: CHANGELOG.md
Quick install
pip install splurge-lazyframe-compare
Minimal example
from splurge_lazyframe_compare import LazyFrameComparator, ComparisonConfig
import polars as pl
left = pl.LazyFrame({"id": [1,2], "value": [10, 20]})
right = pl.LazyFrame({"id": [1,2], "value": [10, 21]})
config = ComparisonConfig(pk_columns=["id"]) # basic config for identical columns
comp = LazyFrameComparator(config)
results = comp.compare(left, right)
print(results.summary)
For full details, examples, and troubleshooting, see docs/README-DETAILS.md.
Contributions welcome — see CONTRIBUTING.md for guidelines.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file splurge_lazyframe_compare-2025.3.0.tar.gz.
File metadata
- Download URL: splurge_lazyframe_compare-2025.3.0.tar.gz
- Upload date:
- Size: 43.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba279963f7cdae5344addf1cb741b20f66cf464f4f1f93523b0e72f15140442f
|
|
| MD5 |
a2b73532e66787e9b050f57a4d640eea
|
|
| BLAKE2b-256 |
a33a9e2f4cd3fa054382f8307bd97649f2aaad59363dd65974d36e46bc4ced90
|
File details
Details for the file splurge_lazyframe_compare-2025.3.0-py3-none-any.whl.
File metadata
- Download URL: splurge_lazyframe_compare-2025.3.0-py3-none-any.whl
- Upload date:
- Size: 56.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a460193ca89992d2bf89249019343be3419e3f7f00735da0db3b5bc0ec60fac5
|
|
| MD5 |
d38c4bc3ece8f51f69306f8b3d76b4d5
|
|
| BLAKE2b-256 |
9b4aabae6c327e1fd59c562c03f4365eb13fa31ed86b7cdfbe8eeaf56a458849
|