Skip to main content

Zero Effort Data Analysis — 1TB files in seconds, C++ parallel core

Project description

Zedda Logo

Zedda

Zero Effort Data Analysis

The world's fastest EDA library — C++17 powered, pip installable, 1TB in seconds.

PyPI Version Python Downloads License: MIT OpenSSF Scorecard OpenSSF Best Practices Build PRs Welcome


⚡ What is Zedda?

Zedda is a blazing-fast Exploratory Data Analysis (EDA) library for Python. It replaces dozens of lines of pandas boilerplate with a single function call — and runs 2,000× faster than traditional tools by offloading all heavy computation to a custom C++17 streaming engine.

import zedda as zd
import pandas as pd

# Directly from a file
zd.profile("titanic.csv")   # Full EDA report in 19ms
zd.ml_ready("data.csv")     # ML readiness score out of 100
zd.compare("train.csv", "test.csv")  # Drift detection in one line

# Or directly from a pandas DataFrame!
df = pd.read_csv("titanic.csv")
zd.profile(df)
zd.clean(df, apply=True)    # Returns a pristine DataFrame

🆚 How Does It Compare?

Feature pandas ydata-profiling Zedda
Titanic (891 rows) manual, 0.8s ~45s 19ms ⚡
6.3M row CSV manual, 8.2s OOM crash 23s ⚡
1TB Parquet OOM crash OOM crash < 2s ⚡
RAM usage $O(N)$ $O(N)$ $O(\text{cols})$ ✅
pip install size ~30 MB 200 MB+ < 1 MB ✅
Pearson correlation manual slow single-pass ✅
ML readiness hints
Auto-Fix Code Gen
Data Drift Detection

🚀 Installation

pip install zedda
  • No C++ compiler needed — pre-built wheels for Windows, macOS, and Linux
  • Requires Python 3.9+
  • Tiny install — less than 1 MB, no heavy dependencies

✨ Features & API

1. zd.profile() — Full EDA Report

Instantly generate a beautiful, rich terminal report with data quality scores, outlier detection, distribution stats, and single-pass Pearson correlations — all in milliseconds.

import zedda as zd

zd.profile("data.csv")         # CSV
zd.profile("data.parquet")     # Parquet — uses footer cheat code
zd.profile("data.arrow")       # Arrow IPC
zd.profile("big.csv", sample_size=500_000)  # Force sampling
zd.profile() output showing dataset overview, data quality score, and column statistics table
zd.profile() — Full dataset EDA in a single line. Data Quality Score, column stats, Smart Warnings, and Pearson correlations.

2. zd.ml_ready() — ML Readiness Score

Computes an ML Readiness score out of 100 by flagging nulls, extreme outliers, high cardinality, multi-collinearity, and more.

zd.ml_ready("data.csv")
zd.ml_ready() output showing ML Readiness score, warnings per column, and suggested next step code
zd.ml_ready() — Scores your dataset for ML training readiness, flags every problem column.

3. zd.compare() — Data Drift Detection

Detect data drift between Train/Test splits or Production vs. Baseline in one line. Uses Z-score distribution shift detection (threshold > 1.0) and flags new categories not seen in training.

zd.compare("train.csv", "test.csv")
zd.compare() and zd.warnings() output showing new categories detected and all smart warnings
zd.compare() — Automatically detects new categories and distribution shifts between two datasets.

4. zd.fix() — Auto-Fix Code Generation

Don't just find the issues — fix them. Zedda generates exact, copy-pasteable pandas or scikit-learn code snippets to resolve every detected problem.

zd.fix("data.csv")             # Print fix code snippets

# Or apply them directly — returns a clean DataFrame!
clean_df = zd.fix("data.csv", apply=True)

5. zd.warnings() — Smart Warnings

View all data quality warnings for your dataset in a clean, structured list.

zd.warnings("data.csv")

6. zd.clean() — AI-Powered Cleaning

Zedda can automatically clean your data by dropping sparse columns, imputing missing values with median/mode, and removing ID columns.

# Prints the exact pandas code to clean the file
zd.clean("data.csv")

# Instantly returns the cleaned DataFrame ready for ML!
clean_df = zd.clean("data.csv", apply=True)

7. zd.merge() — Intelligent Merging

Merge datasets with automatic semantic alignment, detecting distribution shifts and schema mismatches before they break your pipeline.

zd.merge(["part1.csv", "part2.csv"], output="combined.csv")

8. zd.ask() — Natural Language Queries

Ask plain-English questions about your dataset and get instant answers. Features a fast offline rule engine for common questions (no API key needed) and Zedda AI for complex analytical queries.

Note: Complex AI queries require setting the ZEDDA_AI_KEY environment variable. You can get a free API key from Groq to use the Llama-3-70B model backend.

# Instant offline answers (no API key needed)
zd.ask("titanic.csv", "which columns have more than 10% nulls?")
zd.ask("titanic.csv", "what is the survival rate by class?")

# Zedda AI for complex questions (requires ZEDDA_AI_KEY)
import os
os.environ["ZEDDA_AI_KEY"] = "gsk_..."
zd.ask("data.csv", "which features should I use for a random forest?")

9. zd.scan() — Programmatic Access

Need raw stats for your own pipelines? scan() returns the full profile object silently — no terminal output.

p = zd.scan("titanic.csv")

print(p.num_rows)              # 891
print(p.num_cols)              # 12
print(p.overall_null_pct)      # 28.3

for col in p.columns:
    if col.null_pct > 20:
        print(f"High nulls: {col.name} ({col.null_pct:.1f}%)")

See full API reference: docs/API.md


🖥️ CLI Usage

Zedda ships with a full command-line interface:

# Profile a file directly in your terminal
zedda run data.csv

# Compare two datasets
zedda compare train.csv test.csv

# Quick file info (fast, no full scan)
zedda info data.csv

# Show version
zedda version

🧠 Architecture — How It Works

Zedda is built on a custom C++17 streaming core connected to Python via nanobind — the fastest Python/C++ binding library available.

  Python API (zd.profile, zd.scan, zd.compare ...)
        │
        │  nanobind (zero-copy)
        ▼
  C++ Streaming Engine
  ┌─────────────────────────────────────────────────────┐
  │  Welford's Algorithm    →  Mean / StdDev / Skew     │
  │  HyperLogLog            →  Cardinality (16KB/col)   │
  │  Pearson Engine         →  O(1) memory correlation  │
  │  Parquet Footer Reader  →  Exact min/max from meta  │
  │  Stratified Sampler     →  99.9% accuracy, 100x I/O │
  └─────────────────────────────────────────────────────┘
        │
        │  Arrow C Data Interface (zero-copy)
        ▼
  PyArrow (Parquet / Arrow IPC file reading)
Algorithm What It Does Why
Welford's Online Algorithm Stable mean/variance/stddev/skewness/kurtosis Single-pass, no catastrophic cancellation
HyperLogLog Cardinality estimation (~99% accuracy) Uses only 16 KB per column, regardless of dataset size
Pearson Correlation Engine Exact $r$ value for every column pair $O(1)$ memory, single-pass, no second file read
Parquet Footer Cheat Code Reads exact nulls/min/max from file footer Milliseconds for any file size, no data scan needed
Stratified Row-Group Sampling Picks start, middle, and end row groups 99.9% statistical accuracy with 100× less I/O

💾 Memory Usage

Zedda uses $O(\text{columns})$ memory — not $O(\text{rows})$. It never loads the full dataset — it streams chunks and updates constant-size running accumulators.

Dataset pandas RAM Zedda RAM
1M rows, 10 cols ~800 MB ~2 MB
10M rows, 30 cols ~8 GB ~6 MB
1TB Parquet OOM ~50 MB

📊 Benchmarks

Tested on MacBook Pro M2, 16 GB RAM.

Dataset pandas describe() ydata-profiling Zedda
Titanic (891 rows, 12 cols) 0.8s 42.0s 0.019s
Fraud (6.3M rows, 31 cols) 8.2s (no insights) OOM 23.0s
1TB Parquet (footer mode) OOM OOM 1.8s

Zedda on Fraud: with Smart Warnings + Pearson correlations included.


🛣️ Roadmap

Status Phase Description
Phase 1 C++ streaming core (Welford, HyperLogLog)
Phase 2 Zero-copy Parquet + Arrow support
Phase 3 Intelligent Sampling Engine (1TB in 2s)
Phase 3.1 Smart Warnings, Data Quality Score, Pearson Correlation
Phase 4 zd.ml_ready() and zd.fix() — ML readiness + auto-fix code gen
Phase 5 zd.compare() — Data drift detection for production vs. baseline
Phase 6 zd.ask() — Natural language queries over your dataset
Phase 7 zd.clean() & zd.merge() — Auto-cleaning & intelligent file merging

💬 Community

Join the discussion! We'd love to hear your feedback and help you get started.


🤝 Contributing

Contributions are welcome and appreciated! Zedda is actively maintained and open to PRs of all sizes.

Quick Start for Contributors

# 1. Fork and clone the repository
git clone https://github.com/Zedda-Labs/Zedda.git --recursive
cd Zedda

# 2. Install in editable/development mode
pip install -e ".[dev]"

# 3. Run the test suite
pytest tests/

# 4. Make your changes and open a PR!

See the full contribution guide: CONTRIBUTING.md


🔐 Security

If you discover a security vulnerability, please report it privately via GitHub's Security Advisoriesdo not open a public issue.

See: SECURITY.md


📄 License

Zedda is open source software licensed under the MIT License.

See LICENSE for details.


Built with passion and C++17

PyPIGitHubIssuesContributingAPI Docs

If Zedda saved you time, please give it a ⭐ on GitHub — it helps a lot!

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

zedda-0.4.4.tar.gz (2.2 MB view details)

Uploaded Source

Built Distributions

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

zedda-0.4.4-cp313-cp313-win_amd64.whl (356.6 kB view details)

Uploaded CPython 3.13Windows x86-64

zedda-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl (640.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

zedda-0.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (192.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

zedda-0.4.4-cp313-cp313-macosx_11_0_arm64.whl (158.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zedda-0.4.4-cp313-cp313-macosx_10_14_x86_64.whl (164.8 kB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

zedda-0.4.4-cp312-cp312-win_amd64.whl (356.7 kB view details)

Uploaded CPython 3.12Windows x86-64

zedda-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl (640.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

zedda-0.4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (192.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

zedda-0.4.4-cp312-cp312-macosx_11_0_arm64.whl (158.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zedda-0.4.4-cp312-cp312-macosx_10_14_x86_64.whl (164.8 kB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

zedda-0.4.4-cp311-cp311-win_amd64.whl (357.2 kB view details)

Uploaded CPython 3.11Windows x86-64

zedda-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl (642.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

zedda-0.4.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (193.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

zedda-0.4.4-cp311-cp311-macosx_11_0_arm64.whl (159.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zedda-0.4.4-cp311-cp311-macosx_10_14_x86_64.whl (165.7 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

zedda-0.4.4-cp310-cp310-win_amd64.whl (357.4 kB view details)

Uploaded CPython 3.10Windows x86-64

zedda-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl (642.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

zedda-0.4.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (194.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

zedda-0.4.4-cp310-cp310-macosx_11_0_arm64.whl (159.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zedda-0.4.4-cp310-cp310-macosx_10_14_x86_64.whl (165.8 kB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

zedda-0.4.4-cp39-cp39-win_amd64.whl (358.4 kB view details)

Uploaded CPython 3.9Windows x86-64

zedda-0.4.4-cp39-cp39-musllinux_1_2_x86_64.whl (642.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

zedda-0.4.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (194.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

zedda-0.4.4-cp39-cp39-macosx_11_0_arm64.whl (159.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

zedda-0.4.4-cp39-cp39-macosx_10_14_x86_64.whl (166.1 kB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

File details

Details for the file zedda-0.4.4.tar.gz.

File metadata

  • Download URL: zedda-0.4.4.tar.gz
  • Upload date:
  • Size: 2.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zedda-0.4.4.tar.gz
Algorithm Hash digest
SHA256 f4dcde30528b500e0abd45ae4830efd2b38753991c69918def3a1e4ea2458695
MD5 480bc440ea320aa1c65ba3d1d2823cb0
BLAKE2b-256 ac768e381d3871b90beca89f2ba98d51c84749b915153f21a03dbfb3062517c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4.tar.gz:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: zedda-0.4.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 356.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zedda-0.4.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ef15d29170726b282c734cfcde518cc27e20f312da41a2c04f3f94599840a851
MD5 d195b85cba4a716e4c371defb5f78157
BLAKE2b-256 3f4f8ea14dc5026f1fbefb7906ae132851abd8fbf02819fef85e77400c37cf82

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a57d3d266290584059f9781ed242378eee196aae3de29647debb793d905dc38c
MD5 cbf251ea279505462cc7aedf323ed9ff
BLAKE2b-256 0132143bacb0558373e17797292af8ece1facb134135756960510766fa114faf

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2dc2956db1518665d2abc3ad99825cc20952430f732be0c0a756167e08ee3fa3
MD5 610a394ce28ef09c3a87697a0bc202be
BLAKE2b-256 9a102ce372078eb563e6bab220a74aaa84d535c46a2b9df608221af97a3f461c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zedda-0.4.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11007804e1b18fadd12fdab3002e354f8b901a5891d836bc12ff38433bcf9c0b
MD5 50dfae845f715946e8c900f1af5205a8
BLAKE2b-256 264e3718cbf5cb8b22a2274b7cfa6b07f804e4162185aba50ac5c6e712c441fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp313-cp313-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.4-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 0e9df4da6035756d738fbefbee2fca914a0ca9e084b852bec7cddb1bebae2eb9
MD5 48122064b85a2d6d042a4fd012c385d2
BLAKE2b-256 49df24a51b4a8b60e17713a1ff92924f5c8decddb0d1dbca5c8b60d49818732e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp313-cp313-macosx_10_14_x86_64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: zedda-0.4.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 356.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zedda-0.4.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 06212847a686ba3d7d823889eb685354dc373a2bb91c6a15bac775abca36bf75
MD5 2f4826dc5b69a71a1d091097ee29486e
BLAKE2b-256 0895154c53c8d3d84e14aed3c0a378dc4b494260d093efb54aeb6eac4f07fc1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9f5a35e1a56ea64fc8aa037ad34a5c8e46157bd18833ee2dbfb3d74160a5e99
MD5 b5c4d1ab341349697c6f6cf67995e92a
BLAKE2b-256 a9095dcb2ba82b0f99ea922bd22200411c18ae994c2ab03fc804fcf4b052e454

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 17712c49f93995bb2d95380f628ada069be38450541c84d06e5da89f29da636e
MD5 1768031a39f694d43b1cbca8b01596fd
BLAKE2b-256 2d5a34d76dcbfa5958336e245d621aca5615227f7134733a0adf7c427912749c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zedda-0.4.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d4069a7cd539bbaae37880b40afcd7d96e574f831de79b2e489ed29da3a6739
MD5 53fdbc7e563f137d87405368b0db0b15
BLAKE2b-256 f17c40579a639fa830448dfa5527cd12d67cf47831b324f2a1ac6a44ebf505de

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp312-cp312-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.4-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f7c21012aae116c1c8111e4d1d72f5e3dba82a547c6f5be421b85e775349dc2c
MD5 63f888a6b9e742454f34fae984d8e811
BLAKE2b-256 6ff49c907d95951afd1ed13ad8c554257eddee931fc56e2cd2fb39ca55801083

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp312-cp312-macosx_10_14_x86_64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: zedda-0.4.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 357.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zedda-0.4.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9f2bf68df1be467efea8233141f9c011fbb2fbc30b32207e2a516d1924a2fb63
MD5 948f0a0971239c644c011c01464321e3
BLAKE2b-256 4c9e2919270f287865411f7f008c56804d0524176019253fe807794c08c7abb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 60bdcfb861850c5edf4d3421239c526b74dbfcae964ed94bd25e05fcab2c4067
MD5 6a73d2f7205d0f0e639dd19500032df3
BLAKE2b-256 9b8c3a820fded9f71725f69286ad8d632725f2688ae8511eb12c863fa04c8c75

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5311d13962e7eda5b7397292b81dcd569e5bf2c882379e37a820c0621fd514ae
MD5 509d7e4bcf5e857413d3962efc066a0a
BLAKE2b-256 57bc3f9a347030037b701855234d939fff58d6fc3d3a929e1fa1fbef5cbb20ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zedda-0.4.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f02dd88c59491951c1735c360d75826b9fcbab0e34c4c632d641afdd783b6df
MD5 36fea8bf02e92aebccc550c799829671
BLAKE2b-256 5e92357c46f4b9e83c9cd405ce57700648ccd34c6a9ade239d660f31b075f0ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp311-cp311-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.4-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 7b117024765c0cd2488ef67bf55f5e0eabb6e3350fd3aae7347efd41327b07ae
MD5 465103fc8ae62a5af6f474908134e116
BLAKE2b-256 334667679e8137fed3d7af354607f3eea5b9e5ed09af91e13299931a2ba81669

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp311-cp311-macosx_10_14_x86_64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: zedda-0.4.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 357.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zedda-0.4.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 95c3f2e6632b7d346651aabe137161008c12faeaa78e9d267e3888608871a56f
MD5 bb10b9acdbfce6625c056f2aae79c7ec
BLAKE2b-256 1b17254237964a334f978964afcbd6aaabac5e7ade350932df0d595a23cbcc41

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0eff87492ee5a02091b40e23c8c113b598a5a57b4a6087ac9041dbb248130d0
MD5 19eee0d9de4a1a3647afb36ca4131f8f
BLAKE2b-256 76799bde951fe9d1b3f7d514ca83201657c9ec906e6287b0530d518de64b2f38

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d1cf6b995a168ce7219549a45151c2febaa95a5d4a100abde14d4d6fdeb1152c
MD5 eecf9486de5fdebc7c4d8ba3b938b239
BLAKE2b-256 c180d180022ef71c5ff7dc5ead06679614c236d6f10211c9368ca8c5abdba7e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zedda-0.4.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9da959499d50edbcb1df03ad6626d07d9d26d7ec4ff7e67e021d49b82518edbe
MD5 638b013b08352199d7dadb2ee145ef46
BLAKE2b-256 e1f35b70e4ae3c7690ce3d88251a67d60fb7a45dc4a41ca3fce45091e461c4aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp310-cp310-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.4-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 fdb38bf7a3ab85eddd707542cee4a8087ed72dc7bca62b188ee64ee7f4d831c5
MD5 3cd736f88abb727aaa95284a3a466212
BLAKE2b-256 8987abe263394eddbb59f087df7df576364164f2a2496eac8cf0b4ebb5ea6304

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp310-cp310-macosx_10_14_x86_64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: zedda-0.4.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 358.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zedda-0.4.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cf3b44149f21cbe7fde31ad6c1407e551c9d3865f2485a3bb115044464b5bad6
MD5 92b9d016449c784245d6ae89cfa0c7be
BLAKE2b-256 0e3cf8da3e7beaabdafd29e2fb9388d90cc702652c277febe3cc5e49e2795aee

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: zedda-0.4.4-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 642.9 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zedda-0.4.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef5f64187c2f6d2b6f690ed7db25e39297d3b650b7796be571d8305367bab2ea
MD5 3aff21f36dfcc8a535ef8c5013f3c035
BLAKE2b-256 ea2103910faf79c63dc5a0b1f1eeb61dd8befcf5a125f389df78787fc97f94d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2ddfbe8e5c68b2085e263fc139f4351defe5f077c502467d41685d023282fdfa
MD5 ed0bb5ddff9313658bf6c62dd66cf7f0
BLAKE2b-256 4e2f139ad3c04a1578fe13a2182ed336a6e50b16703c0cbd092a2db20e5a4bd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zedda-0.4.4-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 159.8 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zedda-0.4.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d49cb72e04e3e280ddd2367d1bde198d809722e101a847652f8719d0ac96d15
MD5 dbfaeb51014fb33dcaf5f4105f8749f4
BLAKE2b-256 9604562311cf725dc7f1c405101bb8bdde1b010716b4affe215a34f997140d7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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

File details

Details for the file zedda-0.4.4-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.4-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 271700811ee01a8028c54dfd3ea17e0200ff17d5da89229be0a64c760ad1dbdb
MD5 34f0acffd2927eed8e226b691dcc7d28
BLAKE2b-256 f184fded70f3c5fbe69bde642b33654caeff2e24653f94c9c9563488f49aed97

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.4-cp39-cp39-macosx_10_14_x86_64.whl:

Publisher: build_wheels.yml on Zedda-Labs/Zedda

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