Skip to main content

AWS Random Cut Forest for Python

Project description

krcf

Project Description

Python bindings for the aws/random-cut-forest-by-aws library, providing a fast and efficient implementation of Random Cut Forests for anomaly detection.

Key features:

  • Fast anomaly detection using Random Cut Forests
  • Attribution and scoring for detected anomalies
  • Support for shingling and advanced configuration

API Usage

Basic Example

from krcf import RandomCutForest, RandomCutForestOptions

# Define forest options
options: RandomCutForestOptions = {
    "dimensions": 3,  # Number of features in each data point
    "shingle_size": 2,  # Shingle size for time series
    "output_after": 1,  # Number of points before output is ready
}
forest = RandomCutForest(options)

# Update the forest with new data points
forest.update([1.0, 2.0, 3.0])
forest.update([2.0, 3.0, 4.0])

# Compute anomaly score
score = forest.score([2.0, 3.0, 4.0])
print("Anomaly score:", score)
# >>> Anomaly score: 1.0

# Get attribution vector
attr = forest.attribution([2.0, 3.0, 4.0])
print("Attribution:", attr)
# >>> Attribution: {'high': [0.3333333333333335, 0.3333333333333335, 0.3333333333333335, 0.0, 0.0, 0.0], 'low': [0.0, 0.0, 0.0, 0.0, 0.0, 0.0]}

API Reference

RandomCutForest(options)

Create a new Random Cut Forest instance.

  • options: A dictionary or RandomCutForestOptions specifying configuration (see below).

Methods

  • update(point: Sequence[float]) -> None: Update the forest with a new data point.
  • score(point: Sequence[float]) -> float: Compute the anomaly score for a data point.
  • displacement_score(point: Sequence[float]) -> float: Compute the displacement score.
  • attribution(point: Sequence[float]) -> dict: Get the attribution vector for a data point.
  • density(point: Sequence[float]) -> float: Compute the density estimate for a data point.
  • near_neighbor(point: Sequence[float], percentile: int) -> list: Find near neighbors for a data point.
  • is_output_ready() -> bool: Check if the forest is ready to output scores.

RandomCutForestOptions

Options for configuring the forest (all except dimensions and shingle_size are optional):

  • dimensions (int): Number of features in each data point (required)
  • shingle_size (int): Shingle size for time series (required)
  • num_trees (int): Number of trees in the forest
  • sample_size (int): Sample size for each tree
  • output_after (int): Number of points before output is ready
  • random_seed (int): Random seed for reproducibility
  • ...and more advanced options

For more details, see the docstrings in the code or the API reference.

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

krcf-0.2.0.tar.gz (107.5 kB view details)

Uploaded Source

Built Distributions

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

krcf-0.2.0-pp311-pypy311_pp73-win_amd64.whl (557.6 kB view details)

Uploaded PyPyWindows x86-64

krcf-0.2.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (634.7 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

krcf-0.2.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (601.2 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

krcf-0.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (575.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

krcf-0.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (605.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

krcf-0.2.0-pp310-pypy310_pp73-win_amd64.whl (560.5 kB view details)

Uploaded PyPyWindows x86-64

krcf-0.2.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl (636.9 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

krcf-0.2.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl (603.4 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

krcf-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (577.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

krcf-0.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (607.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

krcf-0.2.0-cp314-cp314t-win_arm64.whl (529.5 kB view details)

Uploaded CPython 3.14tWindows ARM64

krcf-0.2.0-cp314-cp314t-win_amd64.whl (559.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

krcf-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (711.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

krcf-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (662.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

krcf-0.2.0-cp314-cp314t-manylinux_2_28_x86_64.whl (632.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

krcf-0.2.0-cp314-cp314t-manylinux_2_28_aarch64.whl (598.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

krcf-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl (572.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

krcf-0.2.0-cp314-cp314t-macosx_10_15_x86_64.whl (601.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

krcf-0.2.0-cp313-cp313t-win_arm64.whl (529.0 kB view details)

Uploaded CPython 3.13tWindows ARM64

krcf-0.2.0-cp313-cp313t-win_amd64.whl (559.3 kB view details)

Uploaded CPython 3.13tWindows x86-64

krcf-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl (711.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

krcf-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (662.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

krcf-0.2.0-cp313-cp313t-manylinux_2_28_x86_64.whl (632.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64

krcf-0.2.0-cp313-cp313t-manylinux_2_28_aarch64.whl (598.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

krcf-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl (572.4 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

krcf-0.2.0-cp313-cp313t-macosx_10_15_x86_64.whl (601.6 kB view details)

Uploaded CPython 3.13tmacOS 10.15+ x86-64

krcf-0.2.0-cp39-abi3-win_arm64.whl (532.8 kB view details)

Uploaded CPython 3.9+Windows ARM64

krcf-0.2.0-cp39-abi3-win_amd64.whl (562.1 kB view details)

Uploaded CPython 3.9+Windows x86-64

krcf-0.2.0-cp39-abi3-musllinux_1_2_x86_64.whl (717.0 kB view details)

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

krcf-0.2.0-cp39-abi3-musllinux_1_2_riscv64.whl (665.3 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ riscv64

krcf-0.2.0-cp39-abi3-musllinux_1_2_aarch64.whl (667.6 kB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

krcf-0.2.0-cp39-abi3-manylinux_2_31_riscv64.whl (652.7 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.31+ riscv64

krcf-0.2.0-cp39-abi3-manylinux_2_28_x86_64.whl (637.7 kB view details)

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

krcf-0.2.0-cp39-abi3-manylinux_2_28_aarch64.whl (604.0 kB view details)

Uploaded CPython 3.9+manylinux: glibc 2.28+ ARM64

krcf-0.2.0-cp39-abi3-macosx_11_0_arm64.whl (578.5 kB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

krcf-0.2.0-cp39-abi3-macosx_10_15_x86_64.whl (608.6 kB view details)

Uploaded CPython 3.9+macOS 10.15+ x86-64

File details

Details for the file krcf-0.2.0.tar.gz.

File metadata

  • Download URL: krcf-0.2.0.tar.gz
  • Upload date:
  • Size: 107.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for krcf-0.2.0.tar.gz
Algorithm Hash digest
SHA256 f8c44fa70bdcc893f4f0778297a32096a0f3aee5c7b308be411f9512f32da072
MD5 a62997f58663a202d92ea3cd91e7a579
BLAKE2b-256 a383047352300194aafe7bf29f069f5635be8192a618cfea4ab0965f36711fe4

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0.tar.gz:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2a75536c5e5b1772893f03b048035815968488fc592ada40061afbf389268809
MD5 3563053e89ae2f411274823f187f9716
BLAKE2b-256 4adb942bbc338f479fdff1c92c4d2d216ef0a4e3209ddf63b8baf9888bef7be2

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 78bc28cc3ef2d1950c18a085589debb504adf0f5315659c7860568a4d91b31f9
MD5 862a72882f8fd55274a96268cdb1816e
BLAKE2b-256 79903429f1100e572cfb2600651b594c8e91efefa1412bae4bb6776fc9356b25

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 027d2876f13b8895116168eb758e658f3140178678e7570159efa67815ad4b41
MD5 57c502730fc5736ccc1955e5bd853c6f
BLAKE2b-256 aa3b4ff756a940cc69dff64b2cfc92ec3b8c6420f1d588bdbd4e591cef1d07b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6243c4b8914484c7e8444bd81ee73c7e349bdbcfc642d255bed3d49d5b1f9c63
MD5 716fa994d0346b24cd85b73d46b5ce6b
BLAKE2b-256 dae5175cf2a04131a17cb087552649c2d50812d363343642d0f1d4cbfdbdffca

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c65c2c9524e68988bbd0af0664489f3f8c3811b77f4d576ec1c0872dc06cb87a
MD5 d444836c854c79510f945b97e1dcddd9
BLAKE2b-256 91359b2e1c07950ad5a83c21bc9331a0554e196f9485ced5bef036866c431dbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2dfb46d373d45f4c02ba091370c6de56f48ac50b2b2404b3e6ea047d792e99f3
MD5 f49e4c8e5d04c7627df2f53fed5c777e
BLAKE2b-256 da2b413c56a210f5c7cb00ae3169a73c66928589a0174de74b894a82c34ac83c

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-pp310-pypy310_pp73-win_amd64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f2e737df5a0fcfd6a08fcfaf0a6b5810b1ab2311a82f97283f33081791eaf1ff
MD5 736bb8105ebd72ec7046d2dd8a8f5adc
BLAKE2b-256 7f6d0195260bde0c6ff295c47f2a38aa4cf285cae035140a30cb5e2dc128bba6

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a3eb3e27dee1cb16c4521112823a8a05d5996220d7878bebe4a700fb96f34072
MD5 7e6b906ed85a288ae4aeb7e85bb8bd8b
BLAKE2b-256 be49295d51c43f8e2fd2e6563fb75f620bc218df30f0c6ece0374868f66befc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ebe2475355e1a6f1173dda5d9ce3450064cdfca4ecf2425bf664c57c15663a9
MD5 6de0f64e01935a60a664f65b7bfb63c8
BLAKE2b-256 7f0d09ee29dc80cea852adde800b649832f6952684c8d401603faee533498ef9

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e52ff5e5ee75c5cf64c0dca9d5b81b3d1aa8c19e5f39b23d64d99b0b56162bd0
MD5 cedc4ed9e3825415d25b37ab120aa215
BLAKE2b-256 f61a10305e01fcac2577d0e3fe4dd43cc596987e8d24121679ccb19065228ff4

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: krcf-0.2.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 529.5 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for krcf-0.2.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 5594f5bf095fd4e9f690946e57ba9b95ba79941f1389ec1ced71a3bc1c00c6fa
MD5 6003df3a92e3cabcec0ed10678f6ce9c
BLAKE2b-256 df512d0adf321b6864168cdf7d764556951225d927fbe6c9b7e395b81b022472

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp314-cp314t-win_arm64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: krcf-0.2.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 559.3 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for krcf-0.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 485b9398c70d0ab70903733ae9d27baa1f4ff8be0d4dac8666fd34af013c5b31
MD5 4bff1423818121200707efc6e51fe138
BLAKE2b-256 92f51082cd02a19125380bdbcc8d9d000ad0c9d5a7e9b588c501f9b2edbb6961

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp314-cp314t-win_amd64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bff1d9f21f78ebae70efa6b86b767e85510d0e98b61bcba0a8b214c5693f27d4
MD5 d5286f3c0b7d7e623a10729846586a42
BLAKE2b-256 f2e9b6c8edb4f00ba21e6aadd54328a0316e58648fd26c902fa10e1f177b97d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e31652212a7641fbfa313593b992ccce5f5c89de30cec70a20302e500be9331
MD5 d533195903d10dd23e38409ee3b96dd6
BLAKE2b-256 7d18055f46d23d59a0c031cc2c0cbfc817162e9f23246debfd7f8b5c25343262

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f0c305304811cb1097e9b7086f692f9d1910729920e1ef6b8ea6b18c4134c94
MD5 63107ea165718cde4a2345f735f24998
BLAKE2b-256 7fd6efdd6ecde79029e2be0e359ec63cf75bbb5a9f821e2991fa9a6b89b3271a

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3e35fac3b68b0795a788debafd9fe1fbeea611b5cb4091775600a6d3016bf00d
MD5 1dd449ed1f8465b253c11f390c4621c4
BLAKE2b-256 87ac5d6dfc0e60e948e13952560e7bb35560f5482807a22f4ab1af236c1b60dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6df30377964de22cd11bbc2dd9e48fe75ea1228895846bb4f234bf8ca0783bba
MD5 dbc324187aab7fab8d87b2bb1cc94d28
BLAKE2b-256 0417058ee1aa083002f1246024cab5ef27c30fad48defa72c9d7cd6d6532b1df

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5b02a1f29a83ac83bb65ea28dde6b50bc7413d246f88412343679e3ba61a89e7
MD5 c3b16cfc5b72ae61e4b31da9d95c49d5
BLAKE2b-256 54f77ea35a1a50a2354591df9f00f0b7a3aea07534105b32c22162632f784a6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: krcf-0.2.0-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 529.0 kB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for krcf-0.2.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 0bbe44aa1b9bf0d1760583af148974cf8a3b351eda79190f32315eca7d1b2a19
MD5 a63e486c06bd48d6e6f79a36374c7c11
BLAKE2b-256 82eda975dcef5cf480777a927bed59a1cd3e7ec3fe9e2d28e7e8991944f05391

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp313-cp313t-win_arm64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: krcf-0.2.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 559.3 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for krcf-0.2.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 185e530a3ac9b2de939a9fce5cc95e2e95b7b2f21d2563cb5a23bfd5b77de231
MD5 9c551b070985eae36ad1d660eabbb587
BLAKE2b-256 5a30d82a20c330d7061581ff0c4091aa08aa236255da72c520154d37480649a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp313-cp313t-win_amd64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17465a220d7b83be5fd17052b636f96d8e08da4dcde812f7ac9d033c771dbf0f
MD5 8a021b47cd669d7428c031099ec1ba76
BLAKE2b-256 00868b76a3bf62e0f077a01fb13931558a28ea0fe329a0953ab21a32caf7cee5

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46a2b363641e427b0a41b2fda78231fb8d3fa0c75d3d741af170604ae5dd815f
MD5 1afdfc9f5bdf05eec9b17a19ffed56cd
BLAKE2b-256 6988c20fba35dc2243667db8a386d997fdb10f375eadcf6b4cf8f09f4db2c4c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp313-cp313t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2fb592274478813c1e0e8c3a434c993738313e00f67f85f5085b7a4368e78f9a
MD5 e6d46103cfd6157ec8d63803f05e72ca
BLAKE2b-256 110deb8c81bb5439c88aa0e709049ef8c8919438bd51a28cd6c0b2fc9c4610f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp313-cp313t-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a6b5cc094acdb8f8f3fbbcce60820ba20ba10953ea823c19abab89b71782498
MD5 33a3f611bab3a1d98f73e1b34876edc6
BLAKE2b-256 2bf5d3d876b2fb5646aa523a4112dd28646ca93658f17ed0662c19aa81764098

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp313-cp313t-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3271c485f80d927610555ea4c91d4e347ecf7b728ad75ab0394ade639a09be6b
MD5 e68d98beda07c40eae8eac5396168e29
BLAKE2b-256 c1ca8a2996b4a5569f921de7fe71f68411548a6187b6bed7de3dc3f19274c581

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp313-cp313t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-cp313-cp313t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8145b26136cbcc30e3fc36d059b7783f683090341b02e7e64ce64a6912d5b4c1
MD5 a2645d0235790fdb7294ff05b20521a4
BLAKE2b-256 029c18d6732dd3f7ce3386fcca503162eaaab6412ed375e964f0c5f0975c0ae3

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp313-cp313t-macosx_10_15_x86_64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp39-abi3-win_arm64.whl.

File metadata

  • Download URL: krcf-0.2.0-cp39-abi3-win_arm64.whl
  • Upload date:
  • Size: 532.8 kB
  • Tags: CPython 3.9+, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for krcf-0.2.0-cp39-abi3-win_arm64.whl
Algorithm Hash digest
SHA256 6dc29109d010024ed40814ff4d20d0c4a09ade6c745fac23b5bcad4eae12b7b9
MD5 cea52ddf2c5b27d1d2f4ad942fe00326
BLAKE2b-256 10ac7d9e50c284869af00fbf852badb429d4ed349d1e36c9b511400fc029bcab

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp39-abi3-win_arm64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp39-abi3-win_amd64.whl.

File metadata

  • Download URL: krcf-0.2.0-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 562.1 kB
  • Tags: CPython 3.9+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for krcf-0.2.0-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 87e7d0a6a57977222d533349aaf3b1104ef1b72bf9cd2a51a3762b16a40a99b1
MD5 f13536f5cd638772060d7c7381c65d0b
BLAKE2b-256 6d9075829da42fabe749871a53cc0678458a6b84443d5bab0d2487dd15660608

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp39-abi3-win_amd64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp39-abi3-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: krcf-0.2.0-cp39-abi3-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 717.0 kB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for krcf-0.2.0-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b299d4f94d4ac6fd6de43857d3ce8c204041080d44e24009d2f6d37cf16cda9
MD5 c42ed8f8399f65e02ecca67b164c2fd6
BLAKE2b-256 1c0db0444ed9e3881c365d635d6afb9b58ac18b07d02f89fd8ec857dad696cf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp39-abi3-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp39-abi3-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: krcf-0.2.0-cp39-abi3-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 665.3 kB
  • Tags: CPython 3.9+, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for krcf-0.2.0-cp39-abi3-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4cdbaa1607316429bd5ccd3fe8146acbfacaf6397472ea99e23a15019e4bb14f
MD5 4279503ffee577c8ee8a5390e6fc930c
BLAKE2b-256 6f7c6688a2a4146b36a4bcf30750a5635b2991b466a698552386ba56fdca2a2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp39-abi3-musllinux_1_2_riscv64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp39-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6de8d5772681feacd5f7521e5931b79acd2627dbaede285d562a781e4b59d973
MD5 043bdbe282db905555dccf2173b1a791
BLAKE2b-256 03b624f1b1f8eac6ddce74c781ec5a58f1b06b178edee75fe73438afa4a17a6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp39-abi3-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp39-abi3-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-cp39-abi3-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 097be1a8f9e4ab424c5f75fd90fd6b628546a8a8892b3ab54b7c1171cdd23983
MD5 c2d3a6842932f55a2a97cc6f8d958e7b
BLAKE2b-256 169f27c83ef36d527351b790a7fb6b212d3b1ac5d36f5fc811b50c6da628e5fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp39-abi3-manylinux_2_31_riscv64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp39-abi3-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: krcf-0.2.0-cp39-abi3-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 637.7 kB
  • Tags: CPython 3.9+, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for krcf-0.2.0-cp39-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 394aa89083279a432c4356205d75d6250bbf473f3e91f12c76b770313e21ec28
MD5 635dbf2eb42d54c83fb56344a87c0c50
BLAKE2b-256 caddcbed7d88f6fd61630c73f8ed275ca2237d24ed2aa5e8f0c54d3c54bb17d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp39-abi3-manylinux_2_28_x86_64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp39-abi3-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for krcf-0.2.0-cp39-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5e23ba2762706a3b5d51fb8f74f70600c3b4538f917108ed814bd897c6e7f952
MD5 753c94a215ab2e34728227fac905b110
BLAKE2b-256 3ea135e7025ff1d63e6945ff2d3bc01ee8a25cd1d36536fbb6b64c0f88ef6963

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp39-abi3-manylinux_2_28_aarch64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp39-abi3-macosx_11_0_arm64.whl.

File metadata

  • Download URL: krcf-0.2.0-cp39-abi3-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 578.5 kB
  • Tags: CPython 3.9+, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for krcf-0.2.0-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 812da31abd89e962abf7173dce0625e745ca4d059fde2cee0211e75206efcf7b
MD5 a6bffeaa0ed0a598b636a726097d309c
BLAKE2b-256 0f8d0b567c31d68a78980b57a2cab0118683023d91a749ec23fa9d1f349a198d

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp39-abi3-macosx_11_0_arm64.whl:

Publisher: CI.yml on Bing-su/krcf

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

File details

Details for the file krcf-0.2.0-cp39-abi3-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: krcf-0.2.0-cp39-abi3-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 608.6 kB
  • Tags: CPython 3.9+, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for krcf-0.2.0-cp39-abi3-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 eecf17e3823535d49545a940689f0d32ca5d889f1c6b9acdebf23cbd4ad751dc
MD5 7cc2e6be7139e97e2a7c745a0b18700b
BLAKE2b-256 28cf42801d98ecdb1520dbb2900e8d9eb2eef5efb931dfbb94592630c4730293

See more details on using hashes here.

Provenance

The following attestation bundles were made for krcf-0.2.0-cp39-abi3-macosx_10_15_x86_64.whl:

Publisher: CI.yml on Bing-su/krcf

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