Online Window Regression Filter 1D (fast-cython, parameterless)
Project description
owrf1d — Online Window Regression Filter (1D)
A strictly-online 1D filter that separates local linear drift (trend) from noise by fitting linear regression on a sliding window and selecting an effective window length via predictive Student-t log-likelihood.
Key properties:
- Strictly online: processes one observation at a time (
update()), no future access. - Adaptive window: automatically selects how far back to look (effective window).
- Minimal API: only
max_window,min_window,history, andselection. - Deterministic: same inputs → bitwise-identical outputs (within the same backend path).
- Fast path: optional Cython core (auto-used when available), with a pure-Python fallback.
- Serialization:
dumps()/loads()viacloudpickle.
Installation
pip install owrf1d
Optional dependencies for examples (plots):
pip install "owrf1d[examples]"
Notes on performance:
- The package can use a Cython extension (
owrf1d._core) when present. - You can force the pure-Python path via environment variable:
OWRF1D_FORCE_PY=1 python your_script.py
Quick start
Minimal online loop (timestamps)
from owrf1d import OnlineWindowRegressor1D
f = OnlineWindowRegressor1D(max_window=128, min_window=4, selection="soft")
for t, y in stream: # strictly in time order
step = f.update(y, t=t)
mu = step["mu"]
trend = step["trend"]
sigma = step["sigma2"] ** 0.5
Minimal online loop (fixed dt, no timestamps)
from owrf1d import OnlineWindowRegressor1D
f = OnlineWindowRegressor1D(max_window=128, min_window=4)
for y in stream:
step = f.update(y, dt=1.0) # dt interface
Missing observations / “predict-only”
If y is None, the filter advances time but does not update the regression buffers:
step = f.update(None, t=t) # or dt=...
assert step["flags"] != 0 # includes FLAG_PREDICT_ONLY
API
OnlineWindowRegressor1D(
*,
max_window: int = 128,
min_window: int = 4,
history: int = 0, # 0 disables history; -1 keeps all; N keeps last N
selection: str = "soft", # "soft" (default) or "hard"
)
update()
update(
y: float | None,
*,
t: float | None = None,
dt: float | None = None,
) -> dict
Time rules:
- If
dtis provided, it is used to advance time. - If
tis provided,dtis inferred ast - previous_t. - If neither is provided, the filter assumes
dt = 1.0. - If both
tanddtare provided,dtwins (and a numeric-guard flag may be set).
get_state(), get_history()
state = f.get_state()
history = f.get_history()
Serialization
blob = f.dumps()
f2 = OnlineWindowRegressor1D.loads(blob)
Output contract (step dict)
Every update() returns a dictionary with at least the following keys:
mu— filtered level at current timetrend— filtered slope (per unit time)sigma2— estimated noise variance (non-negative, guarded)n_star— selected effective window length (integer)score_star,score_second,delta_score— predictive log-likelihood scores (selection phase)nu— Student-t degrees of freedom used in selection (typicallyn_star - 2)pred_mu,pred_s2— one-step-ahead predictive mean/variance (selection phase)resid—y - mu(after update)t,dt— time and step usedflags— bitmask (see below)
For selection="soft", additional diagnostic fields may be present, such as:
n_star_hard, n_eff, w_star, entropy_norm, tau, cap, sigma2_total, etc.
Flags
Bitmask values are exposed in owrf1d.flags:
from owrf1d.flags import (
FLAG_PREDICT_ONLY,
FLAG_INSUFFICIENT_DATA,
FLAG_DEGENERATE_XTX,
FLAG_NEGATIVE_SSE,
FLAG_NUMERIC_GUARD,
FLAG_HISTORY_TRUNC,
)
Meaning:
FLAG_PREDICT_ONLY—y is None(time advanced, no update)FLAG_INSUFFICIENT_DATA— fewer thanmin_windowprior pointsFLAG_DEGENERATE_XTX— regression matrix became (near-)singular for some candidatesFLAG_NEGATIVE_SSE— numeric artifact caused SSE < 0 (clipped)FLAG_NUMERIC_GUARD— NaN/Inf / non-positive dt / clipping / fallback guards triggeredFLAG_HISTORY_TRUNC— history ring buffer truncated (whenhistory > 0)
Model and scoring (math)
At time t, an observation (T_t, y_t) arrives.
Selection phase (predictive scoring)
For each candidate window size k (number of previous points) in:
k ∈ [min_window, max_window_effective]
we fit OLS on the k points before t:
D_t^(k) = {(T_{t-k}, y_{t-k}), ..., (T_{t-1}, y_{t-1})}
We set the regressor relative to the last pre-point:
x_i = T_i - T_{t-1}⇒x_{t-1} = 0- current-step
d = T_t - T_{t-1}(ordtinterface) ⇒x_t = d
Using sums:
Sx = Σ x_iSxx = Σ x_i^2Sy = Σ y_iSxy = Σ x_i y_iSyy = Σ y_i^2
Define:
D = k*Sxx - Sx^2(degenerate if too small)
OLS:
b = (k*Sxy - Sx*Sy) / Da = (Sy - b*Sx) / k
SSE (numerically-guarded / clipped):
SSE = (Syy - Sy^2/k) - b^2 * (Sxx - Sx^2/k)
Noise variance estimate:
nu = k - 2sigma2 = SSE / nu(guarded to be ≥ eps)
Leverage for prediction at x_t = d:
h = (Sxx - 2*Sx*d + k*d^2) / D
Predictive variance:
pred_s2 = sigma2 * (1 + h)
Predictive distribution (approx):
y_t | D_t^(k) ~ StudentT_df=nu(mean = pred_mu, variance = pred_s2)
where:
pred_mu = a + b*d
Score is the Student-t log-pdf plus a mild prior favoring larger windows:
score(k) = log p_t(y_t | D_t^(k)) + w * log(k)- current implementation uses
w = 0.5
The best window is:
k* = argmax_k score(k)(ties resolved toward largerk)
Update phase (state estimation)
- Hard (
selection="hard"): re-fit OLS on the window ofk* + 1points including(T_t, y_t), usingx_i = T_i - T_tso the intercept is the current level estimatemu_t. - Soft (
selection="soft"): compute weightsw_k ∝ exp(score(k)/tau)(entropy-adaptivetau), and mix the post-update parameters across candidate windows. This makes estimates smoother and provides diagnostics such asn_effandentropy_norm. The effective scan limit is also adapted via an internal “cap” to reduce per-step work when the model is confident.
Examples
Generate an overview PNG similar to the one shown above:
python examples/example1.py --n 600 --cp 200 --cp2 400 --max-window 128
Micro-benchmark:
python examples/bench.py --n 200000 --max-window 128 --repeats 5
Practical guidance
- Use
selection="soft"(default) when you want stable estimates and smoother adaptation. - Use
selection="hard"when you want the most interpretable discrete window lengthn_star. - If timestamps are noisy or unavailable, prefer the
dt=interface. - The method assumes locally linear dynamics and approximately iid noise within the selected window. Heavy autocorrelation or strong seasonality may require preprocessing or a different model class.
License
Copyright (c) 2026 Tovarnov Mikhail
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.```
Project details
Release history Release notifications | RSS feed
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 owrf1d-1.0.3.tar.gz.
File metadata
- Download URL: owrf1d-1.0.3.tar.gz
- Upload date:
- Size: 452.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
349f4d9c04a45ea888e75d06f77b330936bd023826ad00c3447e6dbd2ce0e52b
|
|
| MD5 |
41b21ee48739a1843166ef45093bcccb
|
|
| BLAKE2b-256 |
e4d3cdc6f3ef42e817ebcbaf0f7db452f9788672a04ded0371aa6881c5121f83
|
Provenance
The following attestation bundles were made for owrf1d-1.0.3.tar.gz:
Publisher:
publish.yml on TovarnovM/owrf1d
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
owrf1d-1.0.3.tar.gz -
Subject digest:
349f4d9c04a45ea888e75d06f77b330936bd023826ad00c3447e6dbd2ce0e52b - Sigstore transparency entry: 821292669
- Sigstore integration time:
-
Permalink:
TovarnovM/owrf1d@cb733ba96f05bfa4b392da40171ad41077dd82c4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TovarnovM
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cb733ba96f05bfa4b392da40171ad41077dd82c4 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file owrf1d-1.0.3-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: owrf1d-1.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 857.3 kB
- Tags: CPython 3.13, 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 |
99dcbd9ec0f4060b29f7a774609fc3c42426a225efe03bc3fbc148d1b63a56b8
|
|
| MD5 |
283e0d0babe6b35aa35df653de64ee2f
|
|
| BLAKE2b-256 |
b9df2164fa82b9a1543ce028577824111f9990735f8849fe969e295abc2bf4eb
|
Provenance
The following attestation bundles were made for owrf1d-1.0.3-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on TovarnovM/owrf1d
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
owrf1d-1.0.3-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
99dcbd9ec0f4060b29f7a774609fc3c42426a225efe03bc3fbc148d1b63a56b8 - Sigstore transparency entry: 821292682
- Sigstore integration time:
-
Permalink:
TovarnovM/owrf1d@cb733ba96f05bfa4b392da40171ad41077dd82c4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TovarnovM
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cb733ba96f05bfa4b392da40171ad41077dd82c4 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file owrf1d-1.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: owrf1d-1.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 850.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, 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 |
ebc8cd53a0b2bd7db9e8c05001a05ee04317bc9e9114eb1385fff787c5a7b5a2
|
|
| MD5 |
8e3e3c19103b5365a0067fb48a2b6ea3
|
|
| BLAKE2b-256 |
7c8519e8124d81089985d497d7e4a455063ea2f5459e806f72243c2bf0220cfd
|
Provenance
The following attestation bundles were made for owrf1d-1.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on TovarnovM/owrf1d
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
owrf1d-1.0.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
ebc8cd53a0b2bd7db9e8c05001a05ee04317bc9e9114eb1385fff787c5a7b5a2 - Sigstore transparency entry: 821292689
- Sigstore integration time:
-
Permalink:
TovarnovM/owrf1d@cb733ba96f05bfa4b392da40171ad41077dd82c4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TovarnovM
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cb733ba96f05bfa4b392da40171ad41077dd82c4 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file owrf1d-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: owrf1d-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 860.2 kB
- Tags: CPython 3.12, 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 |
19ee6a5212b097d111f1498cfda80d85f5e314c60b0898ae61bca45cbc72de76
|
|
| MD5 |
3d78bddf166ea451e8820f43fbe04b28
|
|
| BLAKE2b-256 |
8102473374cdd487d974b1721c44d398f0554d43ebbd3d439ce1d70384221fc9
|
Provenance
The following attestation bundles were made for owrf1d-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on TovarnovM/owrf1d
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
owrf1d-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
19ee6a5212b097d111f1498cfda80d85f5e314c60b0898ae61bca45cbc72de76 - Sigstore transparency entry: 821292675
- Sigstore integration time:
-
Permalink:
TovarnovM/owrf1d@cb733ba96f05bfa4b392da40171ad41077dd82c4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TovarnovM
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cb733ba96f05bfa4b392da40171ad41077dd82c4 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file owrf1d-1.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: owrf1d-1.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 854.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, 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 |
be695d9a5b846dd9d523c173d7346fc4b367923961ac7b66e4bb8a4a3c4ee29e
|
|
| MD5 |
0b23fa1e387546d95d74475d4f8f1dd9
|
|
| BLAKE2b-256 |
2ba2efed38315bbf97d506ccef55637654c01808d6a92c4f46f0da9b4fdfe837
|
Provenance
The following attestation bundles were made for owrf1d-1.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on TovarnovM/owrf1d
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
owrf1d-1.0.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
be695d9a5b846dd9d523c173d7346fc4b367923961ac7b66e4bb8a4a3c4ee29e - Sigstore transparency entry: 821292700
- Sigstore integration time:
-
Permalink:
TovarnovM/owrf1d@cb733ba96f05bfa4b392da40171ad41077dd82c4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TovarnovM
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cb733ba96f05bfa4b392da40171ad41077dd82c4 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file owrf1d-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: owrf1d-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 859.5 kB
- Tags: CPython 3.11, 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 |
28c99dea5941cc3cc00cc710a26f36432ad2ac57f4ca783f983830d7a2c7a642
|
|
| MD5 |
67ee6de790262345977da479f54e6e1d
|
|
| BLAKE2b-256 |
f0bb8969d1e9755f8581e09e512654e2bd16b9871108897fccff02bbb313cc57
|
Provenance
The following attestation bundles were made for owrf1d-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on TovarnovM/owrf1d
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
owrf1d-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
28c99dea5941cc3cc00cc710a26f36432ad2ac57f4ca783f983830d7a2c7a642 - Sigstore transparency entry: 821292692
- Sigstore integration time:
-
Permalink:
TovarnovM/owrf1d@cb733ba96f05bfa4b392da40171ad41077dd82c4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TovarnovM
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cb733ba96f05bfa4b392da40171ad41077dd82c4 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file owrf1d-1.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: owrf1d-1.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 849.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, 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 |
f9999722ae309c40182d41638ab033795b3717678c4bcf0999d74f7701b32c4f
|
|
| MD5 |
34af27ebe00568d23ddab558829f6b1d
|
|
| BLAKE2b-256 |
5006cd41fef954756aed2f807533015178661ebb1f41cfb31a86c6111563935c
|
Provenance
The following attestation bundles were made for owrf1d-1.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on TovarnovM/owrf1d
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
owrf1d-1.0.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
f9999722ae309c40182d41638ab033795b3717678c4bcf0999d74f7701b32c4f - Sigstore transparency entry: 821292691
- Sigstore integration time:
-
Permalink:
TovarnovM/owrf1d@cb733ba96f05bfa4b392da40171ad41077dd82c4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TovarnovM
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cb733ba96f05bfa4b392da40171ad41077dd82c4 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file owrf1d-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: owrf1d-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 814.9 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 |
c417fe443c4ebb35b73556dc771c04db13af5dc3760c736f559ff216b583c99f
|
|
| MD5 |
ecae347b995d2c1fab827bd8d3e260bb
|
|
| BLAKE2b-256 |
30251937cfad863e535b370f40979e162179df83e0f11495fd7633d9fa78e40c
|
Provenance
The following attestation bundles were made for owrf1d-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
publish.yml on TovarnovM/owrf1d
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
owrf1d-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
c417fe443c4ebb35b73556dc771c04db13af5dc3760c736f559ff216b583c99f - Sigstore transparency entry: 821292694
- Sigstore integration time:
-
Permalink:
TovarnovM/owrf1d@cb733ba96f05bfa4b392da40171ad41077dd82c4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TovarnovM
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cb733ba96f05bfa4b392da40171ad41077dd82c4 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file owrf1d-1.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: owrf1d-1.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 805.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, 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 |
132d7a0ef325305f5c58b417f15fab8eb05c726e556c978b3e7fa0a5ac6496c7
|
|
| MD5 |
b5ed14bef8365d551ec9e89af3da59ae
|
|
| BLAKE2b-256 |
cfedf3eeb98b1ac32dfd366913fbf43fcbad596287175b17a74831f60edc7c62
|
Provenance
The following attestation bundles were made for owrf1d-1.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish.yml on TovarnovM/owrf1d
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
owrf1d-1.0.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
132d7a0ef325305f5c58b417f15fab8eb05c726e556c978b3e7fa0a5ac6496c7 - Sigstore transparency entry: 821292671
- Sigstore integration time:
-
Permalink:
TovarnovM/owrf1d@cb733ba96f05bfa4b392da40171ad41077dd82c4 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/TovarnovM
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@cb733ba96f05bfa4b392da40171ad41077dd82c4 -
Trigger Event:
workflow_dispatch
-
Statement type: