Skip to main content

Streaming anomaly detection algorithms in Rust with Python bindings.

Project description

RCF3

Crates.io PyPI Documentation License

rcf3 provides streaming anomaly detectors in Rust with Python bindings.

What it provides

  • Random Cut Forest for online anomaly detection, feature attribution, neighborhood search, missing-value imputation, and time-series forecasting
  • Online Isolation Forest for numerical streams with sliding-window updates
  • mStream for mixed numerical/categorical streaming anomaly detection with feature-level score decomposition
  • FeatureSketch for sparse feature-name streams whose schema can grow or shrink over time
  • Rust and Python APIs over the same core implementation

Documentation

Quick orientation

Use Forest when your stream is represented as numerical observations and you want the broader RCF feature set:

use rcf3::Forest;

let mut forest = Forest::builder(2).build()?;
forest.update(&[1.5, 2.3])?;

Use OnlineIForest when you want a compact numerical detector with sliding-window updates:

use rcf3::OnlineIForest;

let mut detector = OnlineIForest::builder(2).build()?;
let score = detector.update_and_score(&[1.5, 2.3])?;

Use MStream when each event has separate numerical and categorical aspects:

use rcf3::MStream;

let mut detector = MStream::builder(2, 1).build()?;
let score = detector.update_and_score(&[1.5, 2.0], &[7], 1)?;

Use FeatureSketch when each event is a sparse set of named features and the feature universe is not fixed:

use rcf3::FeatureSketch;

let mut detector = FeatureSketch::builder().build()?;
let score = detector.update_and_score([
    ("endpoint:/login", 1.0),
    ("status:401", 1.0),
    ("bytes", 812.0),
])?;

Features

The crate supports several compile-time features:

std (enabled by default)

Enables use of the Rust standard library. Disable this for no_std environments:

[dependencies]
rcf3 = { version = "0.4", default-features = false }

serde (enabled by default)

Provides JSON serialization and deserialization support for persisted detector state:

[dependencies]
rcf3 = { version = "0.4", features = ["serde", "std"] }

python (optional)

Builds Python bindings using PyO3, enabling use from Python. Automatically enables serde and std:

[dependencies]
rcf3 = { version = "0.4", features = ["python"] }

To use just the core algorithm without serialization:

[dependencies]
rcf3 = { version = "0.4", default-features = false, features = ["std"] }

License

Licensed under either of the Apache License 2.0 or MIT license, at your option.

Project details


Download files

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

Source Distribution

rcf3-0.5.1.tar.gz (146.5 kB view details)

Uploaded Source

Built Distributions

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

rcf3-0.5.1-pp311-pypy311_pp73-win_amd64.whl (455.5 kB view details)

Uploaded PyPyWindows x86-64

rcf3-0.5.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (522.0 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

rcf3-0.5.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (493.6 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

rcf3-0.5.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (481.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rcf3-0.5.1-cp314-cp314t-win_arm64.whl (412.7 kB view details)

Uploaded CPython 3.14tWindows ARM64

rcf3-0.5.1-cp314-cp314t-win_amd64.whl (444.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

rcf3-0.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl (726.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rcf3-0.5.1-cp314-cp314t-musllinux_1_2_riscv64.whl (567.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

rcf3-0.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl (662.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rcf3-0.5.1-cp314-cp314t-manylinux_2_34_riscv64.whl (499.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.34+ riscv64

rcf3-0.5.1-cp314-cp314t-manylinux_2_28_x86_64.whl (513.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

rcf3-0.5.1-cp314-cp314t-manylinux_2_28_aarch64.whl (486.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

rcf3-0.5.1-cp314-cp314t-macosx_11_0_arm64.whl (470.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rcf3-0.5.1-cp311-abi3-win_arm64.whl (416.7 kB view details)

Uploaded CPython 3.11+Windows ARM64

rcf3-0.5.1-cp311-abi3-win_amd64.whl (449.5 kB view details)

Uploaded CPython 3.11+Windows x86-64

rcf3-0.5.1-cp311-abi3-pyemscripten_2026_0_wasm32.whl (260.6 kB view details)

Uploaded CPython 3.11+PyEmscripten 2026.0 wasm32

rcf3-0.5.1-cp311-abi3-musllinux_1_2_x86_64.whl (728.9 kB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ x86-64

rcf3-0.5.1-cp311-abi3-musllinux_1_2_riscv64.whl (571.4 kB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ riscv64

rcf3-0.5.1-cp311-abi3-musllinux_1_2_aarch64.whl (666.1 kB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ ARM64

rcf3-0.5.1-cp311-abi3-manylinux_2_34_riscv64.whl (504.1 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.34+ riscv64

rcf3-0.5.1-cp311-abi3-manylinux_2_28_x86_64.whl (516.4 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.28+ x86-64

rcf3-0.5.1-cp311-abi3-manylinux_2_28_aarch64.whl (489.6 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.28+ ARM64

rcf3-0.5.1-cp311-abi3-macosx_11_0_arm64.whl (476.9 kB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

File details

Details for the file rcf3-0.5.1.tar.gz.

File metadata

  • Download URL: rcf3-0.5.1.tar.gz
  • Upload date:
  • Size: 146.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1.tar.gz
Algorithm Hash digest
SHA256 bd74727fc387d28fbff540b265b6c40b5302b7ff50f91d7d5581b53691b93d53
MD5 0af2e542a69d9c738e0caa80a516c0a9
BLAKE2b-256 24e2746b9e0a198aacf43e80ac2103e2b138427b86965baa5025bf91dbf08f72

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1.tar.gz:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

  • Download URL: rcf3-0.5.1-pp311-pypy311_pp73-win_amd64.whl
  • Upload date:
  • Size: 455.5 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ee9d517289b0e0ee044bbb0921467f7f5464639c208c394dca5df609f031e809
MD5 675a080039b5d5a3eff9656e5b969f04
BLAKE2b-256 ace4020837409d970ebfa7aa59c1644706fc1cafa84db25d870d29792e5f1941

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-pp311-pypy311_pp73-win_amd64.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: rcf3-0.5.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 522.0 kB
  • Tags: PyPy, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 79f1b7517b4c1e2587b375d01e145770d7a1eb044c41c649f3012805bd5fe61e
MD5 0acdf0b8bd2fb96bc764c28d854e977d
BLAKE2b-256 bf59ae0a230be22dc27e2dfe8b7c841c030bcbe09a91f3f15182e4d20a7a7abb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: rcf3-0.5.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 493.6 kB
  • Tags: PyPy, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8198957259a50899c9b41e4cb0c1e6bdc198360cf60201b6fefa81538b6c971
MD5 21c50d387cdbb61ce294e8e8b623e555
BLAKE2b-256 e265051ee2af88ac98a446cc8d819b28161b0538d303912779f664e6df62065a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rcf3-0.5.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 481.1 kB
  • Tags: PyPy, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be31754569edc15d02ee57e5bace4b72ae7b8028a817f05db3a16e101a158589
MD5 0d34d9a5d5a28cab9d5b5df1c381e72c
BLAKE2b-256 e056fd7041e3f73014e4da5f7af282919218668f75a6078fb6262d4715622d0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: rcf3-0.5.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 412.7 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 5fa9b5afc81df9a02cbb8fce6ccb2f555ddd9554dee3dfe6ac2724c36625e806
MD5 0d96a02077851ef71df65b5d11a3690e
BLAKE2b-256 dd79da06881cbb89341ce7d0bc4f99f23349e8aa4862234750d7bc321c257275

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-cp314-cp314t-win_arm64.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: rcf3-0.5.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 444.3 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1d01b74719428e18e8517213300d2cbfa7effdd57570f0663385fda53f3901ef
MD5 e27bda267a05ad3f818267af44256845
BLAKE2b-256 efc9e73afee6b0e018cf36b96a34efbc00c4872721901b068c193838910e44aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-cp314-cp314t-win_amd64.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rcf3-0.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 726.0 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 52fb737c9f714de1d17afc42ab33f78f51a2b5aae5a860049411a2561a9b586a
MD5 863b12c2599f2a84a64d308bff6206f0
BLAKE2b-256 2804ccb746d071e0ae37c0173ebf727f262840beb867ab3d8b55994ae746bd78

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: rcf3-0.5.1-cp314-cp314t-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 567.2 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 3a2435631af34773c27f8c8fc6eb1a80fbded94524da9f7674d25f080fb359c2
MD5 badc4ee689c6fd70951e6e867a14594a
BLAKE2b-256 a9ec671a04718f10d7244e7fc641348f0baa1059a388391145e3cd45ca469769

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-cp314-cp314t-musllinux_1_2_riscv64.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: rcf3-0.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 662.9 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe2255123cfb8b3e5950a88c5c0e82f28c13ceab2ee475b540404ec834a8e42e
MD5 780d73fe5622a3074e308c7f79c65c2d
BLAKE2b-256 0988a869f5c9c6fc39d4fc3365d5092c649ffe757a7ea20a8f40efa4b0552ffa

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-cp314-cp314t-manylinux_2_34_riscv64.whl.

File metadata

  • Download URL: rcf3-0.5.1-cp314-cp314t-manylinux_2_34_riscv64.whl
  • Upload date:
  • Size: 499.3 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.34+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-cp314-cp314t-manylinux_2_34_riscv64.whl
Algorithm Hash digest
SHA256 4749c9bb9757c50ca214a64ae5c1df727b3229efd8ae2b03476a01868d849dc3
MD5 0db78cb0b875086795b7c25c3aea700e
BLAKE2b-256 5f62052b8ff9f39c4eaedbb02ea8646605ac76de4e055e18f93b0f4e5e0566ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-cp314-cp314t-manylinux_2_34_riscv64.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: rcf3-0.5.1-cp314-cp314t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 513.3 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 690fd4e0cbc6f1d3b866e66efc556beb66131fefbc5d00485e7b156cbac138eb
MD5 1dd2c8fd76e4f2d909d18dbeff2dfc9c
BLAKE2b-256 5f81e872168ec41de65a73b37be45aa571e58aff37335b6957ea4a1f5291afed

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: rcf3-0.5.1-cp314-cp314t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 486.5 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5d12f691affeda89b70b831148673b6ec09a997f194401f984f30c0616415e2a
MD5 9ac94db8f525b4831d2cbb3477253573
BLAKE2b-256 484f64b823cb132d29f6c82830c0999043c49749eb53449d8e7b2aa061bfa37f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rcf3-0.5.1-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 470.4 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24891e7fff50c652a0603f6f02fc14f976f1dcc2c1de83e32403cbaf63fe3f80
MD5 d096254e286b13fd5553f045119e4363
BLAKE2b-256 3f0a74b5dc0df92e3c0c27d3d6ad12667628d72f29af0f40d2db4b7ff535f2e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-cp311-abi3-win_arm64.whl.

File metadata

  • Download URL: rcf3-0.5.1-cp311-abi3-win_arm64.whl
  • Upload date:
  • Size: 416.7 kB
  • Tags: CPython 3.11+, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-cp311-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 d7fd174a538b91152f5b28b16729d8ade3691b7f1edb07bfa7eb4bbcaae062b7
MD5 6eb0f0280efdf4581e2faa946e5dd9d2
BLAKE2b-256 ba496d2392451717e4aa97661df23d24958fee9f2ffd287796b8e39a75c6cdec

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-cp311-abi3-win_arm64.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-cp311-abi3-win_amd64.whl.

File metadata

  • Download URL: rcf3-0.5.1-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 449.5 kB
  • Tags: CPython 3.11+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 4de2950444ec0f7e5f402205120bab3996a2c6f2dfaf8eb8ccf1ca2b0e7a55a5
MD5 962f596b7ed52c88fc6edd0f93a80b5f
BLAKE2b-256 cb18ebaa7ecf90c54d058d45518eece95546e1d6360ecee3451d44264acad543

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-cp311-abi3-win_amd64.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-cp311-abi3-pyemscripten_2026_0_wasm32.whl.

File metadata

  • Download URL: rcf3-0.5.1-cp311-abi3-pyemscripten_2026_0_wasm32.whl
  • Upload date:
  • Size: 260.6 kB
  • Tags: CPython 3.11+, PyEmscripten 2026.0 wasm32
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-cp311-abi3-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 42796b5b26d36599e86d35994faa422a19aa7dce2a269abee99e600b36559202
MD5 24c9b43e0ee6f295526b9d99175e8eb2
BLAKE2b-256 b7879ba7168ce4f1c263007e5f141a7a19dbca3badba8b991830d7a9eec35c2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-cp311-abi3-pyemscripten_2026_0_wasm32.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-cp311-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rcf3-0.5.1-cp311-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 728.9 kB
  • Tags: CPython 3.11+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-cp311-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3d02fd55a5cbaa903e050c3009c844a0a49be05ae1c3e36b3c5854cc84fd117
MD5 49e4043775bcfbdc1a02528c0e4b21cf
BLAKE2b-256 595f036aed0662f84674f06f3911f87b1bd027d31598c8c7ff65e82b7c3ea42e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-cp311-abi3-musllinux_1_2_x86_64.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-cp311-abi3-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: rcf3-0.5.1-cp311-abi3-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 571.4 kB
  • Tags: CPython 3.11+, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-cp311-abi3-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 9040146c57d1da2eb28440c38aad0044c5bddb381667a8ccc720d921a0c4dc06
MD5 b2ce758e70ba71073e1d9c9b665614b3
BLAKE2b-256 aff319b9cded3e311df2e755aed66a40d53c976ef228c9c5ff4d32b383c4ac47

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-cp311-abi3-musllinux_1_2_riscv64.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-cp311-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: rcf3-0.5.1-cp311-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 666.1 kB
  • Tags: CPython 3.11+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-cp311-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14f479085f7e8a98f82b4c18571a4d58f0563ee7242d63b3bd6d86234992879f
MD5 6da367a4e2f3a59afa8215697b561db4
BLAKE2b-256 39ee0725f63ea06585f1c26e69fe89f2803c86f2966e7e7968cea92345dc26b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-cp311-abi3-musllinux_1_2_aarch64.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-cp311-abi3-manylinux_2_34_riscv64.whl.

File metadata

  • Download URL: rcf3-0.5.1-cp311-abi3-manylinux_2_34_riscv64.whl
  • Upload date:
  • Size: 504.1 kB
  • Tags: CPython 3.11+, manylinux: glibc 2.34+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-cp311-abi3-manylinux_2_34_riscv64.whl
Algorithm Hash digest
SHA256 0798d3c2e1329c53d5a5e7bcaac9d44c8d3b7538f520e31db4e39bfc52cbba50
MD5 0fbc18b7f86c16a7fa0a3954390fc0c0
BLAKE2b-256 0d6a351ba3fe608a46c4b018221976d5076262c96f9f61571d14af6c2f06b071

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-cp311-abi3-manylinux_2_34_riscv64.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-cp311-abi3-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: rcf3-0.5.1-cp311-abi3-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 516.4 kB
  • Tags: CPython 3.11+, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-cp311-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b8574038212bc0336cbdc01d7fe91674ecf50b4e1e5e0639ae348731ebe665e8
MD5 fc194e75a91ae09f3c041c9a6a0f0fe2
BLAKE2b-256 6b5d00f0d3d092a4c22d49935af75079c753bd981104b176877667d918c3cd70

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-cp311-abi3-manylinux_2_28_x86_64.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-cp311-abi3-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: rcf3-0.5.1-cp311-abi3-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 489.6 kB
  • Tags: CPython 3.11+, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-cp311-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 08178d85cbe25e51f806f37c4f4cec720c2847a6f8ca80cc8638218ef3eb1133
MD5 f1106aa925667609adad64ceec740e32
BLAKE2b-256 a16a981e5d52659821f6938232b234779798920113742baaf076f98475e90bf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-cp311-abi3-manylinux_2_28_aarch64.whl:

Publisher: release.yaml on Bing-su/rcf3

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

File details

Details for the file rcf3-0.5.1-cp311-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rcf3-0.5.1-cp311-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 476.9 kB
  • Tags: CPython 3.11+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for rcf3-0.5.1-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83bd1c8728430f04e1d2b709c53b1d4571e8712a21dc45d127ce9cc535adb4dc
MD5 b93cb7ef5b08e7e96c412c26e6ea075f
BLAKE2b-256 fe192ad515a0214d75a5568cac4cac6f720d01701c78f4bab65bbf8a20511b3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.5.1-cp311-abi3-macosx_11_0_arm64.whl:

Publisher: release.yaml on Bing-su/rcf3

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