Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Zedda-Labs/Zedda

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

254 Commits
254 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Zedda

Zero Effort Data Discovery & Analytics

C++17-powered EDA and data cleaning engine for Python.

PyPI version Python versions Downloads Tests License

Guide · API reference · How it works · Contributing · Security


What is Zedda

Zedda profiles, cleans, and validates datasets from a single Python call. Its core is written in C++17 and streams data in constant memory, so it scales from a 900-row CSV to a terabyte-scale Parquet file without changing how you use it.

Installation

pip install --upgrade pip                  # Ensure pip >= 22.3 for abi3 wheel recognition
pip install zedda                          # CSV only — zero native deps
pip install "zedda[parquet]"               # adds Parquet/Arrow/Feather support
pip install "zedda[clean]"                 # adds fuzzy typo detection
pip install "zedda[ai]"                    # adds AI Q&A (zd.ask with Groq/OpenAI)
pip install "zedda[parquet,clean,ai]"      # everything together

Platform support:

Platform Base install [parquet] extra
Linux x86_64 (glibc >= 2.17 / musl) ✅ prebuilt wheel ✅ prebuilt pyarrow wheel
Linux ARM64 (aarch64) ✅ prebuilt wheel ✅ prebuilt pyarrow wheel
macOS Intel (x86_64) ✅ prebuilt wheel ✅ prebuilt pyarrow wheel
macOS Apple Silicon (ARM64) ✅ prebuilt wheel ✅ prebuilt pyarrow wheel
Windows x86_64 ✅ prebuilt wheel ✅ prebuilt pyarrow wheel
Windows ARM64 ✅ prebuilt wheel ⚠️ pyarrow has no win_arm64 wheel — Parquet requires manual build
Python 3.13 free-threaded (cp313t) ⚠️ Not yet supported — use standard Python 3.13

conda users: Zedda is not yet on conda-forge. Install via pip inside your conda environment:

conda activate myenv
pip install zedda

How to use

import zedda as zd

zd.profile("data.csv")  # full EDA report in terminal
zd.scan("data.csv")  # silent scan for CI/CD pipelines
zd.compare("train.csv", "test.csv")  # train/test drift detection
zd.fix("data.csv", apply=True)  # generate or apply pandas fix code
zd.ask("data.csv", "any nulls here?")  # plain-English dataset Q&A
zd.ml_ready("data.csv")  # readiness score for ML training
zd.warnings("data.csv")  # list all issues ranked by severity
zd.clean("data.csv", output="clean.csv")  # safe, backed-up auto-clean
zd.merge(["jan.csv", "feb.csv"], "out")  # safely combine multiple files
zd.report("data.csv", output="rep.html")  # export full report to offline HTML

Every function also accepts a pandas DataFrame directly — a file path is never required.

import pandas as pd

df = pd.read_csv("data.csv")
zd.profile(df)

See the full list of available functions in the API reference, and how the underlying engine works in How it works.

Installation from source

git clone https://github.com/Zedda-Labs/Zedda.git --recursive
cd Zedda
# C++17 build tools (cmake, ninja) are required
pip install cmake ninja
pip install -e ".[dev]"
pytest tests/

Contributing

Issues and pull requests are welcome. See CONTRIBUTING.md.

License

MIT — see LICENSE.

About

Open-source EDA library with 99% accuracy on cardinality estimation, O(columns) memory, single-pass stats.

Topics

Resources

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Releases

Packages

Used by

Contributors

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.