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.0-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.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (6.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

dyf_rs-0.7.0-cp314-cp314-win_amd64.whl (862.3 kB view details)

Uploaded CPython 3.14Windows x86-64

dyf_rs-0.7.0-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.0-cp314-cp314-manylinux_2_28_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

dyf_rs-0.7.0-cp314-cp314-macosx_11_0_arm64.whl (962.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

dyf_rs-0.7.0-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.0-cp313-cp313-win_amd64.whl (861.9 kB view details)

Uploaded CPython 3.13Windows x86-64

dyf_rs-0.7.0-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.0-cp313-cp313-manylinux_2_28_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

dyf_rs-0.7.0-cp313-cp313-macosx_11_0_arm64.whl (962.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

dyf_rs-0.7.0-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.0-cp312-cp312-win_amd64.whl (862.1 kB view details)

Uploaded CPython 3.12Windows x86-64

dyf_rs-0.7.0-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.0-cp312-cp312-manylinux_2_28_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

dyf_rs-0.7.0-cp312-cp312-macosx_11_0_arm64.whl (962.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

dyf_rs-0.7.0-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.0-cp311-cp311-win_amd64.whl (864.8 kB view details)

Uploaded CPython 3.11Windows x86-64

dyf_rs-0.7.0-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.0-cp311-cp311-manylinux_2_28_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

dyf_rs-0.7.0-cp311-cp311-macosx_11_0_arm64.whl (965.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

dyf_rs-0.7.0-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.0-cp310-cp310-win_amd64.whl (864.8 kB view details)

Uploaded CPython 3.10Windows x86-64

dyf_rs-0.7.0-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.0-cp310-cp310-manylinux_2_28_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

dyf_rs-0.7.0-cp310-cp310-macosx_11_0_arm64.whl (965.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

dyf_rs-0.7.0-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.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for dyf_rs-0.7.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 197627545811ff0fcfc044fdd78676e14a02ab72f2e0871645211091f22f2b01
MD5 58db9f32a4ed14b54f56cfd2375eaa86
BLAKE2b-256 aa26b558f31df483024ac45bf1a41fc95c172ba7576f0c5c616d4ca8e1cb5ed9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 200d238d28b9d53ff4ed52e5909f81edd09f9c188ed05b22ad18aa3d52ce6810
MD5 05ef80d95351881daac2bdb4b1008850
BLAKE2b-256 3ab14faded2b792749b621796d4547ae6471f44414fd8bb0a63567c2f1f30278

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: dyf_rs-0.7.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 862.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for dyf_rs-0.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ffc27450d82c34d9cede9483fc5ab4df2a20e32d80e58d65ef4224c18254e98c
MD5 d17986eafd9f22be040c949cc9961816
BLAKE2b-256 411530dce1b663f63f4e552ca343b702863ed4267a0fb769fd3dd735a4ff438d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cd4d02f75ea9410b1e931d1590f27acc3643bb2b56c9991112fcc00eb6b33024
MD5 cec1dff6e5e1996e2b343df3cadc0591
BLAKE2b-256 dde041109a2194f8b400583e9173ea3bd35d2ff852c87575ea22f2db4a864f07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9f64d713795596c1904087145ec9785e30cc9a8bea5d33bc7d8f35e34fa167da
MD5 6799543d35e497fa5e573db417397a11
BLAKE2b-256 108b4dfbd96e4a132c19c9b62018c2bbd9953eb30310726dc1c42e2e6b9378ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46842b0a1198bf521661649907e08e51860377d80bc00d7e4bcda5036693aa13
MD5 6e318a9e676662fd64f1827ae7bb19d7
BLAKE2b-256 41f1a35c8c1302ad8d4bc92754d926784a1aae3c99a70451a02050d5b38a7c3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 817cdfcda2133fcfdd24793bf3056fc725b995219f9b2c0560af327cdb1cb431
MD5 eaa3a1bd523cee2ab2484c5660d5ba4d
BLAKE2b-256 f80a6b70cb3c6605c62f107bb0292ac400066f2275412e6d978e9a5e25104ecd

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dyf_rs-0.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5d7bf05ffc04d3c51f5a03edfcb77a956abf674cb82a7d0425c2d45a2a57589f
MD5 a95939a2dda5117b364916dd247a2a37
BLAKE2b-256 220fdc57567725c3786013ec4fb708d115c347c6f13fef5df4ee20121aa81119

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 43cf2944c81ab6fa48ae0fb17e0f8afcbcec42935f3187f034d7d20b2217d751
MD5 4bbcd315970a15a806202ae848414b72
BLAKE2b-256 1827ee4a284bb20a96efbf64b40587a9f4e4ecd804de274c00850182a87e1734

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 197b3aba48cce534863732f82a2d532e946a332d030b0f382b4f09d1ef8c1a1d
MD5 491044f958e91b6e9a5693626c026446
BLAKE2b-256 bc485fb7fb9e3d0847530e430d00c4b08a316ec6af952494cc0b467c8ecc2af8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 849257e392bc5dca87800495da3cb3ce1d813d8abc41c817793f0cfbe6b9ed62
MD5 78f9a8f0ee2e914ee8a4d144d6b1e090
BLAKE2b-256 cf24704e8ef1e1cdffc53d1c50a9e6d38b1d0effa7944013f93479540b08135b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7d20a590c8b5e8fdcf5a7be2d7a37e1ae5914d9eeab5a8e242e8d939e505a84d
MD5 2551c39fa709de7dbd6ef4a004246461
BLAKE2b-256 eb11bd610d3d071bbcf0633701dc5d693cc3f5efcfc1879dfcbf44a6a7f35680

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dyf_rs-0.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d377c32b5ff75f1db1e3cc301d4b8cbcc8949cc86724059b730127b12697dec3
MD5 e16ca651cdab37b4919a6fb05e877156
BLAKE2b-256 e3f5e7af39844e3af397f45f3c7e6c501fe3252233a02c33ccdfa0457859f388

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3bddbd3ae6edd3ef1fb822dce6e5e30d5cf2d6ed225b3b08683b76e87f83f04f
MD5 ce863c2fd5f855693d425962bce73ea8
BLAKE2b-256 50e3efe27b9befa237e68f23a8207dcd5b4d1f86869325f43e111089c02900e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a60e6733d1eb7d62a06aa6cc626c9eaa043af701d128c414a85fc1350e6b363e
MD5 f6284a7ce99aa6a336595b1c09428eb3
BLAKE2b-256 4acf51a1c02e6a21675f7b61ad93a2cb822146d60cd837ff484cd7b165e44954

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2033ad7e36a0433e0624b7fd0dcaafeb2aa33f1d7ec2757596ad705590d1a5bf
MD5 d86fdb55d5e7fa5c85571e50f76c3848
BLAKE2b-256 22dd888da885c281088d5f6b118799f6f2f78e58d1749a7e4c1679ef199439d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f2621f15fcbe3e49c7a246468b8ddd4f445be19baee7db498511262809d35c72
MD5 03b71567ca6fd0bfa8bac487bd168b77
BLAKE2b-256 8cb6697270b206dc27ae31ec55e26259d3c3b139c8547f492d3739d270da5a44

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dyf_rs-0.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cbba3acbe766533486259c889ec919d519182464e3af2cd097c2ad5e368049b5
MD5 f5d545c4cd94e7309cbbf0248f926530
BLAKE2b-256 8d5f53f9565f6103b5f85849bfcbb4624e090462a289f4174f2e107b8417d5a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 247c9d7b1fc14cfb6be485851d16b774d70fa2e903f738fc9d65d1ec8c6f8dd3
MD5 e7cbcb17ac0c70c5e371cba00ba38249
BLAKE2b-256 8795ee6c798cacb80815c31a5cf84fced9baef07e45a562f19b777e2bd2cc119

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 89ac8372423acf7344195a6b5dfa0fb204f66740a63a6e666fdef23d6936547b
MD5 0316618abf80a9d8d2d0b9c723e93023
BLAKE2b-256 bef7a1fd25214d83561e57f036e23a3ca14e6158f1c4cef9325956c21d0f29ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4245f10bdae1e29d60bcd4555411bc956969b608c455378cc626695db885eae
MD5 ab20de3bb61180f3865367b19228c04c
BLAKE2b-256 f8eab316e5bcac846d3c999a5b7f0bf31bcbe12304887b00286c0420627ea9a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 af78e0dbf5c9c0a8531a8a7ef2b4e5197fe9e5dd66b6a0a6cecdfe978dc9bc24
MD5 440714d6cd153f61e0eb0eaa9c15e1c1
BLAKE2b-256 00c3a1dfb6fc3bfee447b8c187c04efdca2d00680211dd3f0301f43a3972f8a2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for dyf_rs-0.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9012139cb21f4421efccc3aec644de6a9b6368b7cb1d061792d3152edabbfc47
MD5 b7a31fd2213527b0a0866b420c77984a
BLAKE2b-256 1c38806d9a28cc8ab7ee38d430ae6ec55905d1d048207fd227360d71d9d1d8aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3f55c11637997fb53914b1da2bac61d4c189d79d67bed23a5b4208a3533dba23
MD5 cb15f3360a209aa719af11bd571805e6
BLAKE2b-256 4add7e7500fbe50f3d6e452dddcddf0a99c25ab294842962842b14b24c477156

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ea49c2d9616a93c10a3f952fff621c6a2382cb510c01c1783d680884ccdc655
MD5 27e4804b262d2efd242f4397b9e2edb8
BLAKE2b-256 fe48b5bbe96d34641c47558de533fb37fc031adf19e176d630435a8f0562ff15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86e0d24cb3fb265537c23970d39461ef1869d8d9f40f82acf1e1eb0646155859
MD5 c92ca20f6067227deb92c5301d42f49a
BLAKE2b-256 c2ea450c011bd5f666df6cb1ecd9a9f44e369fb0ed5ca0f3fdebeccf6e5f82f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for dyf_rs-0.7.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9890ecec5530c10d6ea9bcaa2d2b48f926c550f764cf1fc7c6d288b6d2741e3e
MD5 5f15b2ca99b30aaae4be0299a95ae521
BLAKE2b-256 7d5496769ca2ab63f6aee66161efa0dd31e1058168c452dbc386545ea9c06a3b

See more details on using hashes here.

Provenance

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