Python implementation of the active-finite-Voronoi (AFV) model
Project description
PyAFV
Python code that implements the active-finite-Voronoi (AFV) model in 2D. The AFV framework was introduced and developed in, for example, Refs. [1–3].
Installation
PyAFV is available on PyPI and can be installed using pip directly:
pip install pyafv
The package supports Python ≥ 3.10 and < 3.15, including Python 3.14t (the free-threaded, no-GIL build). To verify that the installation was successful and that the correct version is installed, run the following in Python:
import pyafv
print(pyafv.__version__)
On HPC clusters, global Python path can contaminate the runtime environment. You may need to clear it explicitly using
unset PYTHONPATHor prefixing the pip command withPYTHONPATH="".
Install from source
Installing from source can be necessary if pip installation does not work. First, download and unzip the source code, then navigate to the root directory of the package and run:
pip install .
Note: A C/C++ compiler is required if you are building from source, since some components of PyAFV are implemented in Cython for performance optimization.
Windows MinGW GCC
If you are using MinGW GCC (rather than MSVC) on Windows, to build from the source code, add a setup.cfg at the repository root before running pip install . with the following content:
# setup.cfg
[build_ext]
compiler=mingw32
Install offline
If you need to install PyAFV on a machine without internet access, you can download the corresponding wheel file from PyPI and transfer it to the target machine, and then run the following command to install using pip:
pip install pyafv-<version>-<platform>.whl
Alternatively, you can build PyAFV from source as described in the previous section. In this case, in addition to the required prerequisites of the package, the build-time dependencies hatchling and hatch-cython must also be available.
Usage
Here is a simple example to get you started, demonstrating how to construct a finite-Voronoi diagram:
import numpy as np
import pyafv as afv
N = 100 # number of cells
pts = np.random.rand(N, 2) * 10 # initial positions
params = afv.PhysicalParams() # use default parameter values
sim = afv.FiniteVoronoiSimulator(pts, params) # initialize the simulator
sim.plot_2d(show=True) # visualize the Voronoi diagram
To compute the conservative forces and extract detailed geometric information (e.g., cell areas, vertices, and edges), call:
diag = sim.build()
The returned object diag is a Python dict containing these quantities.
Simulation previews
Below are representative simulation snapshots generated using the code:
| Model illustration | Periodic boundary conditions |
|---|---|
| Initial configuration | After relaxation | Active dynamics enabled |
|---|---|---|
More information
-
Full documentation on readthedocs or as a single PDF file.
-
See CONTRIBUTING.md or the documentation for local development instructions.
-
See some important issues for additional context, such as:
- QhullError when 3+ points are collinear #1 [Closed - see comments]
- Add customized plotting to examples illustrating access to vertices and edges #5 [Completed in PR #7]
- Time step dependence of intercellular adhesion in simulations #8 [Closed in PR #9]
-
Some releases of this repository are cross-listed on Zenodo:
References
| [1] | J. Huang, H. Levine, and D. Bi, Bridging the gap between collective motility and epithelial-mesenchymal transitions through the active finite Voronoi model, Soft Matter 19, 9389 (2023). |
| [2] | E. Teomy, D. A. Kessler, and H. Levine, Confluent and nonconfluent phases in a model of cell tissue, Phys. Rev. E 98, 042418 (2018). |
| [3] | W. Wang (汪巍) and B. A. Camley, Divergence of detachment forces in the finite-Voronoi model, manuscript in preparation (2026). |
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 pyafv-0.4.0.tar.gz.
File metadata
- Download URL: pyafv-0.4.0.tar.gz
- Upload date:
- Size: 50.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 |
3ff3367ec133ee5710613c3510fb40e0d5b9099d9328affbdbb4262700589101
|
|
| MD5 |
3105cfe78c4efa20b0d1221384e7b950
|
|
| BLAKE2b-256 |
d1b0a6cffa444c5f9935cbcaa9f6810cd88e578e35697c87c24f00134f0d6261
|
Provenance
The following attestation bundles were made for pyafv-0.4.0.tar.gz:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0.tar.gz -
Subject digest:
3ff3367ec133ee5710613c3510fb40e0d5b9099d9328affbdbb4262700589101 - Sigstore transparency entry: 833497630
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp314-cp314t-win_arm64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp314-cp314t-win_arm64.whl
- Upload date:
- Size: 515.1 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 |
723d30df28efe2b8e2e8e68dc85d5fa27c3e889f285ecbf713f1192b66e1eae8
|
|
| MD5 |
2753da1801dd90d39f8f1716d40d3411
|
|
| BLAKE2b-256 |
21e5241854746192fdc38d9d43b3d184b295c433c7fd6336d996c22c34da9a37
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp314-cp314t-win_arm64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp314-cp314t-win_arm64.whl -
Subject digest:
723d30df28efe2b8e2e8e68dc85d5fa27c3e889f285ecbf713f1192b66e1eae8 - Sigstore transparency entry: 833497668
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 1.1 MB
- 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 |
40414ad3cd04b6e23bb57a1910fda66b101cc530beaa895dadb9ca2335c97316
|
|
| MD5 |
da71fa63d17c054cf832d582ad0dc7af
|
|
| BLAKE2b-256 |
b79a848515f0c373e2dbb1d8d01e8e91c6279758ba539365ceea6c68b825d9b7
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp314-cp314t-win_amd64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp314-cp314t-win_amd64.whl -
Subject digest:
40414ad3cd04b6e23bb57a1910fda66b101cc530beaa895dadb9ca2335c97316 - Sigstore transparency entry: 833497749
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp314-cp314t-win32.whl.
File metadata
- Download URL: pyafv-0.4.0-cp314-cp314t-win32.whl
- Upload date:
- Size: 891.8 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 |
eda3c64a831e43319d319fc596ff5286be70b92a33942dbfade79975e7a85ae8
|
|
| MD5 |
91bfac12cfcb7b184877e3cb64bc820a
|
|
| BLAKE2b-256 |
60a5af1ece2616495a94382c273451e634f2aea2dac5c751506a24917004aff3
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp314-cp314t-win32.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp314-cp314t-win32.whl -
Subject digest:
eda3c64a831e43319d319fc596ff5286be70b92a33942dbfade79975e7a85ae8 - Sigstore transparency entry: 833497661
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.7 MB
- 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 |
58e03a81ed3858541d607a43d7035234b24412f87d4c7d4d517be6550e995c9a
|
|
| MD5 |
1e00f57dc9451ef3066d604e3a5c0eaf
|
|
| BLAKE2b-256 |
8c895a2bce2b502d76d54223dc3d080839851511589a42918198d83cad3b12fb
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl -
Subject digest:
58e03a81ed3858541d607a43d7035234b24412f87d4c7d4d517be6550e995c9a - Sigstore transparency entry: 833497653
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.6 MB
- 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 |
317da76b4c0af088a81b1b18a9308d0c8888380a05a483f5305b4188cf2fbca9
|
|
| MD5 |
710ccab6216030426c7f13b5a1a3995a
|
|
| BLAKE2b-256 |
c16bff23e8fb59219c329999b15771821afd405a76919c2cc9c473b73361b925
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl -
Subject digest:
317da76b4c0af088a81b1b18a9308d0c8888380a05a483f5305b4188cf2fbca9 - Sigstore transparency entry: 833497670
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.7 MB
- 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 |
742941225f5dc59483daaa2e978b3d82faaf5abb15b9607efa7a91f8500e16e7
|
|
| MD5 |
8e663b28f682c6bb850bce8a7be1c201
|
|
| BLAKE2b-256 |
9a74bb1c19e0a77d07ec6a8c688ebbba3c02ae3680455fcd65207c8506af7f80
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
742941225f5dc59483daaa2e978b3d82faaf5abb15b9607efa7a91f8500e16e7 - Sigstore transparency entry: 833497727
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.7 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64, 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 |
207c4d488f5cba1cf144724e4a388887c37363144f406ba0dcc76b11560449ab
|
|
| MD5 |
562cf4409d575e76bb555605fc8fa85e
|
|
| BLAKE2b-256 |
c7ae7fa25af3ab36fdc9ac5e8ec0eb680e8e5b6d7e3998357baaaabca78ca156
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
207c4d488f5cba1cf144724e4a388887c37363144f406ba0dcc76b11560449ab - Sigstore transparency entry: 833497635
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 670.7 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 |
8c5c89668123a7a084f2ed6c4a462abe79e6a217aec3948a3bd7d9e9a345a93f
|
|
| MD5 |
47461a0b16d00803614395b059412fa9
|
|
| BLAKE2b-256 |
c49fa9a54b4220cbc011bb8d89ba1f656d4092b6646b0cdec67a70b302484992
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl -
Subject digest:
8c5c89668123a7a084f2ed6c4a462abe79e6a217aec3948a3bd7d9e9a345a93f - Sigstore transparency entry: 833497637
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl
- Upload date:
- Size: 690.2 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 |
a832582280f433af2f2dad88b4fd68d3ccfd5c0a7b28f112b6e36f4db225c601
|
|
| MD5 |
a1220d4125d7a64c5a72a91ed48b250f
|
|
| BLAKE2b-256 |
80c67795eb10a9507e09f05b37be0fd0706b332949c6e7d7aa8c6ce7220191a1
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl -
Subject digest:
a832582280f433af2f2dad88b4fd68d3ccfd5c0a7b28f112b6e36f4db225c601 - Sigstore transparency entry: 833497716
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 428.8 kB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5877bda4258d206f0ee6c2a063c7a193264fd53a1234a8575b14d0e37b941427
|
|
| MD5 |
bf2f3315d30debf3c309031357e766d7
|
|
| BLAKE2b-256 |
99ac638d0bdb448926bf09c9db2f3770a5e37de4467c489c71b790265536a24d
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp314-cp314-win_arm64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp314-cp314-win_arm64.whl -
Subject digest:
5877bda4258d206f0ee6c2a063c7a193264fd53a1234a8575b14d0e37b941427 - Sigstore transparency entry: 833497659
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 984.4 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 |
653b3f2afdbc1b4b6def8f280377138e3707d99dfe16baef79193f40aebe46f8
|
|
| MD5 |
5240fb1afb74c2f523b7cc505522a9e0
|
|
| BLAKE2b-256 |
a9e983c7bc148c99617ba833ef6cb4b5b27ecd30a6b6da5d38ccd0f4d48801f3
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp314-cp314-win_amd64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp314-cp314-win_amd64.whl -
Subject digest:
653b3f2afdbc1b4b6def8f280377138e3707d99dfe16baef79193f40aebe46f8 - Sigstore transparency entry: 833497674
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp314-cp314-win32.whl.
File metadata
- Download URL: pyafv-0.4.0-cp314-cp314-win32.whl
- Upload date:
- Size: 800.9 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 |
c9f47d9bc7e8a8207240cf25e16d02cbee143280607b0e1e2332a352a96525f2
|
|
| MD5 |
2533fb9583a1c74f93229fd410e4c7d0
|
|
| BLAKE2b-256 |
53c27835eb9e9b535d49cded5211ff7f1256c6286ae212b8a35c56694ecacaa3
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp314-cp314-win32.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp314-cp314-win32.whl -
Subject digest:
c9f47d9bc7e8a8207240cf25e16d02cbee143280607b0e1e2332a352a96525f2 - Sigstore transparency entry: 833497656
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.1 MB
- 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 |
318c672ca2c4fd562ae6886cdd6e4685e8d98133c66137d9d1e7d75f08f9a32f
|
|
| MD5 |
eff06c1745ab04fb057e9fbffac0ed96
|
|
| BLAKE2b-256 |
9cea47538710cfd27536e788d2bb0e1ca59a882c96671715113b1012883106d7
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
318c672ca2c4fd562ae6886cdd6e4685e8d98133c66137d9d1e7d75f08f9a32f - Sigstore transparency entry: 833497722
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.14, 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 |
16a140071bfaaeee64bdf86c95ef7a936ee7aaa4059107b91ef5ebe16e94fe19
|
|
| MD5 |
e56e90f7c8ef7d5b4487a9013bbad1b1
|
|
| BLAKE2b-256 |
98b8fd96e8dc901bdc5fc32c332c3d33784924eb4aa4e372cbda5b2e0fd14e26
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
16a140071bfaaeee64bdf86c95ef7a936ee7aaa4059107b91ef5ebe16e94fe19 - Sigstore transparency entry: 833497710
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 3.1 MB
- 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 |
87a9d81151679c75136e44728a1908c578a335e1e4e5b230dcea743b60923c0f
|
|
| MD5 |
ba43e1357849b824084012fd334076aa
|
|
| BLAKE2b-256 |
69dcdaa6b3c73c4a678eb28f54a560c2417cc28485863f851f3fbeda49b3dccc
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
87a9d81151679c75136e44728a1908c578a335e1e4e5b230dcea743b60923c0f - Sigstore transparency entry: 833497688
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, 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 |
ef2fbd036c2970f4acc9cf8d9ee6343abd1c18ce692450e9bcd39ce37b97fe99
|
|
| MD5 |
d31a91c74bdf6b763c52a3bbb4e4e86a
|
|
| BLAKE2b-256 |
bb3294ca01821510e311f57208aedd6afc93c277da5dd6b5089e76e2248ffc4e
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
ef2fbd036c2970f4acc9cf8d9ee6343abd1c18ce692450e9bcd39ce37b97fe99 - Sigstore transparency entry: 833497700
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 558.8 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 |
4d5a54e7a9c3ef34813527d62aac7386bc4946b4b8c6bc4d964917006b37a821
|
|
| MD5 |
f0381d16f9f86c6644096181dfbfd54e
|
|
| BLAKE2b-256 |
c52e0c88863af74410d7eaf9af64def7087ba43c4e28dffedd3f43a80c0c756f
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
4d5a54e7a9c3ef34813527d62aac7386bc4946b4b8c6bc4d964917006b37a821 - Sigstore transparency entry: 833497652
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 575.2 kB
- Tags: CPython 3.14, 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 |
31769fb6a7929c450d4a641451a208c38506ef1c370fe825dd396996b103b39c
|
|
| MD5 |
ef8d347cec414e5248436b2189933db3
|
|
| BLAKE2b-256 |
db80c2f43701682ba4094715f50518e07eb331ca37f93e83d6239f33d9acf00d
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp314-cp314-macosx_10_15_x86_64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp314-cp314-macosx_10_15_x86_64.whl -
Subject digest:
31769fb6a7929c450d4a641451a208c38506ef1c370fe825dd396996b103b39c - Sigstore transparency entry: 833497736
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 340.6 kB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b2685cc6a3a7a63ad62fac0d6c179bfbf442ff2fd6869acfef910424fafa07c
|
|
| MD5 |
75df2a601a26fe518947ff922a9cfd0b
|
|
| BLAKE2b-256 |
52188cb646602d9f7fa281dc33366f735c4013ee2b8da9d5483b2f2405e46f86
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp313-cp313-win_arm64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp313-cp313-win_arm64.whl -
Subject digest:
5b2685cc6a3a7a63ad62fac0d6c179bfbf442ff2fd6869acfef910424fafa07c - Sigstore transparency entry: 833497703
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 701.9 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 |
6e6965a8562487bddb0013a6c35c609d72b216982a34fbb9e6d394d9affeb845
|
|
| MD5 |
8c956b1459c0f8ad775f72f03c10926d
|
|
| BLAKE2b-256 |
154007f12b2e5da5fa41b3a8e5dad5b39b7a72c9cc2d7fe27f22be023702f885
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp313-cp313-win_amd64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp313-cp313-win_amd64.whl -
Subject digest:
6e6965a8562487bddb0013a6c35c609d72b216982a34fbb9e6d394d9affeb845 - Sigstore transparency entry: 833497704
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp313-cp313-win32.whl.
File metadata
- Download URL: pyafv-0.4.0-cp313-cp313-win32.whl
- Upload date:
- Size: 612.0 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 |
1ef4f36ab9c9dd6251c10c8cbfc1acc4c2877ccc981f0a6fde6a9bd936111f22
|
|
| MD5 |
57f0eecbc91f736479e8d79969739b88
|
|
| BLAKE2b-256 |
49632c52e14fd419f850be0f4eda75c2f42990622fd0a8bd27db9718255dd181
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp313-cp313-win32.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp313-cp313-win32.whl -
Subject digest:
1ef4f36ab9c9dd6251c10c8cbfc1acc4c2877ccc981f0a6fde6a9bd936111f22 - Sigstore transparency entry: 833497631
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 2.5 MB
- 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 |
0aa73499c66fa70ff686828c88ff3579a7bef45e073526229bf7d39fc6af3b32
|
|
| MD5 |
168f7bf36fd498777d5015df0bd92b9c
|
|
| BLAKE2b-256 |
d87fd5bc8b24687bbe8ae1a8f20d0e8392d2dcf7c2809ec46d6b7d7ceca20bcf
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
0aa73499c66fa70ff686828c88ff3579a7bef45e073526229bf7d39fc6af3b32 - Sigstore transparency entry: 833497696
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.13, 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 |
027a09695706553fdf5037048134b116c36e25871b07aeb3ce60a7de1f2934ac
|
|
| MD5 |
6b1789789a26791c51a773d2a400a078
|
|
| BLAKE2b-256 |
928b25df6a669ced8b194181abb090aa318609ec9058a1b4919046af00ab737a
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
027a09695706553fdf5037048134b116c36e25871b07aeb3ce60a7de1f2934ac - Sigstore transparency entry: 833497692
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 2.5 MB
- 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 |
12726780a684c26c30946a6d02b9f5f8f3fa5afc326f5c25efc5ac6a70d9c0f2
|
|
| MD5 |
78767805c5abc1d2a9a1db3792590fd8
|
|
| BLAKE2b-256 |
4ab56c9bccb5b925a9cba0b33de98d3f4aebc5f17de468722e25d888c68cb2ab
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
12726780a684c26c30946a6d02b9f5f8f3fa5afc326f5c25efc5ac6a70d9c0f2 - Sigstore transparency entry: 833497649
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 2.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, 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 |
bb4abbfeb3cb37039bf6fa4de4e71220fcf3bbd04768a0a0cafc16acd37bbeb4
|
|
| MD5 |
bfe237797f506f76eb053d37f1906663
|
|
| BLAKE2b-256 |
7e0523e38774bd30bbf7a48ab8609e08d28f8a5e4d5858dfce5231c14e93135c
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
bb4abbfeb3cb37039bf6fa4de4e71220fcf3bbd04768a0a0cafc16acd37bbeb4 - Sigstore transparency entry: 833497701
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 453.3 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 |
103f3ced91efdea6f59b07cffbe29754ce214448ffc79aa7ec043e5457ff2a27
|
|
| MD5 |
5f72e0a51c24fa7542f29ad6e3315a16
|
|
| BLAKE2b-256 |
ae75ff033f8e0d6a7409cd4ed43fa60b39a0beb8b427aa62ef93a497799cb646
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
103f3ced91efdea6f59b07cffbe29754ce214448ffc79aa7ec043e5457ff2a27 - Sigstore transparency entry: 833497697
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 466.8 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42b86a9971b524ccbb214c4794a944c8c6d0a0ae03b85b1694eef629b986919d
|
|
| MD5 |
265625c21565080f0815770783a2af41
|
|
| BLAKE2b-256 |
59246e5b03b2089c09ff3e9a31daac2fcdbfe83bbb0d34a767e4212a569e0a24
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
42b86a9971b524ccbb214c4794a944c8c6d0a0ae03b85b1694eef629b986919d - Sigstore transparency entry: 833497698
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 264.0 kB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5cc7060c267174730fd0f43c463c6e817835560d098451d248a5c5c6b583af01
|
|
| MD5 |
a7f6ff572ba627b2740d768ccf17a3a4
|
|
| BLAKE2b-256 |
19d7271a309a0518fa954952cc16f4fb017548648b71b728882955f2f72779b3
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp312-cp312-win_arm64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp312-cp312-win_arm64.whl -
Subject digest:
5cc7060c267174730fd0f43c463c6e817835560d098451d248a5c5c6b583af01 - Sigstore transparency entry: 833497694
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 536.2 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 |
a94b407222fb90cfd0416881dff22fca645128014f55616df0d7139d703d5dd5
|
|
| MD5 |
3001dcb8b6a230bd08f8b755af843116
|
|
| BLAKE2b-256 |
a604814a5aa5ca1996eb245402c19c5581edc132d585e57fee56e0cfb5bc61f4
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp312-cp312-win_amd64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp312-cp312-win_amd64.whl -
Subject digest:
a94b407222fb90cfd0416881dff22fca645128014f55616df0d7139d703d5dd5 - Sigstore transparency entry: 833497643
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp312-cp312-win32.whl.
File metadata
- Download URL: pyafv-0.4.0-cp312-cp312-win32.whl
- Upload date:
- Size: 446.1 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 |
25ea5b1645dfbd4a767ebdd0e82a79ee59d5ea65a2af008618ea15e75f00edd3
|
|
| MD5 |
0c05bfe476cad9255a935f501c71a278
|
|
| BLAKE2b-256 |
bb9b729c3c95a2f3e5a1827f541c5772990cd72538d45a7922d5dd6a436101fd
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp312-cp312-win32.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp312-cp312-win32.whl -
Subject digest:
25ea5b1645dfbd4a767ebdd0e82a79ee59d5ea65a2af008618ea15e75f00edd3 - Sigstore transparency entry: 833497728
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.8 MB
- 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 |
60bf18fb39ef0f884517f42c7f69ecfe03a312cfa6f0861baa5af6c7147ef84b
|
|
| MD5 |
3f995a301c8eb6377571e99701cafeab
|
|
| BLAKE2b-256 |
48f798af851ef4c08d0d619b198ab3379c44be54a65e8fb55184a8171ae491d3
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
60bf18fb39ef0f884517f42c7f69ecfe03a312cfa6f0861baa5af6c7147ef84b - Sigstore transparency entry: 833497734
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, 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 |
ac420419ee96e8709bdc48216b6620d6956b574403a0d677592fffff84cdf5af
|
|
| MD5 |
08756076eb276c72d4cdc9971849096c
|
|
| BLAKE2b-256 |
3c82dc7ffa47325afde86919fb7683b9f8d1feefb89f21c3114e525d8a9314cb
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
ac420419ee96e8709bdc48216b6620d6956b574403a0d677592fffff84cdf5af - Sigstore transparency entry: 833497740
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.8 MB
- 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 |
fd1f1d5c13853de9e81a2d101f508665e2dc0df1ec2526b705ca6bb9e900749b
|
|
| MD5 |
7e4610b0c327bde35e0856e6c96af474
|
|
| BLAKE2b-256 |
9cbc2852f6239bb091760ea0917bf7e2c1d114d27d7f0c564b37ef1b2d5f052b
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
fd1f1d5c13853de9e81a2d101f508665e2dc0df1ec2526b705ca6bb9e900749b - Sigstore transparency entry: 833497712
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, 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 |
3113e773cb0b9bf401a998bd84db7f7c9f8bc057846b21e456ede7cc4382c7af
|
|
| MD5 |
997b93ab6be97711c37c33c703d53ca6
|
|
| BLAKE2b-256 |
4537b61fdab6963395937d9fd17cdcec8025ca944fc24051a210f9fabe380cc0
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
3113e773cb0b9bf401a998bd84db7f7c9f8bc057846b21e456ede7cc4382c7af - Sigstore transparency entry: 833497731
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 348.7 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 |
9efb1c33d42f7a802c265b49c8abdf4e8bf17f7181ba98b378dcd17ca758a51f
|
|
| MD5 |
de0df25073f4e73c93f4e2e1dca36ad1
|
|
| BLAKE2b-256 |
9348bd142ac0c253f8a4c9b1a2f444fcfc6c008232ae5141546cffce2111dd6c
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
9efb1c33d42f7a802c265b49c8abdf4e8bf17f7181ba98b378dcd17ca758a51f - Sigstore transparency entry: 833497650
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 358.8 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fbeed67478f8a9d2bfba07b75b0ca308880d745aa93c32c0cc83cbb8827eb650
|
|
| MD5 |
9a0221f8f9de9abdd17b38a7aa200688
|
|
| BLAKE2b-256 |
1470f9409ec49facc6c2e98422dc880004a0f0d756ff740c3ed30dae23653c1b
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
fbeed67478f8a9d2bfba07b75b0ca308880d745aa93c32c0cc83cbb8827eb650 - Sigstore transparency entry: 833497676
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 187.3 kB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f27390923343c20f3cc32846a60a94b702089a5b6124d5bb369fb3107994315
|
|
| MD5 |
d832183e6778ea6eb7d920a728568773
|
|
| BLAKE2b-256 |
128d1ce46314dc2deb33a43928d378a1a6b26dbd69ccd3fb463f2512b8161679
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp311-cp311-win_arm64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp311-cp311-win_arm64.whl -
Subject digest:
0f27390923343c20f3cc32846a60a94b702089a5b6124d5bb369fb3107994315 - Sigstore transparency entry: 833497724
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 370.0 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 |
0088187e69183cb171825d78fd36562ad445ebccf0d4a38a8dc1a5783c93c379
|
|
| MD5 |
abf66d3590ee721f14f27d626f570afb
|
|
| BLAKE2b-256 |
64d89afa4b13721eb5710847b594525489e7a3156c339afd18b5e218b50b52ce
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp311-cp311-win_amd64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp311-cp311-win_amd64.whl -
Subject digest:
0088187e69183cb171825d78fd36562ad445ebccf0d4a38a8dc1a5783c93c379 - Sigstore transparency entry: 833497645
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp311-cp311-win32.whl.
File metadata
- Download URL: pyafv-0.4.0-cp311-cp311-win32.whl
- Upload date:
- Size: 278.3 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 |
6c155f02c243b29901a101eaef32a022a88d06b0216bf574823bd0b92d12daff
|
|
| MD5 |
3f0778d4b9b23045f24427349b1e17a8
|
|
| BLAKE2b-256 |
f903f2018d2f4b489b84444e5e963b15120c9489dc576b2742e03e2e5ae541fe
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp311-cp311-win32.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp311-cp311-win32.whl -
Subject digest:
6c155f02c243b29901a101eaef32a022a88d06b0216bf574823bd0b92d12daff - Sigstore transparency entry: 833497690
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- 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 |
25dab76936d808d8acc47d116adc35b82816fed951d2fad46856d4cf5fadd03c
|
|
| MD5 |
18f73a418a03145fd5d5c60e40c6c252
|
|
| BLAKE2b-256 |
39f99f74d47e52dc1b0b2a9ca3fcfbecae6e52ed109e7e885a8d0b551f35961a
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
25dab76936d808d8acc47d116adc35b82816fed951d2fad46856d4cf5fadd03c - Sigstore transparency entry: 833497747
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, 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 |
7ff6bd2cad1efdb32e515c043a678154be5aa01342cba058df184d32a2071127
|
|
| MD5 |
05de96f99ab4a8befa20084f5f8f75a2
|
|
| BLAKE2b-256 |
f1e1f2b1120b857ca9428168f01471b3bdc6293fe5cf294116c9169f142d14ac
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
7ff6bd2cad1efdb32e515c043a678154be5aa01342cba058df184d32a2071127 - Sigstore transparency entry: 833497682
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 1.2 MB
- 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 |
6f75ff7e935febe39e7d02854e43328c60848a4039852f2d3005c01c7a0a9918
|
|
| MD5 |
64995b981d67a01a83e4071cf8990578
|
|
| BLAKE2b-256 |
8289b58922f8de9e805e1999a3c5a87c400ae7896b8992e2978e655ea5e010dc
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
6f75ff7e935febe39e7d02854e43328c60848a4039852f2d3005c01c7a0a9918 - Sigstore transparency entry: 833497685
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, 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 |
b73ef3f34d6a75e6300124adfb793991fefdec6a864cbe1035a67e01b6178b7f
|
|
| MD5 |
79a8aa4eca34290bc05aa9cead67e595
|
|
| BLAKE2b-256 |
7afe61ffd7dcd812af7ca91d26e88f98355aae2a571e57919a4835963e749f1d
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
b73ef3f34d6a75e6300124adfb793991fefdec6a864cbe1035a67e01b6178b7f - Sigstore transparency entry: 833497693
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 243.7 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 |
d598403df8bd1ae093ab5ac7822db5239b7f2842771d002cac7f2cf84a271446
|
|
| MD5 |
c273bfd9fb072f711344f20a69d17278
|
|
| BLAKE2b-256 |
b6ab65c8ef7766304c1dbe88a69a37bc276373ec4f2fc847905b779a71738eb9
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
d598403df8bd1ae093ab5ac7822db5239b7f2842771d002cac7f2cf84a271446 - Sigstore transparency entry: 833497746
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 250.4 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
af6b00499bb9a137a4c21d70e5e822f0a8e6fbbb9cfd082789360b5cd9a921e8
|
|
| MD5 |
8a3272ea86287afa732fce0639ef13d2
|
|
| BLAKE2b-256 |
a39875f8dae8d1a130b01be9571f052db73dfe590c691170373493b0ccd76eba
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
af6b00499bb9a137a4c21d70e5e822f0a8e6fbbb9cfd082789360b5cd9a921e8 - Sigstore transparency entry: 833497640
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp310-cp310-win_arm64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp310-cp310-win_arm64.whl
- Upload date:
- Size: 109.0 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 |
46f67817d50f7f478205d8495f52febd98bf64a736769d4e7a56eb30b43f4c51
|
|
| MD5 |
319688f248e03003fb7e0443eb01df31
|
|
| BLAKE2b-256 |
c2b5817850ece6956c9371a2d63d14390e6d95d3f4a969e7e6e7ffb42b541b87
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp310-cp310-win_arm64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp310-cp310-win_arm64.whl -
Subject digest:
46f67817d50f7f478205d8495f52febd98bf64a736769d4e7a56eb30b43f4c51 - Sigstore transparency entry: 833497742
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 200.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 |
0a96e84e6ca55244b0125158f085b5426cf6ac05bd4c219c660d327d5d374780
|
|
| MD5 |
f82434fb51aa3e279c119a618708dd9e
|
|
| BLAKE2b-256 |
0489b5abc785fc5b688f8462e238087e02503555a50ec47deaafd3f23ba5ec90
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp310-cp310-win_amd64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp310-cp310-win_amd64.whl -
Subject digest:
0a96e84e6ca55244b0125158f085b5426cf6ac05bd4c219c660d327d5d374780 - Sigstore transparency entry: 833497667
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp310-cp310-win32.whl.
File metadata
- Download URL: pyafv-0.4.0-cp310-cp310-win32.whl
- Upload date:
- Size: 108.5 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 |
1d0c9cca1330c7bf9b6f27e07cf51e8e44a2afb95f29a0fbc7ed065c624bc1ed
|
|
| MD5 |
d6d778b788bd0085033c8f7010177c84
|
|
| BLAKE2b-256 |
275bf100e0910be316b2bb184e9d13f47394dee77f70442bfa864311f6fbcac1
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp310-cp310-win32.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp310-cp310-win32.whl -
Subject digest:
1d0c9cca1330c7bf9b6f27e07cf51e8e44a2afb95f29a0fbc7ed065c624bc1ed - Sigstore transparency entry: 833497633
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 602.7 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 |
a54dca9a7f98d573788b1032d7e7758e3d9d6a97a642f3342a56ca9269fa7fb0
|
|
| MD5 |
0c21fc48def5b3457ca270572c1702e5
|
|
| BLAKE2b-256 |
e3ae5fd81756b2e550d8b5387874423125a97a97e9906983d9a4bf0d292cdec4
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
a54dca9a7f98d573788b1032d7e7758e3d9d6a97a642f3342a56ca9269fa7fb0 - Sigstore transparency entry: 833497708
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 585.6 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 |
07684c0460a9f14859cfafc2a829d8f02041585a4b88d37713e11cd7be29cd67
|
|
| MD5 |
8ec6c896bd1a7058eece31a6b71abfac
|
|
| BLAKE2b-256 |
920fe942fb42889b2f2e5c315aec1da3fef52ea056128b66ae3c329c16167ca6
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
07684c0460a9f14859cfafc2a829d8f02041585a4b88d37713e11cd7be29cd67 - Sigstore transparency entry: 833497679
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 605.3 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 |
f9ebc9df96a11278a90ce8a08b930ae7027940abb5d1f3c8a76671c7e645b49d
|
|
| MD5 |
8c2b96a00ef2f0db77195f1b826bb296
|
|
| BLAKE2b-256 |
cd40e096095f19335353e69283763f18531855d68377fff000328353eaf4283d
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
f9ebc9df96a11278a90ce8a08b930ae7027940abb5d1f3c8a76671c7e645b49d - Sigstore transparency entry: 833497719
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 596.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, 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 |
cfb33e6a9f55a69e212fe88f2447690c8199ab245bb54d01e80042e362bfee20
|
|
| MD5 |
3b726eb61e45dd20dbcb94113b772240
|
|
| BLAKE2b-256 |
c9ce905d0f93a072909ac0c6a2029fa2a38440f2bee551e31d7378beaa72d2b2
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
cfb33e6a9f55a69e212fe88f2447690c8199ab245bb54d01e80042e362bfee20 - Sigstore transparency entry: 833497733
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 137.8 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 |
df320284321962c881029453c045f8145a2dcc16693c36e48dadb3143bb5d18c
|
|
| MD5 |
eb86f64315c3bcf575fc119607cabcd6
|
|
| BLAKE2b-256 |
3f871ecf17219d13776b715a4330bdaf99c22f439575328ca941c5f33d2b3589
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
df320284321962c881029453c045f8145a2dcc16693c36e48dadb3143bb5d18c - Sigstore transparency entry: 833497717
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type:
File details
Details for the file pyafv-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: pyafv-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 141.4 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed0a3e513eef0720dbac02b1f39df07f4200b235169c0290904f5cfc5523806c
|
|
| MD5 |
41a277d8a7697c014a3ea21a8c0d4d67
|
|
| BLAKE2b-256 |
189e380f0ae82e603a7579932f235177f326a8534e998d7466059bba0f402c8f
|
Provenance
The following attestation bundles were made for pyafv-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl:
Publisher:
publish-to-pypi.yml on wwang721/pyafv
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
pyafv-0.4.0-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
ed0a3e513eef0720dbac02b1f39df07f4200b235169c0290904f5cfc5523806c - Sigstore transparency entry: 833497663
- Sigstore integration time:
-
Permalink:
wwang721/pyafv@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Branch / Tag:
refs/tags/v0.4.0 - Owner: https://github.com/wwang721
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@5c6ce93a412f5e209abcf38a5f998d44382753a7 -
Trigger Event:
release
-
Statement type: