Skip to main content

A Rust implementation of the Random Cut Forest algorithm for anomaly detection.

Project description

rcf3

rcf3 is a Rust implementation of Random Cut Forest (RCF) for anomaly detection in streaming data, with Python bindings and an mStream detector for mixed numerical and categorical streams.

What it provides

  • Random Cut Forest for online anomaly detection, feature attribution, neighborhood search, missing-value imputation, and time-series forecasting
  • mStream for mixed numerical/categorical streaming anomaly detection with feature-level score decomposition
  • 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 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)?;

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.3", default-features = false }

serde (enabled by default)

Provides JSON serialization and deserialization support for persisted detector state:

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

python (optional)

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

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

To use just the core algorithm without serialization:

[dependencies]
rcf3 = { version = "0.3", 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.3.0.tar.gz (87.8 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.3.0-pp311-pypy311_pp73-win_amd64.whl (365.2 kB view details)

Uploaded PyPyWindows x86-64

rcf3-0.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (438.8 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

rcf3-0.3.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (416.3 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

rcf3-0.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (401.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rcf3-0.3.0-cp314-cp314t-win_arm64.whl (338.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

rcf3-0.3.0-cp314-cp314t-win_amd64.whl (363.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

rcf3-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (649.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rcf3-0.3.0-cp314-cp314t-musllinux_1_2_riscv64.whl (493.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

rcf3-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (591.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

rcf3-0.3.0-cp314-cp314t-manylinux_2_34_riscv64.whl (424.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.34+ riscv64

rcf3-0.3.0-cp314-cp314t-manylinux_2_28_x86_64.whl (437.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

rcf3-0.3.0-cp314-cp314t-manylinux_2_28_aarch64.whl (415.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

rcf3-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl (398.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rcf3-0.3.0-cp311-abi3-win_arm64.whl (341.3 kB view details)

Uploaded CPython 3.11+Windows ARM64

rcf3-0.3.0-cp311-abi3-win_amd64.whl (365.5 kB view details)

Uploaded CPython 3.11+Windows x86-64

rcf3-0.3.0-cp311-abi3-musllinux_1_2_x86_64.whl (650.5 kB view details)

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

rcf3-0.3.0-cp311-abi3-musllinux_1_2_riscv64.whl (494.1 kB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ riscv64

rcf3-0.3.0-cp311-abi3-musllinux_1_2_aarch64.whl (593.0 kB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ ARM64

rcf3-0.3.0-cp311-abi3-manylinux_2_34_riscv64.whl (425.5 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.34+ riscv64

rcf3-0.3.0-cp311-abi3-manylinux_2_28_x86_64.whl (438.9 kB view details)

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

rcf3-0.3.0-cp311-abi3-manylinux_2_28_aarch64.whl (416.4 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.28+ ARM64

rcf3-0.3.0-cp311-abi3-macosx_11_0_arm64.whl (401.7 kB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: rcf3-0.3.0.tar.gz
  • Upload date:
  • Size: 87.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0.tar.gz
Algorithm Hash digest
SHA256 3273328a6dea521b34f602e1744abb7e2782ea995b290f5a8f08744e8d7cd880
MD5 a69907e0387293b35f68d0bb5fbb753b
BLAKE2b-256 08d2ccaac5c9160b2f5ffbd0681069a89940c5e2dda07bc63e39ef4f73a73d5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0.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.3.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

  • Download URL: rcf3-0.3.0-pp311-pypy311_pp73-win_amd64.whl
  • Upload date:
  • Size: 365.2 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ba98d3e95606b5f7483d2d0fefbd7c4c7d79db4ce0c940df99bbf829a3ad27c2
MD5 1d8172234e1b34bb5addd6b14c35c468
BLAKE2b-256 6799a25139d520debc39203dc5e36a668d99617140fd468d8116efcfa1e5a7d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: rcf3-0.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 438.8 kB
  • Tags: PyPy, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 61d64cf5e9f1fdeb6e9fb328c5a12c8c254063738e822f9aee06e97d26f5cf3d
MD5 68bb08a820e59310d48a2375150f2f61
BLAKE2b-256 be47d72a14155c35dc4d7e3eddb4d190b06a951600d1ceaef4a16c74fc6b49d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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.3.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: rcf3-0.3.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 416.3 kB
  • Tags: PyPy, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 37990240ec86d7e04337b01391c0ac74658ca8c2c25ce9e233a3c80681d376a6
MD5 d2756aa8cf73b382fbd3ba8fa22a0791
BLAKE2b-256 44b4d7f45ff23df52fb89b3bd18bb4ce294bf3460538522133061ab6c45ee210

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rcf3-0.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 401.6 kB
  • Tags: PyPy, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5d5d9394d0f259e4eb649d2cc41def0e5c3a25172f4367456e791e4acada742
MD5 e1aa9a3e624d8bf9689bfd532b4081dd
BLAKE2b-256 5eecbf69a2daff2f872c2763eabe6829ea3efb96cf977b7b48de18cb49d542c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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.3.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: rcf3-0.3.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 338.2 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 55c2300b4fddf1fdd1539d06c8840131c59f9e242da35f7013cc9f8000797943
MD5 7fe2308180083a75886e1105c0e7dc3f
BLAKE2b-256 02fa246daf57da6a00090abee14d32eccc65bc9414e566db83d09d13aa3788cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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.3.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: rcf3-0.3.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 363.4 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 991cad5e6dde8bd3ea6d79819617e2c4c575b6fb93cc6228b02cee5596c10d14
MD5 ebaf6f66d1292b5ca317656c7c464bd3
BLAKE2b-256 7486c5688c60bb6a51b5ed82d4dd554b071a40d3107d3ba77a6ef836a25d314a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rcf3-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 649.5 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f905175815cfcd04e2065c2bb040ba0816b7303a2bfb84bbc45044773b4578a
MD5 8b0c96eb06c9b88a44085afed9908ec1
BLAKE2b-256 b10d5380a5b4b394a9617dcb28f3bdf29be06318e2db985ce9c33980417e9133

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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.3.0-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: rcf3-0.3.0-cp314-cp314t-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 493.3 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a3dd72f9f827fd72d363de9c6baf74a3d3056885b2e31d9c366386f6ac45cd8a
MD5 55b39152820ffa7bf6418aeb489111b4
BLAKE2b-256 b8e2687f0097adce007a2136570fd4698c0572561a0103c31b5f5cdeda781fa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: rcf3-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 591.5 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2e5b407fe02a451b2ada525e6ca6638bedf6005c9e118070672cbd81791c5b2
MD5 06a121507df4a9a4c32a77229bd3b507
BLAKE2b-256 f66484ae3f3898d2588c0a832063ee3d3612ef9d0413f0740480527b36971ff0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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.3.0-cp314-cp314t-manylinux_2_34_riscv64.whl.

File metadata

  • Download URL: rcf3-0.3.0-cp314-cp314t-manylinux_2_34_riscv64.whl
  • Upload date:
  • Size: 424.8 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.34+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-cp314-cp314t-manylinux_2_34_riscv64.whl
Algorithm Hash digest
SHA256 6018bb8f67cf37409eb6a4d659261bfe3f904605981f4a25fc641536b925883b
MD5 b727dddde03de814176d325bc28ca271
BLAKE2b-256 89b2624394c5c73840d2024efe0ff2db30e0c04badc65aa5714df709b6f74237

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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.3.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: rcf3-0.3.0-cp314-cp314t-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 437.7 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac20d6ac693b987700249cb453e6249ea04b3821b988ecf117b60ea6fe9f0e7b
MD5 d3e7041f2920b06c807d5063c76b0582
BLAKE2b-256 a5a8a5ea171dd0c3e9a61d9bcce74d5d17d63ecfa16271b8a32ee0be00ddd1b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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.3.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: rcf3-0.3.0-cp314-cp314t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 415.0 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 12f828329c761871ac776fa0f31a59c0f452e22a01a7af89df5812187a0ebdb3
MD5 32de76c29ae0333396dcc943f07fe98b
BLAKE2b-256 3683bcc757daca3404d6e895845e4d7bf10e8283593733143f0c97f8849f18f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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.3.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rcf3-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 398.4 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4b78bc2652880129a7ad28f20871c41754f4f90ae29ace8efad767ed602da63
MD5 c89b6258f73ad6e557d7d6d5962cee31
BLAKE2b-256 555af9c5ed037aadcb875287fc4e7a307c97ba6a69aeb74229461fa9b9c72b13

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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.3.0-cp311-abi3-win_arm64.whl.

File metadata

  • Download URL: rcf3-0.3.0-cp311-abi3-win_arm64.whl
  • Upload date:
  • Size: 341.3 kB
  • Tags: CPython 3.11+, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-cp311-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 ee9892091aca951ca327e08dcda7e4597e2384fae2d0c4c849366e6fbe5ae7b9
MD5 3ae04b7270049bcd43522269d37ba958
BLAKE2b-256 45e5ef99e39ed853735b25fcdfd48c6a911b2017cb08b5586a887ba0f9210567

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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.3.0-cp311-abi3-win_amd64.whl.

File metadata

  • Download URL: rcf3-0.3.0-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 365.5 kB
  • Tags: CPython 3.11+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 18b8dc99370b4ad2ff3ffc472e88460a1512534cc4d9e0aeab4ef040ebb4607e
MD5 d5abd5bdd6e502a8bfdd8981943e6e02
BLAKE2b-256 1acb5bf6e77e157a3b98d87293d72a8b786f263e10b88c59b699ff585061426f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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.3.0-cp311-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: rcf3-0.3.0-cp311-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 650.5 kB
  • Tags: CPython 3.11+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-cp311-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 921ba40f4cb2492a20bea8d037fa9c5b54e1bcf361e140f31fe83330067c5590
MD5 d0f1547c5610f69d945fcf84d11ba4a6
BLAKE2b-256 6a9ae18b154789cd6cbd0e3129160e90e63d89fc92f692a87f24e4084eba2c75

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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.3.0-cp311-abi3-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: rcf3-0.3.0-cp311-abi3-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 494.1 kB
  • Tags: CPython 3.11+, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-cp311-abi3-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 955690e5123d8d8fb30e0211d8393a34f4677ba0da490f6e0c45b27515234dcc
MD5 aef31d95de9b6e9eef86eca10036fd51
BLAKE2b-256 fb7b6948872acc01bc511da856d0bddc117d982c708cdd65aa7874819d58dac5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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.3.0-cp311-abi3-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: rcf3-0.3.0-cp311-abi3-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 593.0 kB
  • Tags: CPython 3.11+, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-cp311-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51d2ff2e1c87e87b8b2adc1703ba4a27363ca4d76f6c494a45b9a9efc3bb7e75
MD5 ec8f72a2f9a908a90f9423bd1d7727de
BLAKE2b-256 90fc29ed215fddf3d17796672417badf54dae74a4ac6c66470867fdc57792037

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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.3.0-cp311-abi3-manylinux_2_34_riscv64.whl.

File metadata

  • Download URL: rcf3-0.3.0-cp311-abi3-manylinux_2_34_riscv64.whl
  • Upload date:
  • Size: 425.5 kB
  • Tags: CPython 3.11+, manylinux: glibc 2.34+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-cp311-abi3-manylinux_2_34_riscv64.whl
Algorithm Hash digest
SHA256 78d100f4457202ed6209dc4834fad2dd3717e398797ecad4bb64bf048e8dbd56
MD5 7696b489129e3fc93653f72e74c000f2
BLAKE2b-256 1f4b38eab6a2896469e0043521cb407b7e5c8e61e36a707bba491d294781d810

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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.3.0-cp311-abi3-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: rcf3-0.3.0-cp311-abi3-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 438.9 kB
  • Tags: CPython 3.11+, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-cp311-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dfe2ed3c57e4a2981043971d4b0ab9007ebe38f15750d71a34c26b484cc1e6c1
MD5 e0951dada799ac5f09fa59c50657e017
BLAKE2b-256 9a90480e81e265b894d3bd9e86545f88fae85cb1d1a64ddba18e0d6324b48feb

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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.3.0-cp311-abi3-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: rcf3-0.3.0-cp311-abi3-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 416.4 kB
  • Tags: CPython 3.11+, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-cp311-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2cbe2bc04c04c8ef6726234f765639156489bd6db23a22bd32f672babea94ea
MD5 fc078e72b3c9490b653a571b15990268
BLAKE2b-256 bb6632e8ba4d4dd244fadcec6f48f2f07f2b79634d451f26ae41fdb32d1723e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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.3.0-cp311-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: rcf3-0.3.0-cp311-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 401.7 kB
  • Tags: CPython 3.11+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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.3.0-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f8f7f1a16b57c91f3bef14aa57876a10eaf18fd536b7481d0bcf139d8ecb51f
MD5 45612b70b622a534983a7ab4c4e61cdc
BLAKE2b-256 6556faa5a1e5bc0950fe2438893f6e928274aa1117bbe937140b549943c673f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rcf3-0.3.0-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