🌐 AI搜索 & 代理 主页
Skip to content

A minimal Python library for tracking, auditing, and reporting data cleaning and transformation steps with full transparency

License

Notifications You must be signed in to change notification settings

Sidra-009/cleancore-python-library

Repository files navigation

CleanCore

CleanCore is a dependency-free data transformation audit framework.

Unlike data profilers, CleanCore tracks:

  • What changed
  • Which rows were affected
  • Before / after values
  • Why it changed (business rule)
  • Compliance-ready audit trail

Example

from cleancore import AuditEngine
import pandas as pd

df = pd.read_csv("Groceries_dataset.csv")

engine = AuditEngine(df)
cleaned_df, audit = engine.run()

print(cleaned_df.head())
print(audit)

About

A minimal Python library for tracking, auditing, and reporting data cleaning and transformation steps with full transparency

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages