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.9.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (14.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

dyf_rs-0.9.0-cp315-cp315t-manylinux_2_28_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

dyf_rs-0.9.0-cp315-cp315-manylinux_2_28_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

dyf_rs-0.9.0-cp314-cp314t-manylinux_2_28_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

dyf_rs-0.9.0-cp314-cp314-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86-64

dyf_rs-0.9.0-cp314-cp314-manylinux_2_28_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

dyf_rs-0.9.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.9.0-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

dyf_rs-0.9.0-cp313-cp313-manylinux_2_28_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

dyf_rs-0.9.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.9.0-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

dyf_rs-0.9.0-cp312-cp312-manylinux_2_28_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

dyf_rs-0.9.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.9.0-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

dyf_rs-0.9.0-cp311-cp311-manylinux_2_28_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

dyf_rs-0.9.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.9.0-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

dyf_rs-0.9.0-cp310-cp310-manylinux_2_28_x86_64.whl (14.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

dyf_rs-0.9.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.9.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 079c4b61f918de52936cd267c52c2f3d8b98aa9fdc805bc90645cce0c458fcb2
MD5 79b213f370a6e4e6572816eec0ef649d
BLAKE2b-256 445aa7e5a349ded1ad1324afdc1286656a307cb021d42e5e0c0a70236db2cb0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 65761082f843ec252516c36ffd46b5336cf22bc07096c0ca1fb7be0fc40f2623
MD5 074fe4e277c1665ae531a66fcc7965da
BLAKE2b-256 6c2e55057f288bb7e14bdcc4fdc75b130249adf974846bfc9fb443b8a68a47b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 679e40c51291bae4ad4d62f69c64b2c15969281ee4e63194090bb635bfd2e74d
MD5 d1d4ddb423aea51565567b3343f04918
BLAKE2b-256 8257c7eb91e6f3f6b655ac942d732e74e109bee471ddeed113ab3a63d29bd97c

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp315-cp315t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b02d48163352c95bad42c4035d3beb36e0d9a657e4b3ecd84886ef8ece659e5
MD5 c2e073a5c01fc5f3bb14d2424bbeebeb
BLAKE2b-256 f15fe30e1fd5910b0b92a9f1ad774e9f5c3cde275eed59125590b03dcc8af72d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 57636b21fe13ff50f68ad58133ec2f454cc28962ccf3be764c2f6cbdd8c9ed6b
MD5 7bf2a18d321db07c8508c75b67df0c1d
BLAKE2b-256 e303f4dd572291d5f55e18c5f9af8b16428226f129ab8d388c13254afcb92fe1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp315-cp315-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 75042f74cdc17ca3f09f5aa08b1fd82799936d85921bc13c98f4561ae021913d
MD5 d8976f4f05f6e916bd75a16a27beab35
BLAKE2b-256 5ead2be2e9e3f03d1d0c919e11e00c24185fe47e548d187acb4d0284cdbabbc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fc2a36deacfcddb01ca9581babc32e47fdfb1024f97015d72030e89827f54faa
MD5 0a60f66fc5e6720e6be793fc54b02e51
BLAKE2b-256 eed07f726c05590ad2347f372ead72ea11663db64b22aac51bf3faf90fba2d58

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 95650d78f1ffcdaa093df9abec068a3d7e65105ed4c2cfc3f12c3d8e83c03778
MD5 ea7a12dfbc3ad11d9149d9d6eaa444c2
BLAKE2b-256 9d48d19331c1be51155246cc1ace12593ea0ca8458c77947d9947879ef27f553

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: dyf_rs-0.9.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.5 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.9.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5d87f14928b08881c70efeeb1e5e24abe6a8e3e2387f8d0a370a50c280055814
MD5 e423509e8a1bae24880a1ca5278ed0a7
BLAKE2b-256 666a21d08e8007c12001d2069ab93d4a563a8f76c5b9c70eda912d5baf103722

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a690176b97baf76bee25f696c4e6bc1996e1ef8be8e459fe910a726b28f5cc87
MD5 353e622b075b44b4a0543e094030d616
BLAKE2b-256 d9011c528b235971634bb1d9d2bfcf30c728a6275c5ba91c2d39d7c69cee85ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aec1b8eb82f15ec732491115568c05f79108e6c4bc0392ef6c7c469f00f277b9
MD5 9973ba0076ad6089e097ef3a890c660f
BLAKE2b-256 8261ea4c8682a49ab59d9e1542c97120fc7607804e0c793dbbb1c41761d90551

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 873d1169e17263ab336105d7f7d3e3554c3b08a42db6be300f0a17f8755ccb28
MD5 41f7f4bba73a4c1761905f1bd772ee3a
BLAKE2b-256 7da69a3f536f1b4f4cb8ef2ba67eb452070d6ce0f8aeec3243aa2c4a964e8109

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 10a09d26fa8e8b31d6437cbb7157d952f1c4f1d11ce08265351d04984b4cdda9
MD5 23d48317c5ad4280c5ef6bd5dc9cf532
BLAKE2b-256 deaabdcb6c75e113c5d9ba5bb98cf9ee16c667d985c158abb4eceb24bb46434a

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: dyf_rs-0.9.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.5 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.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8d0f96b1cc9b9aaca2ada6f642793bb13579576671b3268b5f04ec83a2326313
MD5 d4043cffce86af1e4e50d6c7a21834b2
BLAKE2b-256 f42d5d961c5ffcbfb0e451d988ed1366128662e1137671164ca7e22873c1a5f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b53e355357f2237a9f786ccb5f1a951a51e92e602f511abb35babe568f7cee4a
MD5 99cf62c311f80d7fb1304e13410fa876
BLAKE2b-256 70d01b561ee833e8adece5e4c27568df87f0675080cdc851538d01c430f65c58

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f70cc15d55e9483410ab6fbcc1a47b108b6f07de0bca65c9227a700ffbf37de5
MD5 d03ddb99d908a55b773875a0c37c68b7
BLAKE2b-256 9d6728f6a0c468bf2d7f5be3824634c09cbdf3dcb77fcdde93e6ab5177478f96

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e0f0f4329c3d942e850c761153bf9d43ea2ec408a5e262d59bea05248a1b00d
MD5 81bbd57d94eca5368f21f801bc9e6f68
BLAKE2b-256 c7f29c6d196a78c620e4ee7830f2088d1cbb4a89f1eb33a002f7927556efafd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 df386f44508200c1d44e36430bfc84b28f2d057aec84fd805395f5efe81f4c8f
MD5 a28ffdd6f0ec38f00b3cd9407375a9ec
BLAKE2b-256 3e763ce20e791d781b41dcba02811f5e096c15001d8f5e06a41d66d885c4d75d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: dyf_rs-0.9.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.5 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.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fb0c6e685bcd03bb50f74616fc6fc5a9a657a2caf0dd2d2ebd88e28c3bf67ff1
MD5 c0355996fe405ad0ece7f52cf75877d2
BLAKE2b-256 637c9e4ba055df33442ba99186300e2c974582fcbe054ae14ddf0868a2a40e27

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 136272f7c71c2cbf2e1a7ea59c5266dc79b8e30c0c8f3979f8f78b4d0f72c4a9
MD5 937e8823948c19c561d935a4ad0e30d1
BLAKE2b-256 8083d00cc7295a09505e576ec2b209ac665e843f6aff677cb80cda4cffd12461

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d307910ca7666f9b3661303481bed3f4c46e3a06404fa5e06b65979bc891f478
MD5 c7356021bae9c5d3d2a89fea46c7a88c
BLAKE2b-256 00323fe58b01bf92fa9a4a51478bc548f8f0895fcb83de9e890a8768dbec4415

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b16edf4c1654e607d8883f483c64b9014e6bfa644188891372f238ed55faa47d
MD5 a934e2220d35a102ae23810ee111c758
BLAKE2b-256 8676741e1d6f496a5f113d695f5c5786bddf0a94307acd7756b7f7e73b8640dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 278bd0c412f649b6bae065e6e1b0c19546d6d564a520cf6d337afe4d08184deb
MD5 45a49e6742bfa909d4d122b959134973
BLAKE2b-256 64288401ee34b628b90dcc449c9ca9b99df36937f3231d904c2b230d0a9c8251

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: dyf_rs-0.9.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.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 971642dcf0d32d0f0109306a25319a71c3d66b3be0032523e0b486159751d778
MD5 552a4718d2c04f66b25fe7aa468fe960
BLAKE2b-256 54a13dba2f230e25ae8c3d1d70f07c66521b14c831a5e8d4f321a5a8e476bbea

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8074bdfa870515bd302b52581a8c86bd62f766945bc68958d72dc61635bcdb5b
MD5 97b5b26710aca50aaba38ddaa50d7ef2
BLAKE2b-256 1b6d524b307ceb2c6cb0bd8976d1248d67426bef71f766fc795fd21fd57fb414

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e947ad9ef4eb8afb8a964625f9866da66bb490511c47a36d836d93a37525997
MD5 382d9289047e0d67959770ec2ca2107e
BLAKE2b-256 f083af09732af9d48f926066aa4802c717dcb8edf86b7867b9b95916b45815d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a670681c9244ba337ec71dea3ebbac6eabcebe0775e2a08ce9ba8f294a46721
MD5 8aa552607622a6d0e56c4f73b0a5f1aa
BLAKE2b-256 071bb2dfec2137a5cfefda4d5addbf858db9ff89e8f9eac33f8b9f918d7f7f5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 abe658c18242146315aeaeeaa89750c26b3ff883e897dcb48d5da00bd4663f22
MD5 c9116c686eaaaa50819153c8e85a3370
BLAKE2b-256 4c6b53ce6a7d1b0335be49f17d352958135fcd9bdb1ede2a95fd7e9bab2e3831

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: dyf_rs-0.9.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.9.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bc03f97aee45bc06a0515bf654f35e3d9380e52a7f56f14bf678cb5a29a39927
MD5 578a4abde8baa15e57bf7557631c3845
BLAKE2b-256 c53f8178eb750d1a307a9e6eae4f69edd599d1f054634d006fc60d3ca8bc1335

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ecab8975911ca27ef730fd5f7397d391f14dc8f92910b137f3ef6bbcc068850
MD5 babb0ef55f6d5151945a38adf3abae83
BLAKE2b-256 c944dde8e5c8d5029872c73221dd0734cb3470e84c8b1e0e19da961a0aefe7e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 005d36d2f298bba4e05174ae0b230d5243ed5a04aa26ab8594a7ba7ded84bd3f
MD5 c39ff4658ff6845854768374eee64cfa
BLAKE2b-256 ec1310fded7132503db5ae4ba0fd03f66876196ad26b30df1ee0059baaf5e2ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba0fd35a6b7d895f70983758b0ea8d618be207fe54af9313aa132463abbbe30f
MD5 828ae685eefedb1f4d48a758cfb5a539
BLAKE2b-256 234090e7ef62b21c7085d51566b81fe8a67f0ba6435ca68f024fa63bdfe030bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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.9.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.9.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ac12c039145f8c1228c8c1ae5cc38cba584b89847d4fd0509f802e44a63dfb67
MD5 30528216883a2bcdc37db930f97a2a6a
BLAKE2b-256 ce9956e0886ed0f446f020d102a1ff711302bc5b02e04fa4f7e5105ce9335db5

See more details on using hashes here.

Provenance

The following attestation bundles were made for dyf_rs-0.9.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