Skip to main content

Density Yields Features - Rust core for structure discovery in embedding spaces

Project description

DYF-RS - Density Yields Features (Rust Core)

Rust-accelerated core for DYF. Discover structure in embedding spaces using density-based LSH.

  • Dense: Core items in well-populated semantic regions
  • Bridge: Transitional items connecting different clusters
  • Orphan: Unique items with no semantic neighbors

Installation

pip install dyf-rs

For the full Python package with serialization, embedding generation, and LLM labeling:

pip install dyf

Quick Start

import numpy as np
from dyf_rs import DensityClassifier

# Your embeddings (e.g., from sentence-transformers)
embeddings = np.random.randn(10000, 384).astype(np.float32)

# Find structure
classifier = DensityClassifier(embedding_dim=384)
classifier.fit(embeddings)

# What did we find?
print(classifier.report())
# Corpus: 10000 items
#   Dense: 9500 (95.0%)
#   Bridge: 450 (4.5%)
#   Orphan: 50 (0.5%)

# Get indices
bridges = classifier.get_bridge()  # Transitional items
orphans = classifier.get_orphans() # Unique items

Performance

Dataset Time Per item
60K embeddings (384d) ~60ms 1.0 µs

~4x faster than pure Python/sklearn.

API

DensityClassifier

DensityClassifier(
    embedding_dim: int,
    initial_bits: int = 14,      # LSH resolution
    recovery_bits: int = 8,      # Coarser recovery resolution
    dense_threshold: int = 10,   # Min bucket size for "dense"
    seed: int = 31
)

# Methods
classifier.fit(embeddings)
classifier.fit_arrow(arrow_array)  # Zero-copy from PyArrow
classifier.get_dense()             # Dense item indices
classifier.get_bridge()            # Bridge item indices
classifier.get_orphans()           # Orphan item indices
classifier.get_bucket_id(idx)      # Which bucket is item in?
classifier.report()                # Summary statistics

See Also

  • dyf - Full Python package with serialization, configs, and LLM labeling
  • Curvo FDA Navigator - DYF in action on 2.69M FDA medical devices

License

Proprietary

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

dyf_rs-0.8.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (14.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

dyf_rs-0.8.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (6.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

dyf_rs-0.8.0-cp315-cp315t-manylinux_2_28_x86_64.whl (14.2 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

dyf_rs-0.8.0-cp315-cp315t-manylinux_2_28_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

dyf_rs-0.8.0-cp315-cp315-manylinux_2_28_x86_64.whl (14.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

dyf_rs-0.8.0-cp315-cp315-manylinux_2_28_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

dyf_rs-0.8.0-cp314-cp314t-manylinux_2_28_x86_64.whl (14.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

dyf_rs-0.8.0-cp314-cp314t-manylinux_2_28_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

dyf_rs-0.8.0-cp314-cp314-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86-64

dyf_rs-0.8.0-cp314-cp314-manylinux_2_28_x86_64.whl (14.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

dyf_rs-0.8.0-cp314-cp314-manylinux_2_28_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

dyf_rs-0.8.0-cp314-cp314-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dyf_rs-0.8.0-cp314-cp314-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

dyf_rs-0.8.0-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86-64

dyf_rs-0.8.0-cp313-cp313-manylinux_2_28_x86_64.whl (14.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

dyf_rs-0.8.0-cp313-cp313-manylinux_2_28_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

dyf_rs-0.8.0-cp313-cp313-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dyf_rs-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

dyf_rs-0.8.0-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

dyf_rs-0.8.0-cp312-cp312-manylinux_2_28_x86_64.whl (14.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

dyf_rs-0.8.0-cp312-cp312-manylinux_2_28_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

dyf_rs-0.8.0-cp312-cp312-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dyf_rs-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

dyf_rs-0.8.0-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

dyf_rs-0.8.0-cp311-cp311-manylinux_2_28_x86_64.whl (14.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

dyf_rs-0.8.0-cp311-cp311-manylinux_2_28_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

dyf_rs-0.8.0-cp311-cp311-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dyf_rs-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

dyf_rs-0.8.0-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

dyf_rs-0.8.0-cp310-cp310-manylinux_2_28_x86_64.whl (14.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

dyf_rs-0.8.0-cp310-cp310-manylinux_2_28_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

dyf_rs-0.8.0-cp310-cp310-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dyf_rs-0.8.0-cp310-cp310-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file dyf_rs-0.8.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 436a69c92651b4c40f19f27c783acab21cef93e7f055097e5831a4a1ec9d9a68
MD5 08ed2216d79c73e8a75b2ee5a60f86d4
BLAKE2b-256 825715e7086d419deef0a3a7061a8690984dfbb839f27952ddd1bd3000a4606d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 41af171db30cd2aa9b454a33bd47d4af9aa4eada8d5b5dbe6e545fe7a73d7e20
MD5 0ae28b021a6607d03fa51de8c1993eb4
BLAKE2b-256 3ef8bb54bd7372041cc302176e82cc70e07bf7d5ea911a825fbb660330e52dfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2ab1a1c1e3a9355cbd3bc608e16cdd94d2c5e1f1a10cb21abae97dc4c34537ee
MD5 090e067599fe39b7a92727c3dd0efc50
BLAKE2b-256 78bf683ae2227fdd198e23ad4d793b480e321dd66fa58515dffe6c41e7db4fd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp315-cp315t-manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp315-cp315t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 97e9ba431c74f27f7954e424159466302985bbfc7e74090da661ce3d41de9e6d
MD5 254b7124f93eb257d22c4694aec98c28
BLAKE2b-256 28531abfc5dc22dcb90e32f23a1340122114d6e04dc09e744ab14ced904b54d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp315-cp315t-manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c34c282a384891986a4da447511c94a313e858cda7016317d9d093353c46f3a
MD5 dc9c4bd39845bcb553d910c4bfe786cb
BLAKE2b-256 f036acdb6ee7628ec2c4259584a39b3570ab68ebe033530edcb5ef597ce5aace

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp315-cp315-manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp315-cp315-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 196e7556349e9f6c2aaa1c3909d5efbce7ec0608f85f3f21378015eef660145f
MD5 5be2da38f7e3df9c7e985e1bcb7b2c7e
BLAKE2b-256 7e081f09f3ac816635f85b6ed66a72b66a239681a40434341cd8aaa4c49ffe84

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp315-cp315-manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c442c589fd89b3b9251ad58072965c92e10b78c3e87912d9a6cb699177663324
MD5 a8068c00456a6777cadb7664737a66b3
BLAKE2b-256 96c6592510e8a388a2051a125c039871cbcdf93f85ea8c0ba892c4a7d8d5a97e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ff4a30a49ad2ec92356ab977d718a6fe32a9313418261a46e1ad9fb0eb0d274d
MD5 784190a49030e663cff46f465721a48b
BLAKE2b-256 1f40c60e7759a6ec380e9999397e85618486b4e473bf8317c87166d51b6276a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: dyf_rs-0.8.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for dyf_rs-0.8.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 56e1a1fd366cc675a604b794517098b0a64d2af32a0ae85b20cdd03b467e424c
MD5 bb8e99cb3578c1ca2e42c1780fca9f8e
BLAKE2b-256 c3a6c267b51b7d32ae8b5b921e6ff7e4f8c5d5030d7036350cd661e039521a76

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp314-cp314-win_amd64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 78bfabfb0b336caa88a246249f5a76bf7f18dbe7419a43d66019c6bb8eceb4a8
MD5 aed8615105a52934879d509bc3b2dbf0
BLAKE2b-256 7add3c715a0e3135d8616d7705602d816a76bd732f72090fd0f0c33134888511

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 160a18adf0ada01e22fd24c8bdf2ab47d9465399698a66bb515563bbe31008a1
MD5 dc2f37bda13638cdad67dc2ffa7456a1
BLAKE2b-256 de684088562c4d96087074902e857e44ef2d4fc7df41cec13353a63105d0b826

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cc9394d95d800559537508a52b06a1692f5a76d799c9331ecc79a91821eecd5
MD5 7b1e1a7f853749bdf70c61100dde10a5
BLAKE2b-256 ea446792399fd242541ba6dda02234a4112e510baeb4942f1b582fde83780175

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a21a3c08812815f9a5a4fa1eb68584a2183a807e8b616f90da2259b405c75673
MD5 19fbc670899624178a3eb055f7aa995b
BLAKE2b-256 624dc54ee7de7605d7fb58919c2289d194333b933dd7110217557b7c5fb0b587

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: dyf_rs-0.8.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • 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 dyf_rs-0.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 61c0e3ef962bb6df9544e65e8bb6de44c91e666ed58a665b38a22f0df77a53cb
MD5 d5363dda3732ec3a55cd5ac042679caf
BLAKE2b-256 40388226329c06e89711affa044365e46108f7c752e21f7964568e2ea9d3d266

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp313-cp313-win_amd64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd542db351c65efec4957289a23cba26c59c5e6761e81cd9fbfdcca5389357dd
MD5 c0ad97103591c6dc8c1551871123bc8e
BLAKE2b-256 e07f672b1d94917ccc6f11cccf1827695ffcec125dd60b009e1c66fc5f64e9b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c860e897436be57646051baa34dd9385dee98b0e9084a942e756b7bab897538
MD5 ec3b0395a50aa10e28dd6947bf01417b
BLAKE2b-256 433d62ad1aa374df728c44282b8cd5ed82bef8e39c9584d54173ed5eaf899334

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d37af2f77e8fe1fb7d3a5fa500416ca15e53a8a3ac0afabc886062507152afc2
MD5 adda9063b212690959af6c7fea80a333
BLAKE2b-256 094b2c4c38b203b10437b4a9517f91d18d4ad9c25b7858377f6fde47c1fd20d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e5571ef843e84e26810977c8473afeb9632984d9af4230c6f4c1ede226880505
MD5 16168355d0c32575591310bdda41a615
BLAKE2b-256 7a9faea94ef3f5242e013b4bb286af28eeb1405e622e2398066ebac711e39ff9

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: dyf_rs-0.8.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • 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 dyf_rs-0.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 495acb62826f6016a5a5f77a73eb2bbc5d3996e1d4239b68e2a4b33542669dc2
MD5 90afa3ea3712154db117877915d19060
BLAKE2b-256 7192fe62d30ca0e55f571d15b7223264d4c0e44b2579212c133897ce982c923d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp312-cp312-win_amd64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2582921ebc068feaad3e895bc4540a6e507a0e920019587548d4197e7883e851
MD5 5acdb1bf648099e3be8dd3a9fcc50894
BLAKE2b-256 da493e443467c57c16c2da8fb92135780f67c307a98c31b7fa38de88655c54fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b58324db1a4ccbbd5046bc3bd5d3eee0728440360652fcc094b7e0fd45f84679
MD5 3da137336589ab06e0a05d251912a5f1
BLAKE2b-256 5e9930a81971cfeed68868a020009ac8d2c4d5d5e6fa8ac085e4a453b181053f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f18ae994fd2dd63ecc8e9e3d4eb453b6a820e583c9fa177c704d7012339f57b
MD5 5fe9cd7f2e548d41373b2db0f590eeaa
BLAKE2b-256 51c6dbd6883404883371ef85a9dd42f3eee039050ea995b3d30ed68d2ad82f86

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dbf64bcdb2458773789f932ed879ec994e60ad36fca265ae5b8a7639dfaf6e9b
MD5 6b1747bcdbd1e9c0abadd14ac6270713
BLAKE2b-256 888385e28ef89f0cd6eac9f018336384ca363d82d73c6d49b4b7bad75328bd88

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: dyf_rs-0.8.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • 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 dyf_rs-0.8.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0a33510196a7f4f340d615fa8d7f0845c8884687f9077da187f692b0dcc2b708
MD5 aee1c7e1b4a67fbd9623494da6df7e51
BLAKE2b-256 da7875f398516923d8030a97d959fe2edf74e06cc6965bbc5d10589ae4fa10f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp311-cp311-win_amd64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e64b23696f53aaf20302de7842757c9aa7cf175cb4af46bab1188053953ae229
MD5 059ceccc39ef72c73bcfb3e6dbb4e569
BLAKE2b-256 e482026d1b4aaabb45e361a286af67cbec25e490594e701a8a29575ad08d5301

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 399224633b674c3af956d6c9bbfd7e384f5a0421f0494e41dc8b73cc8a0f7aa9
MD5 8ab876ca29f3916a3cf1de5508622bcf
BLAKE2b-256 0040f1d96450d5b4eeaf5ca248539fccd5d4e2c27e96682a76f19f95c316be96

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4566578a974a7eb5965501141c142cd8bb1d6230fce667ef72f7fcc782ad87d5
MD5 3711adb8a7f889c4509f584bbebe55eb
BLAKE2b-256 1ba19dc911bef8c04c7f2023a5e663bb0cb77aca314ead5766a8cd3058df787f

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6403afa7698332fbabbefd485f1cd61ec71ceb98b9e746628e543860ef6a67a8
MD5 9d71dbf22ada51b694826b7472511b48
BLAKE2b-256 0bb92099d394587c048866b1d568167bdd852e382808f445d4ac821319e36a90

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: dyf_rs-0.8.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • 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 dyf_rs-0.8.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3f293de83c5598a27eed1b7ec70172702c527d0df3a96a032fad35779a4aff47
MD5 4f92c8ef738aa5ade00a36738544152b
BLAKE2b-256 bded5cd98fedc0c13711347752f0857ca940a937136839222c4e028d4c86fd3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp310-cp310-win_amd64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 42f62b9caef384aafa79b15efd4b0dcdd0345fb2b429ca204d7f820396fd61cc
MD5 174a4936763bf9d1d17b9162d922df86
BLAKE2b-256 e3f4d6d313b856ec3dae6f83c1370960558181e0a501e961cecaab4c1ae925fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b8a87e79a6eec08639a34decc23f9701e15bf52c39bd797dd91fa7c7bf79b5c7
MD5 daa7f2078a186eeba7273a9f577d120a
BLAKE2b-256 e95f40f1fb0b676b3919a6656771908dd4e7b6b7760339dc5cd5dcf8afba3cf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e1fde0bf3bca325588b51da813b1c9c4412229a809ca6f701255b1411994882
MD5 bc2f8f1605e8c98db892a644416b63f1
BLAKE2b-256 86bd335bd74d9ecafcb707c647adae59cdfa94739952ace7b7923048e748973e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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

File details

Details for the file dyf_rs-0.8.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.8.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 081ca13568c1f138f2fc238dc3d37c5b2591696e7b55dae0b28be94cb134080a
MD5 6a1a305efa335da734b4848cf175e420
BLAKE2b-256 e562cb74388fc92974d174f9e85388f6aff24a70a86211f48880d8b5d8e17082

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.8.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: build-wheels.yml on jdonaldson/dyf-core

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