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.10.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.10.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (6.8 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

dyf_rs-0.10.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.10.0-cp315-cp315t-manylinux_2_28_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

dyf_rs-0.10.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.10.0-cp315-cp315-manylinux_2_28_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

dyf_rs-0.10.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.10.0-cp314-cp314t-manylinux_2_28_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows x86-64

dyf_rs-0.10.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.10.0-cp314-cp314-manylinux_2_28_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

dyf_rs-0.10.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.10.0-cp313-cp313-manylinux_2_28_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

dyf_rs-0.10.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.10.0-cp312-cp312-manylinux_2_28_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

dyf_rs-0.10.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.10.0-cp311-cp311-manylinux_2_28_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

dyf_rs-0.10.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.10.0-cp310-cp310-manylinux_2_28_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

dyf_rs-0.10.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.10.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.10.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c8b2ca944998977c2410b628075142ffb457848de564080050b862123fd8d554
MD5 15c84add2b371264940dc364e2a42c63
BLAKE2b-256 d63b2bf5dda9a67c6e39d61b9d83e635ddd731f15bbf10154f6733c2f3e6bbde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0129a9a5c260abe140e97f02b2077aac26942ba9ef6f5e90fa084242b3b9b142
MD5 676ade1e1d0edcfc2d0e03736d59274a
BLAKE2b-256 992880e011b382381b037091b18a3eceed24b14ce8f2f69d46470e7e9168a726

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a7334e2b479eb549d6619dd9d0f833888916b6b70485ded83318410bc1d32896
MD5 7d9d9f416726bd9eee9619a6b8d42ef3
BLAKE2b-256 8539778df47e58de9512a0020998331c1f21289b1cd57adab8d9d9f34d14dd7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c3b5ff47bdd997fa6d2627e8cab1ee9d24ba4dd441a6ef2964e893d3a5c4db40
MD5 1aadeb2264a55c6844494e3aca44bcde
BLAKE2b-256 3810e924223c0ddc881ae0dd19189d8890ba0ba44d75f8543daf75ea92eefd11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bf0f3a01fc6f79de581b19d40549856d0b5e8dbe949bf5dab412183ef15c5fa4
MD5 9df91b4f21d707bbbd5b13459028599f
BLAKE2b-256 a59f2f66301da31467055aa69d9761b7e93c5975eda70c5e1d8bd1c1a43a1381

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b168efe74df464485fccc862f02311302c8cae86f5ce2e99bb850614d66de4d1
MD5 dd48b782eb44f60d18a0a42b3b7bd6f7
BLAKE2b-256 37f01040eb043de32c96af2635d16e267788ab3120bee2e36b7e8b678f125cc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 12f4604fc9a8b2e854e929e4bfd05860604c7f00f8f18a7fd1a2f495b92195d9
MD5 0e5501a8b962445d7549989aa0102a17
BLAKE2b-256 2a368865bed2ec7a483608c85edc61dc7b8684b54d048bd66b68e2b4581b2df3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be9a7fc3fc5ffc5b3808dca1e793cfb1537585b16ecca04cc12a46ce91a0cf6e
MD5 e1a37aa54ba1234371d7b72dd2d34402
BLAKE2b-256 87e3929ca1b1eaf74c40ea0afdfc6257775d9de310dbb9d5ea16933a7aa09dea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dyf_rs-0.10.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.10.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 93e33cb73de5ac85fb37af2c2536c02e5f828bb91dfbda1a0c0c055c0e687a56
MD5 2375201c328b2f12e7d7a28ebd7f1821
BLAKE2b-256 c25670b80ff170bb9778fa55c6dfd6e3fd1ed9255d41ef44d6f4291dffdf0c5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4330b2e410a34938c4223e6eccef5eeeea9a2c36db7a70f612b2fc2261cfd93e
MD5 95c6ada7e88d16d97399bdb9f0406d75
BLAKE2b-256 53c87c07662fa45f134615a7e18ca389eb5c4785b6f8bed41aac45928f13aa90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 07f9d0f4267259f9c194aebd367acf65570ea5336eb5258264f3348a9d5a7675
MD5 65ca094087c50df22f73104821628346
BLAKE2b-256 3570bc6423a32886783bb9ba1783fb1d620b85ecfbb5c09a87a8c6e64ab253f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99555ee99702fa5ddd284deebb21f864bd2e7fe31bbe48232c3ef9e3ae89ca78
MD5 e1be4382f315d2ad9935a5cd18f876c1
BLAKE2b-256 131f8974bea4599bcf68e3268d8e418b4c5613e1dd61d015d87ceb10d7e323e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 be733b8a60ffa30bfb8afd7336b6c6838927d1baab8032a1bac9875bb3e4d4e2
MD5 412981df81a2f3e79b2c8421f7dd5b17
BLAKE2b-256 e0e60544c6c900e5c7e9b8ff9f196c35bd9b73e64d432aaa8e6eac149b01be60

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dyf_rs-0.10.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.10.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8611f5d0f5216037adc1f1cc1d1eedbd8be5e0f10bc1fe265e3325f8ebe38290
MD5 4fa834248537cb6160de822f6c689965
BLAKE2b-256 215ee28b6f3014a53c236fd532602b3738fc4c593e6574e4d6567afc9f59d196

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 793b9b59efdc0515681fce9f672cb0625eb3d414b975a378ecae6f9a1b67468e
MD5 13c4a3f7dbc49a2e08acd0a152b7afaa
BLAKE2b-256 031990a9a23ca8cdb21331c119da9b1a093b2d891f005525eba835cc416e62b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5d47810747757c92a6ea0eb3ec437d1c7ee78ac6efb02fd1e92e1d687c24ef42
MD5 16e2560574fac92bc30ee2275085f1b6
BLAKE2b-256 69c422ad7e1d059dd44044ab37ed8e76a86c0032abf0067cc08b4c3673aee4a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce7c80e6baa9bfc9b12ddb88e94aea91b22a2181703b8fe78ef0df68c20ac21e
MD5 de5b514b818d0cbbe2d462a2e5e8c8ef
BLAKE2b-256 b7e2dc42cbc5b36c61ea5c5eacfce38e9620f07122b1ef61fb544175f2ef4a5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3b86e0d7523b42a707290f11384cd5d1e79b61683d350fa1debf9f974d819a30
MD5 2bad2a1023fba53e439e69b1ba17048d
BLAKE2b-256 5f0b6b78186da01a33569397bfd88e52f67ec352a77982594c4afc95c163504c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dyf_rs-0.10.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.10.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 41d79807a6ae251573e8ad34aaf76bb1b81cd10dfccdfcf8f229ded999a1bf15
MD5 6dd9baa69ad343a5b07eea0e8d16aa78
BLAKE2b-256 d2ec4724feca628d8165494bcfb3905274be5e60ab12b1d10732291720a9f24b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 88ed7d3c655c833d65147afef796e412eb1ede45936ea9c99b0894b34d0c2f24
MD5 9b9933feae4f8dcc704485a4f74c318c
BLAKE2b-256 f529f63d71fd773848fd6d7c76b3af875d12ebac10298601224e262a1477f765

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 45706be5dc2bbde248658bc357ad4be91a33f4f1157f0f011cbe193a599c024c
MD5 d2dd401e521084edb7ee65a2e49d9201
BLAKE2b-256 b6ccacd8b6a9600f0cae2c41b2753ce8db2c169cf0ccaa16a5251e53b958667e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d640fc90269536ce4f1f14f7fc946e447163a1e46fe6e1187e53b6e1e0b658ae
MD5 ea98e8c32c0b018ac86fcdb1f9969180
BLAKE2b-256 042b434e470b4c50c9547f01bbbe3cab2cbde2bdba0a0e230eed072908e3e1cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1f7ca00214739a7e75edb82a0788def691cdf3ba70987a71f71856ec8077bebe
MD5 fe293739838021e5f9c2d6b9e0b37515
BLAKE2b-256 d46376bdfc989c12aff3d8c6e9c187f32a1c77f3bf238b316ff14cd781d24ab2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dyf_rs-0.10.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.10.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f4a575c8ac14d804d5bf72e76e7ef6307dc764e7ce108649645b72c7036e45c4
MD5 2e3575b2d06a07bc29796ae3385118b9
BLAKE2b-256 6e17fc9a611f0f58aadab42b042305adf4bff597e6a38448db8b724ff7bfa5dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bd8c3aa417abe18d86659e4bfbc7d4fa808f5fd6eb6244a2e118381da35bcd03
MD5 96349333ae7d239706dd6a140a24d941
BLAKE2b-256 404be97d3ef9d4652c2a5df30e3d030b472100480451b3ab15e2eaa484f164ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a0ca15e3102e8918fcd1bb9058eb164d21b1e2c3c36a98194a2d7a9fbd760b6
MD5 694daf44f07272d12699925eae38d542
BLAKE2b-256 765607bc910e66e6000429dd206c3dc670da025086874cf9d6f158b31204d3bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 289e064a412626bedab110dcaa3228c8796802eb86ab4dbadceb01b0b47265d1
MD5 00b7cc6bf9f144b60a3c9b22c4c05490
BLAKE2b-256 d133033f059c85e0df5e4139b5060afb77ff90998aea96ce5112b8310e08d426

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 12e3b3f20fc29b4d05cf869b7d328648a4b01c8160da7c8147a62fc96412de8b
MD5 4d18923f4c7145f5b85b36aaa68a6af5
BLAKE2b-256 0afe702675b62ae8fa6d367da5b4664433c9869ae698aba6b0757afd3d9ef275

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dyf_rs-0.10.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.10.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b0289733fe0ca4589878def3dbaa63bca03604bf058660a1b5482de9555dde01
MD5 435bdc51fc64c21f2d6a0d8e26b302bf
BLAKE2b-256 2b48f5380b1be004e63592258226058f9f89c7ad6e5f640ac6a63ff40db01f17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1338087b59d9641857260313fc8d8bc05d5a8ed890670c810511287bed1a4403
MD5 cb4a0f92289a4aba372d5f02b1921d1c
BLAKE2b-256 3a6cb5b47cca8271269629b43d0b293cc33866d5c06fa22496573e98ec289cf3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 df8e276888324ed89a364c9ddfac0ac24d3005bca3d45c76599f5ef1938fbc85
MD5 6d7aade10285be4bb8d8b0734ae4cafd
BLAKE2b-256 00b728027134b31c87597dba80cbe2887e67d254b309c6e60eb7ba44cb44aaf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec14eb704ec6116495697600efa555bc9bbb1064873f04880a390e03fd95299c
MD5 8e72e8524fb24f358821f9c1b36d5b76
BLAKE2b-256 7495b66414badf472334f72c9335ee4ca2b8f611ff156f95fc41a2aa83be3f4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.10.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dc3ec5234252aeb63e0a4f227b42e679c02c93c2fc8664d847e49ab90348c7ec
MD5 250591c5e7e55fb7e8b32acaa2c3f22b
BLAKE2b-256 ad3c6e53eb645cbcf612804f956a70eff34c513161257646a4cf2c6cbd26e335

See more details on using hashes here.

Provenance

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