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

Uploaded PyPymanylinux: glibc 2.28+ x86-64

dyf_rs-0.7.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (6.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

dyf_rs-0.7.2-cp315-cp315-manylinux_2_28_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

dyf_rs-0.7.2-cp315-cp315-manylinux_2_28_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

dyf_rs-0.7.2-cp314-cp314-win_amd64.whl (862.4 kB view details)

Uploaded CPython 3.14Windows x86-64

dyf_rs-0.7.2-cp314-cp314-manylinux_2_28_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

dyf_rs-0.7.2-cp314-cp314-manylinux_2_28_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

dyf_rs-0.7.2-cp314-cp314-macosx_11_0_arm64.whl (959.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dyf_rs-0.7.2-cp314-cp314-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

dyf_rs-0.7.2-cp313-cp313-win_amd64.whl (861.8 kB view details)

Uploaded CPython 3.13Windows x86-64

dyf_rs-0.7.2-cp313-cp313-manylinux_2_28_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

dyf_rs-0.7.2-cp313-cp313-manylinux_2_28_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

dyf_rs-0.7.2-cp313-cp313-macosx_11_0_arm64.whl (958.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dyf_rs-0.7.2-cp313-cp313-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

dyf_rs-0.7.2-cp312-cp312-win_amd64.whl (862.3 kB view details)

Uploaded CPython 3.12Windows x86-64

dyf_rs-0.7.2-cp312-cp312-manylinux_2_28_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

dyf_rs-0.7.2-cp312-cp312-manylinux_2_28_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

dyf_rs-0.7.2-cp312-cp312-macosx_11_0_arm64.whl (959.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dyf_rs-0.7.2-cp312-cp312-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

dyf_rs-0.7.2-cp311-cp311-win_amd64.whl (864.7 kB view details)

Uploaded CPython 3.11Windows x86-64

dyf_rs-0.7.2-cp311-cp311-manylinux_2_28_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

dyf_rs-0.7.2-cp311-cp311-manylinux_2_28_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

dyf_rs-0.7.2-cp311-cp311-macosx_11_0_arm64.whl (962.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dyf_rs-0.7.2-cp311-cp311-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

dyf_rs-0.7.2-cp310-cp310-win_amd64.whl (864.6 kB view details)

Uploaded CPython 3.10Windows x86-64

dyf_rs-0.7.2-cp310-cp310-manylinux_2_28_x86_64.whl (13.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

dyf_rs-0.7.2-cp310-cp310-manylinux_2_28_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

dyf_rs-0.7.2-cp310-cp310-macosx_11_0_arm64.whl (962.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dyf_rs-0.7.2-cp310-cp310-macosx_10_12_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c47a03462602331ddeab2d1af137794b5527d64d227b56442553e5c95bbaae91
MD5 50594be73150114eec6ffafb64d75bf9
BLAKE2b-256 bdbf52a45a6c8cc16b45df1b444ee5e7888fae9fb1393fd4ca2a3ef200d953d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06c884fc5843039cf9c77df9376dcb743abf746fe277a07e008010d336cda4f1
MD5 7e0d7fff5e275b7ebd73ee9eb542184c
BLAKE2b-256 54d292f5ccfd9935971dacd6d2f54bc65da55b1d1ddd59407436b6cf1f84f2a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70ea29901827c09c1574881d8e8f6adb998c960a815e6a3f621ebb8c145f1870
MD5 775815683103a80c026254949731eec1
BLAKE2b-256 189a43b302be9308b5285c7dcee6b659f17850c6ad8ed6b9e861f29f6d0c7e91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5f8dbdae8c82243aa2dde4fcd82469aad3abc2f3de2e38a7cd8f70c0e4194c11
MD5 b3cb63c9e90879abb1e11e91cd0713fa
BLAKE2b-256 2e07e6dba9d22dbdcb4910b2c05ed5ee87399cab3d83b762288226f4f5c43e84

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dyf_rs-0.7.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 862.4 kB
  • 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.7.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 61f050bbdc2d0158e686be7127f2b7577b786b5ae3b2c723de6b8ee74a82a158
MD5 7f9c0e5713c6b02ddb55b06d2b2538bc
BLAKE2b-256 76360e386572e547dadd4336db3b099ea26f0d042b1ab0a8c66f7dee1ac6f669

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c0bdbf0fd5ff4ff561b2121ff16d7f6c87abda1147d68d97a6b7d7f0dcc762f
MD5 dfe6a4dd3fc3db8cf374e6976cbef375
BLAKE2b-256 ab972d653c10bfba4d1eed74793355cefd592b862eef1912a5a2b7ee38b93c4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1718c27e0898e0c41a20c08a4e7a578aa29550af84e6b6abf9360126dd55e4e0
MD5 5fc216fd9004c89ae5df73ff21415038
BLAKE2b-256 de9f6bf568568620849d979a779a8af72a1fbcf90074d7e637d06f8b6c63a096

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2602f968a9a9eea0e9da50d850d6a0c642b97a42fd74d2e9a904bb0f1260261c
MD5 343159870cffc09dc33f7f9d379dbde0
BLAKE2b-256 bb0c60f3a65b42faf851926237e896775669bf2ffece77acc978a415984f5d19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 de419b9a281989b664c0b6d239535c6c51df2d4a263cb4b6513ddcc977017918
MD5 9fc0c9379c467196cdc8f1c2e9adb33d
BLAKE2b-256 e37e328035402f8c812e64765503ebe5a8f8a8653420803bd6d607ce687017a6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dyf_rs-0.7.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3b325699d8da158a6c818e1cb74c8f12ee82c9f28d8b652ce6fb84d13009bb87
MD5 5d5206ea79c69fb7257ba7b5f2ec3712
BLAKE2b-256 fdeaf01931a6e0fdceff743c1c13bb8005424650015295b630c2fd6bef656eb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 58d33f5c64758882063125c25540ff38891e0c31ae88381988fb7be5a25cf1aa
MD5 10f36307df59ee8bc12dcf4b24ca5779
BLAKE2b-256 e49f4662ffc98bd29015f185e7f1b237fc48e4f15ad18c474450faa340c11116

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 05bf9cf4067aa8cb71a50235fae56a82369a9ff2dd2e485ea33ad0839b97cb09
MD5 853bdbdbed6864202cd6aa65fecf3193
BLAKE2b-256 5b9463fbaa4ba8beb1c20d7fc05938661f9c8060fedbb04d42b8c204eb80a521

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d8eaafd936dbfd4e6ea2ec56c02579bb48815e80142327f62b3a842312f486f
MD5 b48dfce0aa75d8feebd18b6a4a101c78
BLAKE2b-256 ea433e58b41a050f7e2ab71cded62a58ca6c22b701de2799f875f3070ef1df17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 57c6907cdad9cd1ffa611db69398cdd819e047066f237b325d64cb2879f26aad
MD5 008b4d6c58e9fee500d3bef44c53bd03
BLAKE2b-256 1184bbfafdfc319ed795597b0cf22b3bbbec7040f8f2f2e7de18d9b25c42af3f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dyf_rs-0.7.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3bc6c1a9599f22c3776714c5aeecf2ec38478b2ff1df01237a5cca96f676c86f
MD5 c2a2697fa94aaa9dda637688fe080ce9
BLAKE2b-256 3b4ed1cc35bb882d891d22a987e3b63ec25d6450b6553800f76bc45fcb97db38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4f6a0cf1710aae80412efb107c5eb6d3f8874572895b032488ea3d05fc6b4365
MD5 ff397147a1bda02420a0add80832ac18
BLAKE2b-256 c3fa25366b0f03bdfd302ad500063c9a7ded5192ccfad780613d526c2fb18f3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ac7a342bd2a28412b5bf69119897bddd7a37826adcb670498d41c93aa55f7485
MD5 493a108771618d17419b50bdd0019b35
BLAKE2b-256 4721795dfd2a9409a50d00755d41938cb2c6df3b71b21d64e02dc32d39f7b8da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5497914116bbd44fb53c804c05a30e1773fcee44722b35605914311098542721
MD5 585a8a77c9fa619f97fc41762cc60936
BLAKE2b-256 efea3b63a5dc05fe5a3e03f2c0d0edeb3000e8a8fabf0ea5bdce0d2a94684810

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 43db23dc17bd831399911cf4e9ccf78f8bf1204dd45d4649b08820ac36ad3aba
MD5 f6fb6fb10a243811c02feeae30af0426
BLAKE2b-256 2cb86003e589826ca57cd0539da53d6cc0a8363b22902dc453abbb524918f44e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dyf_rs-0.7.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e4ced2f0de26a5e30a24e2f739a3cf7d407b28e1a0d50e2d236b77f0a3a4de46
MD5 6d921a53f82a9738b86c8ed7eeb0f7c1
BLAKE2b-256 4b3125647d80c3bc2a3dfb1f19b643c23a688b2341e9a61bc675d0ba05c85532

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e78e0b31e2953f99a5ce32877c016ba68bc5951ae2b0f207a40f60c598471023
MD5 5137b72231511019b05388db6bdaacdf
BLAKE2b-256 0b9a4dc79c9e5c45c0259e3d85fc4f02af22481db144e9859622f1addfb7095d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3791a6056638c1d21e8d44a2487007e6d690a7cc007ba56af86c1002982c5b14
MD5 776a88eca033f465fdbc4e58600fb7a4
BLAKE2b-256 a6d32a85a8c52740457156d8440fd0448c598ac36d2f47f235fe9ff8bff5fae9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2eb4ce9efb7b1b7768cb6b7b1e52dec58a8ca0bf5e74531ec938fb8dd078dd62
MD5 0821b31fd91d51b2df120bb485a9739d
BLAKE2b-256 ac2e17c2d04c0d8c56fd06d1da4ebab1d49be852930278c1ed9ea373f9b1e99e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a3cf9ccbfa116ae3136eae33708500716ae9f3a29239ae77bd3bc0daa2070114
MD5 b526d4a2d3cd74a23841f9b3101d953a
BLAKE2b-256 6dec28ab7750a1781c220cb998d047464999be7143c3f8ed3e5af50dff79e6ea

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dyf_rs-0.7.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ef55d6fb376162ed6c21711b018a518d3a7434b13e7a9225aec9f09efc064b41
MD5 ee51739c862b2c4da44f9595ff19cbd4
BLAKE2b-256 b8b7c1caeb1828200137038943537b1be7e549f3144a1f57930b8185051b1c69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d524cb2a3a800ff7612a26bcbb590ef78cd3a9b11f27527ea22c429db604690e
MD5 5fd641ec0d3cdfac10e6ced567489845
BLAKE2b-256 68a0ad686ff5a85c2a8ffb1f328c374d56e5cbdfe5c8f9e779c08113c8ee2fc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6ce704ec96fec0b45108e3e1fc1cd773334710c53954fe67be5dbc8acba64f10
MD5 26f6fc65033f6ad0cee45e12908cebd2
BLAKE2b-256 e732940f7ae2a213aee9cda0c2eed2b2fa5fda8407f705f635ba68e5bce2161e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db72cccaafe9a1ecaab56f9157fea666783703511777c4def75a8034dafdd744
MD5 eac3d894ec917b8ad17f2e439d34d030
BLAKE2b-256 45710421be2e4e9184d210810d10560fda004df901885621dc43e186231b8e79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 20f19a99eacbfb921c866e3cc766c98c908915175cbbb6a9d15bcf311449c3b3
MD5 971e5fdffac03a4f1dbf9a1f241b1930
BLAKE2b-256 1b60136e4ba4b124ff0c150998c09461455400eca100fb4d91ee339352aa8b22

See more details on using hashes here.

Provenance

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