Streaming statistics and grouped aggregations for large event streams
Project description
Cyqstats
Cyqstats es una librería para cálculo de métricas en streaming orientada a datasets grandes.
Estado actual (MVP)
Este repositorio ya incluye la base funcional para avanzar:
StreamStatspara agregaciones incrementales globales:count,sum,mean,min,max,var,std.
GroupedStreamStatspara agregaciones por grupo (int32recomendado en tu pipeline):add(group_ids, values),merge(...),to_dict(),result_arrays().
- Merge estable por fórmula de momentos (Welford combinable), ideal para procesar por chunks.
Quickstart
from random import Random
from cyqstats import StreamStats, GroupedStreamStats
rng = Random(42)
values = [rng.gauss(0, 1) for _ in range(100_000)]
# Global
s = StreamStats()
s.add_values(values)
print(s.result())
# Grouped
gids = [i % 50 for i in range(len(values))]
g = GroupedStreamStats(n_groups=50)
g.add(gids, values)
print(g.result_arrays()["mean"][:5])
Instalación local
pip install -U pip
pip install -e ".[dev]"
Tests
PYTHONPATH=src pytest -q
Próximos pasos recomendados
- Cythonizar el hot path (
add_valuesyadd) manteniendo esta API. - Agregar percentiles streaming (P² como primera implementación).
- Añadir benchmark CLI comparando contra
pandas.groupby. - Publicar wheels (
manylinux,macOS,Windows).
Licencia
MIT.
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 cyqstats-0.1.0.tar.gz.
File metadata
- Download URL: cyqstats-0.1.0.tar.gz
- Upload date:
- Size: 190.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b47ffb8a0c6c02d1e67f53c75f6430e7be411d1040ed9fd31768e678aa5b7a2e
|
|
| MD5 |
2b37d9363a7abdb0183bb7ccbacf2dc9
|
|
| BLAKE2b-256 |
11709e3fafa63fcc8bf9c86405acf8a160f6ee524ea860e34299db44b63878a1
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0.tar.gz:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0.tar.gz -
Subject digest:
b47ffb8a0c6c02d1e67f53c75f6430e7be411d1040ed9fd31768e678aa5b7a2e - Sigstore transparency entry: 953236559
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 295.4 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 |
808b8d258b618791fee08eeec0ac2ff75d85ad27c855d44a8b408b0e6162a18b
|
|
| MD5 |
0cbe6e9ddfbde2a1b9d107f336fce6b2
|
|
| BLAKE2b-256 |
fb2399a182974c2806b888e3409591889b924fc6e1f8dddbf24b1cd693a7ea23
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp314-cp314t-win_amd64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp314-cp314t-win_amd64.whl -
Subject digest:
808b8d258b618791fee08eeec0ac2ff75d85ad27c855d44a8b408b0e6162a18b - Sigstore transparency entry: 953236633
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp314-cp314t-win32.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp314-cp314t-win32.whl
- Upload date:
- Size: 277.2 kB
- Tags: CPython 3.14t, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a2bc8531327adc2ab7c37b74f45cdb8f72429e1f12c0195ce355c21d0fd23826
|
|
| MD5 |
74ade8f0ffe7e1787b8ed5f0a8d64c5a
|
|
| BLAKE2b-256 |
5402f77064077edd342e66b840ed5c3b5ddea3fd4f9aefe305133ea461760aa9
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp314-cp314t-win32.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp314-cp314t-win32.whl -
Subject digest:
a2bc8531327adc2ab7c37b74f45cdb8f72429e1f12c0195ce355c21d0fd23826 - Sigstore transparency entry: 953236630
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 779.4 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 |
0f25cb159289e9aee7d89977bf851533e33b34042a0cc1bf0d35a9fdb851f531
|
|
| MD5 |
b29f01538c51c8aa1231a385731e9020
|
|
| BLAKE2b-256 |
762400715bf46894eafa549402d28f68e5f2d4a972875bfc2b08d927167401d3
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
0f25cb159289e9aee7d89977bf851533e33b34042a0cc1bf0d35a9fdb851f531 - Sigstore transparency entry: 953236688
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 786.9 kB
- Tags: CPython 3.14t, 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 |
c57264a6ebe0579e090dccab3ef0987fde99e52eb5121f88cae79c4640d639c5
|
|
| MD5 |
fc132419272551e002c2a9067fb91f24
|
|
| BLAKE2b-256 |
1155c9c71b0d539688eb57eba67ce5e9bc77be2a676a40eaa80491c865d635d0
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
c57264a6ebe0579e090dccab3ef0987fde99e52eb5121f88cae79c4640d639c5 - Sigstore transparency entry: 953236645
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 293.8 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 |
9ecb9243aa7851fa38d7a3723fb47f80f813da6904251b5db780185b7cae1707
|
|
| MD5 |
de9d1611bdf05ddab0616fa5a9debb14
|
|
| BLAKE2b-256 |
55311bef7b47a2df05ab4cd9015e2a7d7f373d403d21db47f5b36aebb235b86d
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp314-cp314t-macosx_11_0_arm64.whl -
Subject digest:
9ecb9243aa7851fa38d7a3723fb47f80f813da6904251b5db780185b7cae1707 - Sigstore transparency entry: 953236577
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 278.6 kB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9292b83eb780c409e9f966e539ec6aae7b94d11614eedfdd67d65e2fae6b9eca
|
|
| MD5 |
c8f936224ae2a2debb3821f858cace51
|
|
| BLAKE2b-256 |
ddbaf1130769f340fe7b73a9abaae408d19f50c5bec9b68f61003da3d90831ac
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp314-cp314-win_amd64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp314-cp314-win_amd64.whl -
Subject digest:
9292b83eb780c409e9f966e539ec6aae7b94d11614eedfdd67d65e2fae6b9eca - Sigstore transparency entry: 953236576
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp314-cp314-win32.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp314-cp314-win32.whl
- Upload date:
- Size: 264.1 kB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a5fab08562908497fd175dd84245ef26216e246de19b77d0a14c8bba39f851a3
|
|
| MD5 |
c89a9b3024901efe246a14737c6be4cf
|
|
| BLAKE2b-256 |
93d389fce57effcd6044e971329bcb5050b5ebb1e9ae9e40e8db562215bc9c24
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp314-cp314-win32.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp314-cp314-win32.whl -
Subject digest:
a5fab08562908497fd175dd84245ef26216e246de19b77d0a14c8bba39f851a3 - Sigstore transparency entry: 953236667
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 792.8 kB
- Tags: CPython 3.14, 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 |
b93a836c7380fb8ad9b54ae041f7579725f4d25bbc4b319596d64e69f6de1dd8
|
|
| MD5 |
8f79876f0d4e1346327972f4988d9da0
|
|
| BLAKE2b-256 |
5cd5fcbeea63ef3724a7b68b95c1e336b9b51508e50cc08b2640d5a63f3777b5
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
b93a836c7380fb8ad9b54ae041f7579725f4d25bbc4b319596d64e69f6de1dd8 - Sigstore transparency entry: 953236568
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 792.0 kB
- Tags: CPython 3.14, 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 |
16fb75c0dd05eb06d1ec7450fdbadb6ea947740e7af9778d3898ac7ddbb725ff
|
|
| MD5 |
448ca1f0faece86af8d257be5159dce0
|
|
| BLAKE2b-256 |
972dbbe1524fca635b26f1b15a70367b9f0c7f1fa3bf6202520311e0f372e608
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
16fb75c0dd05eb06d1ec7450fdbadb6ea947740e7af9778d3898ac7ddbb725ff - Sigstore transparency entry: 953236694
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 288.1 kB
- Tags: CPython 3.14, 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 |
eaeb720aaed800d6b7b6fc95f35d4d5077f1ab61ddaf0410355ad9cd38c7474b
|
|
| MD5 |
26dcbf542d30bc22b6d313ee03184cb2
|
|
| BLAKE2b-256 |
7bbb22fc381fd841ade8915553ca3d27581e47c51be3fbe893b2b823ec77e896
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
eaeb720aaed800d6b7b6fc95f35d4d5077f1ab61ddaf0410355ad9cd38c7474b - Sigstore transparency entry: 953236615
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 274.4 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c169c97658205461d5ddc4fc8e00e3015916b66d56603e5b6c61815271a7d42
|
|
| MD5 |
a20c7dd452b0687d2af8c533d5450656
|
|
| BLAKE2b-256 |
b4d9211d53c95d2302bb529d157ffeddbe25f934d3bd6459ca52728d2623ab97
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp313-cp313-win_amd64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp313-cp313-win_amd64.whl -
Subject digest:
8c169c97658205461d5ddc4fc8e00e3015916b66d56603e5b6c61815271a7d42 - Sigstore transparency entry: 953236690
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp313-cp313-win32.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp313-cp313-win32.whl
- Upload date:
- Size: 260.3 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d7b61e0cfdbc00c57ea340dff1435382e5adbd4bcee2eefd88815d3f0d71519a
|
|
| MD5 |
5fbb4bb85728a2f8268571d2f2328c33
|
|
| BLAKE2b-256 |
ce0312cb225ac2a16b89da97e75276e56cf7fe0c8da9ff55400ecaa83a5af960
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp313-cp313-win32.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp313-cp313-win32.whl -
Subject digest:
d7b61e0cfdbc00c57ea340dff1435382e5adbd4bcee2eefd88815d3f0d71519a - Sigstore transparency entry: 953236640
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 794.0 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 |
2dd11d430019a794a9ad132ac816e6e26ba649be7986f209fca34f07042cfd61
|
|
| MD5 |
a89697b6b88cbfd423a7498efbd426f3
|
|
| BLAKE2b-256 |
80323d2f9aaa9e5a40599047ed149e81474ba3ae69d4555e2718ebe596241582
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
2dd11d430019a794a9ad132ac816e6e26ba649be7986f209fca34f07042cfd61 - Sigstore transparency entry: 953236587
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 791.6 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 |
5cd2216d723cf38b6f03c9fd817453007aa48a70a8d13610fc397dabc57e35ac
|
|
| MD5 |
c34646fef128d2a6280480ab162dbb88
|
|
| BLAKE2b-256 |
dc849d263cd3a33babd652bbff5de6f969374e08c5812d1daa9d2a781cbbdb9a
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
5cd2216d723cf38b6f03c9fd817453007aa48a70a8d13610fc397dabc57e35ac - Sigstore transparency entry: 953236680
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 284.4 kB
- Tags: CPython 3.13, 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 |
3e8a1155588d2c798a4b9223bb1c5208632357f8e5e81b67e9fc8112a69fe5f2
|
|
| MD5 |
4f01ea38ee46b8762d4a31bf5a0e92c3
|
|
| BLAKE2b-256 |
dc7bccd52d631c05a7a379fb95f9a3ba5e1a002af9012f110354326eadcef680
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
3e8a1155588d2c798a4b9223bb1c5208632357f8e5e81b67e9fc8112a69fe5f2 - Sigstore transparency entry: 953236684
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 272.3 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae9838cde1d938a36f968f3d7d3dc79b4feded1302f417821838a1d4dbeee91d
|
|
| MD5 |
a7266c74a81953d5a455f95d51b75b1c
|
|
| BLAKE2b-256 |
a7bb11fa4938c7dfe0adb21846a694abfbe0220cc0a5e512d37bae2493ddcf53
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp312-cp312-win_amd64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp312-cp312-win_amd64.whl -
Subject digest:
ae9838cde1d938a36f968f3d7d3dc79b4feded1302f417821838a1d4dbeee91d - Sigstore transparency entry: 953236624
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp312-cp312-win32.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp312-cp312-win32.whl
- Upload date:
- Size: 260.3 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f5439081e3675fc66f5be51e6825da3a8951394c4263a1aaa76ce918b2046049
|
|
| MD5 |
c25ccb268767958e16f30c435c5a9cbd
|
|
| BLAKE2b-256 |
917d8a2baf6d64265ccafcc91885aa4b1c5461b32d0af394b17fa825dbfe8b09
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp312-cp312-win32.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp312-cp312-win32.whl -
Subject digest:
f5439081e3675fc66f5be51e6825da3a8951394c4263a1aaa76ce918b2046049 - Sigstore transparency entry: 953236670
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 792.4 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 |
f64513b44cb3cc10710e19bfc6dbb6c3dc4606eb589f9c0459ef9f7333304b90
|
|
| MD5 |
d769e527a23ee1e08246bbbb54ff0095
|
|
| BLAKE2b-256 |
7a0f0402bb5b2c42b0a9c98ea70323da7e96375ad39f4376c3ca8735f4982ffa
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
f64513b44cb3cc10710e19bfc6dbb6c3dc4606eb589f9c0459ef9f7333304b90 - Sigstore transparency entry: 953236598
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 792.4 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 |
5697d9536f9f0ee605e606267aaca75286cc8907a563738f5ea4bc6f8fd82333
|
|
| MD5 |
adea8b8b648c28960bb01523e5383578
|
|
| BLAKE2b-256 |
8e9c241165b290f519582266a3c4138e97a2dec0eafc8759c240a05abe5e2a27
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
5697d9536f9f0ee605e606267aaca75286cc8907a563738f5ea4bc6f8fd82333 - Sigstore transparency entry: 953236592
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 284.9 kB
- Tags: CPython 3.12, 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 |
31f0cbb852c232d1e95dd9a91766e8b49a803267dd922da479d762b93ae82b04
|
|
| MD5 |
56ef8b1a9e1c109d49b9a2abab17cb6e
|
|
| BLAKE2b-256 |
da4f0cd351330a8babc9435b62f9c5b6ab24a267df515e14ac27c419cbdb21a3
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
31f0cbb852c232d1e95dd9a91766e8b49a803267dd922da479d762b93ae82b04 - Sigstore transparency entry: 953236661
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 273.5 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8864f9381f570259deaf909b8a3b7e924dfeb5fb5800f7f5dfc24c63f24006f8
|
|
| MD5 |
5be4866d93918f1693119f23188e52bf
|
|
| BLAKE2b-256 |
d8555f5470aa8b853ae067f576ac68eb315d150e0a478b5a70ddce1a449ddea7
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp311-cp311-win_amd64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp311-cp311-win_amd64.whl -
Subject digest:
8864f9381f570259deaf909b8a3b7e924dfeb5fb5800f7f5dfc24c63f24006f8 - Sigstore transparency entry: 953236584
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp311-cp311-win32.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp311-cp311-win32.whl
- Upload date:
- Size: 260.0 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
856c60e078acc7cfbef55ce47f124910657f3380aa6f16d14124ad8ff4b25856
|
|
| MD5 |
a6225e87f5e9fdb89a8a20d2e46bbdf6
|
|
| BLAKE2b-256 |
a44255a888a63f3c085f690fe51590bbcc1a790dfd39758c61ba22cfbe36f6e5
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp311-cp311-win32.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp311-cp311-win32.whl -
Subject digest:
856c60e078acc7cfbef55ce47f124910657f3380aa6f16d14124ad8ff4b25856 - Sigstore transparency entry: 953236643
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 799.4 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 |
f38673675e1002bff626730bc2bd5481c979edf302198813251e7cd4290102c6
|
|
| MD5 |
4dda4dd1781f4c2a8e94c30eaccc00ed
|
|
| BLAKE2b-256 |
667f57b6a8ba76597134b6a076f7a2b0185a8dd28187a2a1fd6c90cc329b6361
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
f38673675e1002bff626730bc2bd5481c979edf302198813251e7cd4290102c6 - Sigstore transparency entry: 953236604
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 793.4 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 |
36a957ac32c83ac8c860cbc44b376ed5d444d9e3b1d5bb503d1aca1dfb9be583
|
|
| MD5 |
f367818438f420c0f56efef5c40b6f6a
|
|
| BLAKE2b-256 |
c68ea4adb4a90ced3dcc3437019ce40cfa52092e670401701e9cc5b52d6409e4
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
36a957ac32c83ac8c860cbc44b376ed5d444d9e3b1d5bb503d1aca1dfb9be583 - Sigstore transparency entry: 953236654
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 284.5 kB
- Tags: CPython 3.11, 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 |
7743f1c66cc36400c7926ce720da9408e248cc997db0fe270c4849f71a92d328
|
|
| MD5 |
007fb530e558ce7c22346b671cf97ab0
|
|
| BLAKE2b-256 |
4da7868f8c317efb122865b1fc6258ac770779c0c492ea970cab9c83f9070122
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
7743f1c66cc36400c7926ce720da9408e248cc997db0fe270c4849f71a92d328 - Sigstore transparency entry: 953236599
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 273.9 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 |
76d90b0288ad27a847320b67bcfb7fa401e7846c11f61fa0b59bb1d7874d974b
|
|
| MD5 |
abc8f5b159dba1b5c602710e879cf368
|
|
| BLAKE2b-256 |
125b655b6d3f15ad26c7d104aa12d743ebaeaab70c95fc5e02499d24813058ca
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp310-cp310-win_amd64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp310-cp310-win_amd64.whl -
Subject digest:
76d90b0288ad27a847320b67bcfb7fa401e7846c11f61fa0b59bb1d7874d974b - Sigstore transparency entry: 953236638
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp310-cp310-win32.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp310-cp310-win32.whl
- Upload date:
- Size: 260.8 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5737c245f96f9289233ecf77d12efe048c95f30e82740f602f1e250384b642ff
|
|
| MD5 |
8990500da442ec83af7c3259a09fca50
|
|
| BLAKE2b-256 |
299710458f8c79a93b17bf0e6404cabf6aff334dd4101f26df3e09c17895b1ae
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp310-cp310-win32.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp310-cp310-win32.whl -
Subject digest:
5737c245f96f9289233ecf77d12efe048c95f30e82740f602f1e250384b642ff - Sigstore transparency entry: 953236648
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 767.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 |
5545ca4bfda2056dfd76b319950ebecc9d33e8f12b9a813ebdb28c07c330c156
|
|
| MD5 |
cb39a4492a22972cefa08cf85a4a831b
|
|
| BLAKE2b-256 |
9777d6e8ac6fae6f094ec7ef5695ebdb71c48ead54b50da9041a9c717197d59b
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
5545ca4bfda2056dfd76b319950ebecc9d33e8f12b9a813ebdb28c07c330c156 - Sigstore transparency entry: 953236566
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 761.7 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 |
d834ac89b51df56f35f7974efd3d1d852da02e3c65d5bc163f5ed57ebe8306e0
|
|
| MD5 |
7cbe64a5a835f462a3111e9a08b5f4f1
|
|
| BLAKE2b-256 |
4446955b091175dc93e5ff762001d56f6d2111e2892a25df830e60a100c3ed9f
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
d834ac89b51df56f35f7974efd3d1d852da02e3c65d5bc163f5ed57ebe8306e0 - Sigstore transparency entry: 953236608
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type:
File details
Details for the file cyqstats-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: cyqstats-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 284.9 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 |
5ab8574d68fbc55a4e6750e469909aac2524ba237b4d009ee7e49d3a0aa759b1
|
|
| MD5 |
93ed8ab67b35845e63fb1699b45e4bcb
|
|
| BLAKE2b-256 |
2d83b1ec14027ff61731d72b1dc737ad0af2518a471883ef253cd9a36390b938
|
Provenance
The following attestation bundles were made for cyqstats-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
publish-main.yml on totoathos/cyqstats
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyqstats-0.1.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
5ab8574d68fbc55a4e6750e469909aac2524ba237b4d009ee7e49d3a0aa759b1 - Sigstore transparency entry: 953236699
- Sigstore integration time:
-
Permalink:
totoathos/cyqstats@336135198cab0f9d979f33a935c38ab08ea6f68d -
Branch / Tag:
refs/tags/v0.1.1 - Owner: https://github.com/totoathos
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-main.yml@336135198cab0f9d979f33a935c38ab08ea6f68d -
Trigger Event:
release
-
Statement type: