Skip to main content
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.

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.8.tar.gz (1.7 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.8-cp314-cp314-win_amd64.whl (396.1 kB view details)

Uploaded CPython 3.14Windows x86-64

zedda-0.4.8-cp314-cp314-musllinux_1_2_x86_64.whl (695.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

zedda-0.4.8-cp314-cp314-musllinux_1_2_aarch64.whl (665.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

zedda-0.4.8-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (201.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

zedda-0.4.8-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (192.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

zedda-0.4.8-cp314-cp314-macosx_11_0_arm64.whl (185.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zedda-0.4.8-cp313-cp313-win_amd64.whl (386.1 kB view details)

Uploaded CPython 3.13Windows x86-64

zedda-0.4.8-cp313-cp313-musllinux_1_2_x86_64.whl (695.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

zedda-0.4.8-cp313-cp313-musllinux_1_2_aarch64.whl (665.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

zedda-0.4.8-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (201.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

zedda-0.4.8-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (192.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

zedda-0.4.8-cp313-cp313-macosx_11_0_arm64.whl (185.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zedda-0.4.8-cp312-cp312-win_amd64.whl (386.2 kB view details)

Uploaded CPython 3.12Windows x86-64

zedda-0.4.8-cp312-cp312-musllinux_1_2_x86_64.whl (695.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

zedda-0.4.8-cp312-cp312-musllinux_1_2_aarch64.whl (665.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

zedda-0.4.8-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (201.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

zedda-0.4.8-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (192.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

zedda-0.4.8-cp312-cp312-macosx_11_0_arm64.whl (185.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zedda-0.4.8-cp311-cp311-win_amd64.whl (386.9 kB view details)

Uploaded CPython 3.11Windows x86-64

zedda-0.4.8-cp311-cp311-musllinux_1_2_x86_64.whl (696.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

zedda-0.4.8-cp311-cp311-musllinux_1_2_aarch64.whl (666.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

zedda-0.4.8-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (202.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

zedda-0.4.8-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (193.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

zedda-0.4.8-cp311-cp311-macosx_11_0_arm64.whl (187.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zedda-0.4.8-cp310-cp310-win_amd64.whl (387.1 kB view details)

Uploaded CPython 3.10Windows x86-64

zedda-0.4.8-cp310-cp310-musllinux_1_2_x86_64.whl (697.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

zedda-0.4.8-cp310-cp310-musllinux_1_2_aarch64.whl (667.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

zedda-0.4.8-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (203.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

zedda-0.4.8-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (194.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

zedda-0.4.8-cp310-cp310-macosx_11_0_arm64.whl (187.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zedda-0.4.8-cp39-cp39-win_amd64.whl (388.0 kB view details)

Uploaded CPython 3.9Windows x86-64

zedda-0.4.8-cp39-cp39-musllinux_1_2_x86_64.whl (697.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

zedda-0.4.8-cp39-cp39-musllinux_1_2_aarch64.whl (667.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

zedda-0.4.8-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (203.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

zedda-0.4.8-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (194.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

zedda-0.4.8-cp39-cp39-macosx_11_0_arm64.whl (187.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for zedda-0.4.8.tar.gz
Algorithm Hash digest
SHA256 10d7413e65460d6af8a2061273a4c76d9ab97f82fccd6c5507108295d59fb373
MD5 9982268844df22df140b5e86fa836f76
BLAKE2b-256 734b0a69e5237601eb8b909f8c3c8b4f92f8f4ead0e6e6a99b00de95e0479510

See more details on using hashes here.

Provenance

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

Publisher: release.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.8-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: zedda-0.4.8-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 396.1 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for zedda-0.4.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6d19cdeb8a0be41601a530c1f49e1c99259a672eb51ef6e746a811d64cf595d1
MD5 fb0cdcc849395207f49dce4c6286aad1
BLAKE2b-256 d0cb6b18b39ad1cf80d0ad5d0b242a412b0f29198f19257849ac71f9a2a917cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.8-cp314-cp314-win_amd64.whl:

Publisher: release.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.8-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc489aa0be5de6a4a9d9da05463437044e1f69de6dcedacad31168206d2b7ebe
MD5 c9088a0cc9c867ac986c69aeb2c67477
BLAKE2b-256 c38693403fdfe8147ca41cdd71ae480a130e0718919dcc66f931551a47b3b05f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.8-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.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.8-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97714be1f44883daf27a7d2f1593f1c9be1f487d958d97e6614524745cee5101
MD5 ad24f7b99e3856d19befc43ede2e8659
BLAKE2b-256 6950f984da711f773fd4dee7df4818eefdfa78bfda35034270496526380af181

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.8-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.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.8-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f5aae0bd82e2ab90264278cf7b1feea32216a155075e662fe88021643f94a808
MD5 93c626906242eec0847059fd861ac77d
BLAKE2b-256 c8f92259b91d669dc69c8e398220cbcf13579a056dba92fbd0b785d442b8e627

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.8-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.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.8-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2a04326c79d2f69ad08a7d2cee89974baf41d161d071425eaf321aeebaf5c722
MD5 773ace12bf98a2b0243d103e36c7b180
BLAKE2b-256 1648a98d6ce3d9dfb65067fd4f70d946bc0a4245a0cb5fec058eea48f45fbc5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.8-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.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.8-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3dd4771c3e552f85a3bff74e3236d301e4792cea620874c4c10c56153a4b88a8
MD5 c7338f89f7187ab80452c8490697228a
BLAKE2b-256 926aed1509995101532064f9f3c72420d0719ab7173d79d20e7a7586bbb92c91

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.8-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.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.8-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for zedda-0.4.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ab4965c30a6b884f2afe6df31940fb8ec49221b91975051337f13004f389cddd
MD5 50e0d8541090962c26591d6fb1e7f082
BLAKE2b-256 1774c5b7f186825142a5bc434531285dd939a8695dfceac2c9628094f943f001

See more details on using hashes here.

Provenance

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

Publisher: release.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.8-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 536575584b6d46074daf54267c99dcabc26da5d526183b75750e171762392cfd
MD5 e6f2c1f292f15be00436f744b271e073
BLAKE2b-256 86fe67e0fb06aa57d1677babd72509ab8764105cd031a1f47caaec56edeb73b6

See more details on using hashes here.

Provenance

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

Publisher: release.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.8-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8d1a669e88c4cb79245e02748df8ee43d897143d0fdbab898f5c7226963e703f
MD5 d2f3ee5fafa83cf9d815d672c89466ed
BLAKE2b-256 9ec13f0ae45ca29ad1436d5345ecfac92ca09c7449a6f2e92791bd1621952a1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.8-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.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.8-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2c1271396c7909667dbeb52b5d2168822cff67a130392cbe297b1032a5c1403f
MD5 4949793991288e7f56c777d9f69daadf
BLAKE2b-256 84e7ab8bdce100b662d88b2f8c6079aafd2af55ab209ffd3480d65f8075aab1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.8-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.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.8-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 238d32d7bbed1300806ec9f8265b97dc0ca9b0e512e91af85e3e7e12a61da04b
MD5 de772f9f8dd703a44ccf291e694d25f4
BLAKE2b-256 801308bc0528f0660bd7d5f0d9b7b941a14d62911d20a69bff9ad50c961d7a27

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.8-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.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.8-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b9b8e70d49cea6a45b5ad4093ec98fbb8c89c0f2345f97d8af52b53b46cdaa7
MD5 11b379098e4dd454ff3925bcbf2c6957
BLAKE2b-256 b5ee375612a60e2c746e682b7245f55150a59887933a0377437badf7903ed7b0

See more details on using hashes here.

Provenance

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

Publisher: release.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.8-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for zedda-0.4.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4f448bcafefbb6fd37ec0cbc70a3ce0e708e69a1fa7072de99a812dc62206bdd
MD5 6308f095b58abd4a43c533b3e3028289
BLAKE2b-256 933347cb3b8032fc22d14fbdccdde83c55a8667aad71867d8a3b43c4fe059835

See more details on using hashes here.

Provenance

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

Publisher: release.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.8-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b83c311f8bbb553a74f9ad97da1d0876ed371f7eec41cad936da5e6d335d183
MD5 2451e0cb8b9780342e31d852826a188c
BLAKE2b-256 b820cb6c1df38f05d6b2d158a269edd9ca39be06d389f380e89f97d913682093

See more details on using hashes here.

Provenance

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

Publisher: release.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.8-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 17a0260aa38e75e6c8d12e72d68d41579be88cbe91e4b0491ed616439ae7c941
MD5 961392031e4bbbbb56ff72a7c44f4137
BLAKE2b-256 680823275f21d6be009302d048b47b34abb7ec0e7bcc361577923dc65818bc74

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.8-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.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.8-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d16700f5fa6ac77912513d0b628e60db8ca5a3c6ca79c2e77d85b52a67fa256a
MD5 18bda560df09810e58e9564a40736a9a
BLAKE2b-256 a1e98f374d973ae8863f3c178baa667d34a3aa575a8261981017e707b8ba5d27

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.8-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.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.8-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 721eeca10115da3c53b9325f83f6a3b56f918c6131c8a7e963a9e7b71695f9d2
MD5 5b1c093f4aabf188263b8cdaef9dabd8
BLAKE2b-256 9a5a1c4b4f64bb1953e9544aad71b2e578dc256bce1e265af2a98050c21d124a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.8-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.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.8-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a238aa6d7ff5f6a5adcd7076ccf13768361bd1c310226eb82b7f0f3602d34277
MD5 dfd13bde917848f4f08e11b0b67da857
BLAKE2b-256 67f8f79ba4de79acf9b9580c32c72c15c5eadd51e3bc9c1d8e47be2ad9465e4b

See more details on using hashes here.

Provenance

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

Publisher: release.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.8-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for zedda-0.4.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 16e5e3ee79cbb771130c71eee9b10e6bd14cf3476750ede92afa8558d5a93398
MD5 4bbd56957f29e50f00efb8a7dcf2c085
BLAKE2b-256 3579a1466da8bb2ffaed9b2f8570da0529306962e7829ccd5445c5400003e1fe

See more details on using hashes here.

Provenance

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

Publisher: release.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.8-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c84789da665cd21b7f48b821c4965cf11972d47a77cb45fb0a8cbd623ffd283a
MD5 a0a426026bf950bef0f8a13b042ce99f
BLAKE2b-256 6ab93ed8f5e75dc4dbc8d7fb61c03dbfc1b3b120ec24e9f1897adb9499ea011c

See more details on using hashes here.

Provenance

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

Publisher: release.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.8-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf7a3b04e8cafab5208ce1c122ebeb40a53ec4c5c48ef5fa8cf3dac7746f3d65
MD5 7cdd7f9f65e66ce985eb50469a0b64c6
BLAKE2b-256 49254b2d50dd718a7ca8599c5d96782f2598fcaf8c7ab436d3f016d450bcc3e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.8-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.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.8-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2fd70363a77aed52ab885263be3c7687e7a89ff8501a23b95a20d7e2d482e605
MD5 9ede993a4c2d0551e6fb7445bd6d9add
BLAKE2b-256 c3e7174b9816f227d47baddce72add586cbf67ff5d1152d108d3d0ef3f2f23bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.8-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.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.8-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 084d8eb1545a05f862efe1b7e44c810aadc0ba3656a72b878d10455f71eba17d
MD5 34be21789ad0909a1cd0ad97ee09b904
BLAKE2b-256 52d467ef7b37992dc25aaea5aece7af8721f5a60d5ad46940e5d33c022fc40dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.8-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.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.8-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4096f86e1e827529573d7283ef6d4e9800060eb8d9d21f7d7737cb88897197bb
MD5 93e8a256022114e8e255ef769ac7139b
BLAKE2b-256 12d08b224675795aeef5d500e9245bb687601ce1257a035d862622dc84ddfdca

See more details on using hashes here.

Provenance

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

Publisher: release.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.8-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for zedda-0.4.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 19856e0d1c7012725c0911f7a7c3c00da4b773a17d122579224eb713fcb8016e
MD5 7a602ad1551cc8dbb6de466f5ca1ba63
BLAKE2b-256 80e581abbcc61f6307e8c4d7e307646e2afb861e262882374b086d3613d7c9ce

See more details on using hashes here.

Provenance

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

Publisher: release.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.8-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e5e593df363804ccaf6cfd41c12b91e53d5c76ccb49766f66728c4b4c9ab479
MD5 432dbd197dcfb7bf946555607e645913
BLAKE2b-256 76fb3809530d7b0305d2926da65f78e2859775102dbccc98526875378de605f7

See more details on using hashes here.

Provenance

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

Publisher: release.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.8-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 48748b076e021018ed04015c099008ec97f07b332a64854ff9f21a111f4c4cc4
MD5 33f383d7971c24576caa9e4c058d9821
BLAKE2b-256 55c3e21ecb535a77e512724784cb12ce4fd405ba4e68c526c38b14e0a9c00ec4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.8-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.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.8-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b13060ced977356a522b6d991af9e4667a25bbaaae77c67d88f0649b87005b59
MD5 88e0c4a51984fd5e291567d0a58f4314
BLAKE2b-256 c7c844f5361b7a67e53eeb2ad60f19f99a86d8463bc89821108243360d9ea17f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.8-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.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.8-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 216c525c0c056149cf77067a04914972d571b8de360838ce3ffe0b833cc8b70c
MD5 090418ba86b3d6a8be2235ab7be23e9d
BLAKE2b-256 0e69d00ed5d9afc52022507c32d11dc9fb37fd2479468be6dffc21f60b0b7390

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.8-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.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.8-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73d94b1dc76138858baba364553aa29ad8a56ca6d136f3f071ee2792a64817a1
MD5 3208f86eb6e43a845c310bbd79dfdb5f
BLAKE2b-256 f5110b9e9d1e007b8e6f1dce07e6e110b25810abdb489433c0e8085e0f3144c1

See more details on using hashes here.

Provenance

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

Publisher: release.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.8-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for zedda-0.4.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 76088a418896a1e308d119d9e0bf076cb3ed9f060e3d9ad1f10a60ee8426748a
MD5 cf43fe629ab1346bebce91bdc97d0993
BLAKE2b-256 be7c28f4750e8359ed1879fef93ecceecfe0dc06fedce527d71e740eff558deb

See more details on using hashes here.

Provenance

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

Publisher: release.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.8-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

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

File hashes

Hashes for zedda-0.4.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee0c5f5345a64d8a5c91a1e9aad9fb61ed53caf908b1246502ee508759a2643d
MD5 d1a3f970b465703875b4d3573a7b8452
BLAKE2b-256 637ec046bb0ddee56f90631f84153f33e4e7c4f99121a9e1384668c61180382c

See more details on using hashes here.

Provenance

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

Publisher: release.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.8-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27f73d42cb0d8795bc71775589d7baeceb176a0a89e37168a763e9200618675a
MD5 9933c715e85e923ed0abdca7b1d60637
BLAKE2b-256 6a2e3fc908a33686a44d6bff6d0c1bdeb6dc786995cf6f190656823ff5367738

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.8-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.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.8-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a37881a3f92dbdde27dbcd92265b718a02e4ffade1dc2f40686f39ab660c2ddc
MD5 831aae723bb62c2e51cd0b102a2a384a
BLAKE2b-256 70c412e2c110032d988e73a934a11ef42e1422348545b09274e9efd1e26060f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.8-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.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.8-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zedda-0.4.8-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 23ce026d6a45fd37beb10d2ec9ac7e762c92ec916fe13c7313082e6913a42a1b
MD5 c0fadbf4f588753b5908c1cf9a97a1e4
BLAKE2b-256 ba2f3b14cf1afd7348c531e7fc47215fc18d977bb76714ec8e291c3775247321

See more details on using hashes here.

Provenance

The following attestation bundles were made for zedda-0.4.8-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.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.8-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for zedda-0.4.8-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24a1dda6f2a9546467d67f00db18197f494f5711b36666f3df4089d06de581e6
MD5 ff8d5a01d7ce2159e5bcd4feb8e41c1e
BLAKE2b-256 75c1cfef53bf6eb3f759397478cb788ed4f06e179a3961ca3b97ee01b7ba0925

See more details on using hashes here.

Provenance

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

Publisher: release.yml on Zedda-Labs/Zedda

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

Release history Release notifications | RSS feed

This release

0.4.8 This release

37 files

0.4.7

37 files

0.4.6

7 files

0.4.4

26 files

0.4.2

21 files

0.4.0

21 files

0.3.2

21 files

0.3.1

21 files

0.3.0

21 files

0.2.2

21 files

0.2.1

21 files

0.2.0

21 files

0.1.5

21 files

0.1.4

21 files

0.1.3

21 files

0.1.2

21 files

0.1.1

21 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