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 orRandomCutForestOptionsspecifying 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 forestsample_size(int): Sample size for each treeoutput_after(int): Number of points before output is readyrandom_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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file krcf-0.4.0.tar.gz.
File metadata
- Download URL: krcf-0.4.0.tar.gz
- Upload date:
- Size: 113.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca205124c54617e0d80de29ca1fb12e1dad1870d75ba8f6451524be08d02ba37
|
|
| MD5 |
09f0936c6782edbee9c8b036ec7f6436
|
|
| BLAKE2b-256 |
3e5a13a96bc23197ce79360c6719c4ae39aae6dea4b7a16400948700c5ce1441
|
Provenance
The following attestation bundles were made for krcf-0.4.0.tar.gz:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0.tar.gz -
Subject digest:
ca205124c54617e0d80de29ca1fb12e1dad1870d75ba8f6451524be08d02ba37 - Sigstore transparency entry: 748699373
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-pp311-pypy311_pp73-win_amd64.whl.
File metadata
- Download URL: krcf-0.4.0-pp311-pypy311_pp73-win_amd64.whl
- Upload date:
- Size: 585.1 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7864731c5ed1cdffa84424653d10fe58883a08aa89b2a29059c11670e4214d2b
|
|
| MD5 |
ce0dd2f9b3880f874ab43900c1b5757a
|
|
| BLAKE2b-256 |
8b9c4fa4b9d44b0195bb76041ecc5894b8e79eaccfa47782df548d1a98f7d7a8
|
Provenance
The following attestation bundles were made for krcf-0.4.0-pp311-pypy311_pp73-win_amd64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-pp311-pypy311_pp73-win_amd64.whl -
Subject digest:
7864731c5ed1cdffa84424653d10fe58883a08aa89b2a29059c11670e4214d2b - Sigstore transparency entry: 748699396
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: krcf-0.4.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 641.0 kB
- Tags: PyPy, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
001a80bd53c2ec5df2d14fc9af59642671a24968cbb5bce86b27d7f64f071246
|
|
| MD5 |
a829b1b96a9fa520afba024a49d2c151
|
|
| BLAKE2b-256 |
d3a1d7cd50e25e4cd1133a3917aa164f639d4a47f0f5c2cc28b91412a28f44c0
|
Provenance
The following attestation bundles were made for krcf-0.4.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl -
Subject digest:
001a80bd53c2ec5df2d14fc9af59642671a24968cbb5bce86b27d7f64f071246 - Sigstore transparency entry: 748699416
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: krcf-0.4.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 604.5 kB
- Tags: PyPy, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cad2b8ab59adbf3357c328a27bf4fa0761ee5ee1b030ea3118497b51dfa750fd
|
|
| MD5 |
85812edc4cb327466785c8727a64de9d
|
|
| BLAKE2b-256 |
083386b6ffc93640a48e4095b07ff16562e93d269a580d8fa3c297a95b697102
|
Provenance
The following attestation bundles were made for krcf-0.4.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl -
Subject digest:
cad2b8ab59adbf3357c328a27bf4fa0761ee5ee1b030ea3118497b51dfa750fd - Sigstore transparency entry: 748699455
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: krcf-0.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 576.0 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b17c96266508ab812bd27643fa018e8b4069b93a6782812a4724b46fa0dcd860
|
|
| MD5 |
44578898718894c62292c871e13c576e
|
|
| BLAKE2b-256 |
a75c69058d9c7f40186a8395bf3050e68a7f63046bc22ea2a9d042f57e2b3394
|
Provenance
The following attestation bundles were made for krcf-0.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl -
Subject digest:
b17c96266508ab812bd27643fa018e8b4069b93a6782812a4724b46fa0dcd860 - Sigstore transparency entry: 748699441
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.
File metadata
- Download URL: krcf-0.4.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 612.5 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
757f813ca51fe12484a660fd4810f912f29b98c2a5b23c1b80d0fe786646691d
|
|
| MD5 |
c618fae303577f006cffecd880fa6a2e
|
|
| BLAKE2b-256 |
7024ed5a206528a27b0aa3cc7d11848d83c745c2d385c0e2e254165b520e7fd6
|
Provenance
The following attestation bundles were made for krcf-0.4.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl -
Subject digest:
757f813ca51fe12484a660fd4810f912f29b98c2a5b23c1b80d0fe786646691d - Sigstore transparency entry: 748699420
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-cp314-cp314t-win_arm64.whl.
File metadata
- Download URL: krcf-0.4.0-cp314-cp314t-win_arm64.whl
- Upload date:
- Size: 553.4 kB
- Tags: CPython 3.14t, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4bc364ae6d95c61d284c7ccd91b26dfbfa3b91c027e1b11c1484934afdf7ac43
|
|
| MD5 |
bd37b026afcce6bfbf1422340048160c
|
|
| BLAKE2b-256 |
094fafb2e2ea0c688035d7101e1412612454d9215408b3fae48f2d0d4792e9e9
|
Provenance
The following attestation bundles were made for krcf-0.4.0-cp314-cp314t-win_arm64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-cp314-cp314t-win_arm64.whl -
Subject digest:
4bc364ae6d95c61d284c7ccd91b26dfbfa3b91c027e1b11c1484934afdf7ac43 - Sigstore transparency entry: 748699406
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: krcf-0.4.0-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 581.7 kB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c9700bc3af3354c4e1e1e65796b3b93f0aa1c8c6a227807743fca775f066d4f
|
|
| MD5 |
065d26f08e624dc92dd900569afccaa2
|
|
| BLAKE2b-256 |
ca4c43b8c4a644b46eff821f52f23b20c76f8e13edc50224a5b0c28f4c781adb
|
Provenance
The following attestation bundles were made for krcf-0.4.0-cp314-cp314t-win_amd64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-cp314-cp314t-win_amd64.whl -
Subject digest:
9c9700bc3af3354c4e1e1e65796b3b93f0aa1c8c6a227807743fca775f066d4f - Sigstore transparency entry: 748699434
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: krcf-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 722.9 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
760ba4a5d1cd4f3bdf591343fa74dacd421f2468a8f7ddc645281bf22f43d93c
|
|
| MD5 |
a07e3972a55f94cb2d2014ba0f9d60f3
|
|
| BLAKE2b-256 |
d05c83dadf2f859d3f2156963374442fdbc41877877bcc2460fd3591318ecc36
|
Provenance
The following attestation bundles were made for krcf-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
760ba4a5d1cd4f3bdf591343fa74dacd421f2468a8f7ddc645281bf22f43d93c - Sigstore transparency entry: 748699461
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: krcf-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 669.7 kB
- Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b6afe941c0885ef805d7548f3285569c5d218d7977a1adfa5f707e92ff067bc
|
|
| MD5 |
ce474691285ed75538a51e279c71e27c
|
|
| BLAKE2b-256 |
6c5d3fad68d973d1069c1cbf0b29bb1d22903ec5738609d3a7a2320750ef2739
|
Provenance
The following attestation bundles were made for krcf-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl -
Subject digest:
9b6afe941c0885ef805d7548f3285569c5d218d7977a1adfa5f707e92ff067bc - Sigstore transparency entry: 748699443
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-cp314-cp314t-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: krcf-0.4.0-cp314-cp314t-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 640.0 kB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d71f44e266ff56ec70e592bbd33cf5672b242d5094abd853578a3115222badcd
|
|
| MD5 |
b0b209cd7e7b2b3b27dd9924fd244975
|
|
| BLAKE2b-256 |
0d1c9cc26c66a17bdfd50f843a136766b1d1a70f66539236586f47057d458cb1
|
Provenance
The following attestation bundles were made for krcf-0.4.0-cp314-cp314t-manylinux_2_28_x86_64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-cp314-cp314t-manylinux_2_28_x86_64.whl -
Subject digest:
d71f44e266ff56ec70e592bbd33cf5672b242d5094abd853578a3115222badcd - Sigstore transparency entry: 748699403
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-cp314-cp314t-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: krcf-0.4.0-cp314-cp314t-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 603.3 kB
- Tags: CPython 3.14t, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
917dd21d9825b452333af23ae3c16edd2cf4f9935d8324acf3af55c17dbaed62
|
|
| MD5 |
6d01341a6d0f7e3a17308e629053fc5d
|
|
| BLAKE2b-256 |
d21e5614f23e5788dfb0c4ee860ff71e0684abc28eb8d6c4e6ce7f585c32eed2
|
Provenance
The following attestation bundles were made for krcf-0.4.0-cp314-cp314t-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-cp314-cp314t-manylinux_2_28_aarch64.whl -
Subject digest:
917dd21d9825b452333af23ae3c16edd2cf4f9935d8324acf3af55c17dbaed62 - Sigstore transparency entry: 748699410
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: krcf-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 574.1 kB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1f871836a968fc49cde6b9d2c1f71cf7ca4db32d567efb536a6fd3058411783
|
|
| MD5 |
65f9070c9f042325edef702c40122edc
|
|
| BLAKE2b-256 |
9a9026b649a428a021298f7a83a2aab80be9b826d6ee139a318a51ee45449c08
|
Provenance
The following attestation bundles were made for krcf-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl -
Subject digest:
f1f871836a968fc49cde6b9d2c1f71cf7ca4db32d567efb536a6fd3058411783 - Sigstore transparency entry: 748699438
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl.
File metadata
- Download URL: krcf-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl
- Upload date:
- Size: 610.1 kB
- Tags: CPython 3.14t, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c985f85483a72ecbbea66055d5971cd57069a6753c50189022ad493a09751ecc
|
|
| MD5 |
bbe0dfcb358b479ec8c2557e0090cc09
|
|
| BLAKE2b-256 |
ae7cc1d3010f8b363dc498da51a5b3fb437c98ba516ba47eb68e1cc48505b33b
|
Provenance
The following attestation bundles were made for krcf-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl -
Subject digest:
c985f85483a72ecbbea66055d5971cd57069a6753c50189022ad493a09751ecc - Sigstore transparency entry: 748699459
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-cp310-abi3-win_arm64.whl.
File metadata
- Download URL: krcf-0.4.0-cp310-abi3-win_arm64.whl
- Upload date:
- Size: 560.4 kB
- Tags: CPython 3.10+, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
313b6dfa273312fd39675743e9ceeb4b8bc3843596b31767e4344663c03d57fa
|
|
| MD5 |
bb7fb9672c822871b4bcc738f53fc379
|
|
| BLAKE2b-256 |
1a898452e6e0184c6d67467e0aa7d5783babd8b919fb6a6df2baf66b1079e9af
|
Provenance
The following attestation bundles were made for krcf-0.4.0-cp310-abi3-win_arm64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-cp310-abi3-win_arm64.whl -
Subject digest:
313b6dfa273312fd39675743e9ceeb4b8bc3843596b31767e4344663c03d57fa - Sigstore transparency entry: 748699400
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-cp310-abi3-win_amd64.whl.
File metadata
- Download URL: krcf-0.4.0-cp310-abi3-win_amd64.whl
- Upload date:
- Size: 588.5 kB
- Tags: CPython 3.10+, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
36e092af28642a31943706c138b81abdb002a4b93a041c3b2043b8d4f1e22349
|
|
| MD5 |
61f5ff380366457c8cc370f5ac46a17a
|
|
| BLAKE2b-256 |
d3561e3a911b4df7db2e9c9be36702070436c323bd0b71b7a142eb971f4991fc
|
Provenance
The following attestation bundles were made for krcf-0.4.0-cp310-abi3-win_amd64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-cp310-abi3-win_amd64.whl -
Subject digest:
36e092af28642a31943706c138b81abdb002a4b93a041c3b2043b8d4f1e22349 - Sigstore transparency entry: 748699446
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-cp310-abi3-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: krcf-0.4.0-cp310-abi3-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 726.4 kB
- Tags: CPython 3.10+, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3c01100ec4cee105753cbe2367dbb5fba97c7bada978c9683a5b8bccf5f3d8f
|
|
| MD5 |
0fc391d59ff2410f0a5c6dcd437ffb38
|
|
| BLAKE2b-256 |
a7e4bcf1a57f0aabc0590ec499b1dbac6c81ef18d83fa448bd72b0820a6376e1
|
Provenance
The following attestation bundles were made for krcf-0.4.0-cp310-abi3-musllinux_1_2_x86_64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-cp310-abi3-musllinux_1_2_x86_64.whl -
Subject digest:
d3c01100ec4cee105753cbe2367dbb5fba97c7bada978c9683a5b8bccf5f3d8f - Sigstore transparency entry: 748699430
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-cp310-abi3-musllinux_1_2_riscv64.whl.
File metadata
- Download URL: krcf-0.4.0-cp310-abi3-musllinux_1_2_riscv64.whl
- Upload date:
- Size: 679.5 kB
- Tags: CPython 3.10+, musllinux: musl 1.2+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9dffde8467445b43ff683ae470fd220208a33244f3769be1d2d0bb6c31923e8
|
|
| MD5 |
58c8b5418924654946bf14dfd4706b9c
|
|
| BLAKE2b-256 |
9a105f6102f40325de4e6dd49153250f86869cc6adfc371115a6a209a4939927
|
Provenance
The following attestation bundles were made for krcf-0.4.0-cp310-abi3-musllinux_1_2_riscv64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-cp310-abi3-musllinux_1_2_riscv64.whl -
Subject digest:
f9dffde8467445b43ff683ae470fd220208a33244f3769be1d2d0bb6c31923e8 - Sigstore transparency entry: 748699392
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-cp310-abi3-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: krcf-0.4.0-cp310-abi3-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 673.0 kB
- Tags: CPython 3.10+, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4c62ad2ad1dd2b046689f7d9b03685cc4dd018bcbc51dae9f25518f9eb1b2d1
|
|
| MD5 |
f26b6f215b54f009884ba5674ab3602c
|
|
| BLAKE2b-256 |
fd6c75433142f0e9390418261283daf5cc39659e375eb0a77c4de02fe1db070c
|
Provenance
The following attestation bundles were made for krcf-0.4.0-cp310-abi3-musllinux_1_2_aarch64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-cp310-abi3-musllinux_1_2_aarch64.whl -
Subject digest:
a4c62ad2ad1dd2b046689f7d9b03685cc4dd018bcbc51dae9f25518f9eb1b2d1 - Sigstore transparency entry: 748699427
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-cp310-abi3-manylinux_2_31_riscv64.whl.
File metadata
- Download URL: krcf-0.4.0-cp310-abi3-manylinux_2_31_riscv64.whl
- Upload date:
- Size: 669.9 kB
- Tags: CPython 3.10+, manylinux: glibc 2.31+ riscv64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd3e51cab402425881e1aaf0cc60f1d2946339c473f5b74dfc23f168fca1e152
|
|
| MD5 |
ce87f1da2f4efb3cfcba9b10d31b8261
|
|
| BLAKE2b-256 |
239bf28b57f0c156e07c18e3a299417feedde3c35db1e89fdbbbdbf8b5bcec8b
|
Provenance
The following attestation bundles were made for krcf-0.4.0-cp310-abi3-manylinux_2_31_riscv64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-cp310-abi3-manylinux_2_31_riscv64.whl -
Subject digest:
cd3e51cab402425881e1aaf0cc60f1d2946339c473f5b74dfc23f168fca1e152 - Sigstore transparency entry: 748699383
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-cp310-abi3-manylinux_2_28_x86_64.whl.
File metadata
- Download URL: krcf-0.4.0-cp310-abi3-manylinux_2_28_x86_64.whl
- Upload date:
- Size: 643.7 kB
- Tags: CPython 3.10+, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b297c62f689da52257e8bd9d5ce4d59141b8a386217f9dd64446ad6ede2aec6b
|
|
| MD5 |
1109a58e269a6c2550e03784b6d09b7c
|
|
| BLAKE2b-256 |
984a6453e195b5b5813e9fe6af4d5f1d4e8be4c50bacaa5c41cdab1c17794c8e
|
Provenance
The following attestation bundles were made for krcf-0.4.0-cp310-abi3-manylinux_2_28_x86_64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-cp310-abi3-manylinux_2_28_x86_64.whl -
Subject digest:
b297c62f689da52257e8bd9d5ce4d59141b8a386217f9dd64446ad6ede2aec6b - Sigstore transparency entry: 748699387
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-cp310-abi3-manylinux_2_28_aarch64.whl.
File metadata
- Download URL: krcf-0.4.0-cp310-abi3-manylinux_2_28_aarch64.whl
- Upload date:
- Size: 607.6 kB
- Tags: CPython 3.10+, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6059ce1a50f7e403694757556fefa061ca60a8bca0dbcbd29aee99fb0132b99a
|
|
| MD5 |
3ee7ee6674bde5d18582611ca7710033
|
|
| BLAKE2b-256 |
5241a7aace317070a8c3ba959eb8ca6a832f446694e2a467e95d33840374bd7c
|
Provenance
The following attestation bundles were made for krcf-0.4.0-cp310-abi3-manylinux_2_28_aarch64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-cp310-abi3-manylinux_2_28_aarch64.whl -
Subject digest:
6059ce1a50f7e403694757556fefa061ca60a8bca0dbcbd29aee99fb0132b99a - Sigstore transparency entry: 748699379
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-cp310-abi3-macosx_11_0_arm64.whl.
File metadata
- Download URL: krcf-0.4.0-cp310-abi3-macosx_11_0_arm64.whl
- Upload date:
- Size: 579.0 kB
- Tags: CPython 3.10+, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8c88f5f1f0f99217dbda818e893d976f789f12651813242e188f7750c27dcaa
|
|
| MD5 |
b13b05ad4e1152f0fb2a02c7fe454660
|
|
| BLAKE2b-256 |
0c92b90d0b69dc41fd33c60174a6306a6ed453bce000cbd5dbeca7d23be91128
|
Provenance
The following attestation bundles were made for krcf-0.4.0-cp310-abi3-macosx_11_0_arm64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-cp310-abi3-macosx_11_0_arm64.whl -
Subject digest:
e8c88f5f1f0f99217dbda818e893d976f789f12651813242e188f7750c27dcaa - Sigstore transparency entry: 748699451
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type:
File details
Details for the file krcf-0.4.0-cp310-abi3-macosx_10_15_x86_64.whl.
File metadata
- Download URL: krcf-0.4.0-cp310-abi3-macosx_10_15_x86_64.whl
- Upload date:
- Size: 615.5 kB
- Tags: CPython 3.10+, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ea9b48fe737be9222d4b3617221b6ff4af4947b6ffcc137186cbbed2c7f8c94
|
|
| MD5 |
01c4b5992505fe9c2314bf7e152a8f98
|
|
| BLAKE2b-256 |
6d4705a7724011ea0aa4c0d2580f8f3333b368ba0b32fe89e5c3c816f6021549
|
Provenance
The following attestation bundles were made for krcf-0.4.0-cp310-abi3-macosx_10_15_x86_64.whl:
Publisher:
CI.yml on Bing-su/krcf
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
krcf-0.4.0-cp310-abi3-macosx_10_15_x86_64.whl -
Subject digest:
6ea9b48fe737be9222d4b3617221b6ff4af4947b6ffcc137186cbbed2c7f8c94 - Sigstore transparency entry: 748699448
- Sigstore integration time:
-
Permalink:
Bing-su/krcf@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/Bing-su
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
CI.yml@f4741f89f9f2d952196db86e24c4f2bc18f2d8ff -
Trigger Event:
push
-
Statement type: