Skip to main content

Python implementation of the active-finite-Voronoi (AFV) model

Project description

PyAFV

PyPi Conda Version License: MIT Tests on all platforms pytest Codecov Documentation Docker Open In Colab

Python code that implements the active-finite-Voronoi (AFV) model in 2D. The AFV framework was introduced and developed in, for example, Refs. [13].

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 some HPC clusters, global Python path can contaminate the runtime environment. You may need to clear it explicitly using unset PYTHONPATH or prefixing the pip command with PYTHONPATH="".

As an alternative, you can install PyAFV via conda from the conda-forge channel:

conda install -c conda-forge pyafv

If you go this route, note that for Python 3.14 the package currently supports only the GIL-enabled build.

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 file 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.

Install using Docker 🐳

Pull the Docker image from Docker Hub:

docker pull wwang721/pyafv:latest

It's also available in the GitHub Container Registry (GHCR) under GitHub Packages; use ghcr.io/wwang721/pyafv to pull from GHCR instead. Then run Python scripts with pyafv using:

docker run --rm -v $(pwd):/app wwang721/pyafv python <script_name>.py

Use ${PWD} on Windows PowerShell instead of $(pwd).

Usage

Open In Colab

Here is a simple example to get you started, demonstrating how to construct a finite-Voronoi diagram (click the Google Colab badge above to run the notebook directly):

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

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyafv-0.4.7.tar.gz (53.2 kB view details)

Uploaded Source

Built Distributions

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

pyafv-0.4.7-cp314-cp314t-win_arm64.whl (524.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

pyafv-0.4.7-cp314-cp314t-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

pyafv-0.4.7-cp314-cp314t-win32.whl (908.6 kB view details)

Uploaded CPython 3.14tWindows x86

pyafv-0.4.7-cp314-cp314t-musllinux_1_2_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyafv-0.4.7-cp314-cp314t-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyafv-0.4.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyafv-0.4.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyafv-0.4.7-cp314-cp314t-macosx_11_0_arm64.whl (684.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyafv-0.4.7-cp314-cp314t-macosx_10_15_x86_64.whl (705.3 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pyafv-0.4.7-cp314-cp314-win_arm64.whl (436.6 kB view details)

Uploaded CPython 3.14Windows ARM64

pyafv-0.4.7-cp314-cp314-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.14Windows x86-64

pyafv-0.4.7-cp314-cp314-win32.whl (816.3 kB view details)

Uploaded CPython 3.14Windows x86

pyafv-0.4.7-cp314-cp314-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyafv-0.4.7-cp314-cp314-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyafv-0.4.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyafv-0.4.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyafv-0.4.7-cp314-cp314-macosx_11_0_arm64.whl (570.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyafv-0.4.7-cp314-cp314-macosx_10_15_x86_64.whl (588.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyafv-0.4.7-cp313-cp313-win_arm64.whl (347.2 kB view details)

Uploaded CPython 3.13Windows ARM64

pyafv-0.4.7-cp313-cp313-win_amd64.whl (716.0 kB view details)

Uploaded CPython 3.13Windows x86-64

pyafv-0.4.7-cp313-cp313-win32.whl (624.4 kB view details)

Uploaded CPython 3.13Windows x86

pyafv-0.4.7-cp313-cp313-musllinux_1_2_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyafv-0.4.7-cp313-cp313-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyafv-0.4.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyafv-0.4.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyafv-0.4.7-cp313-cp313-macosx_11_0_arm64.whl (463.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyafv-0.4.7-cp313-cp313-macosx_10_13_x86_64.whl (477.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyafv-0.4.7-cp312-cp312-win_arm64.whl (269.6 kB view details)

Uploaded CPython 3.12Windows ARM64

pyafv-0.4.7-cp312-cp312-win_amd64.whl (547.3 kB view details)

Uploaded CPython 3.12Windows x86-64

pyafv-0.4.7-cp312-cp312-win32.whl (455.4 kB view details)

Uploaded CPython 3.12Windows x86

pyafv-0.4.7-cp312-cp312-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyafv-0.4.7-cp312-cp312-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyafv-0.4.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyafv-0.4.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyafv-0.4.7-cp312-cp312-macosx_11_0_arm64.whl (356.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyafv-0.4.7-cp312-cp312-macosx_10_13_x86_64.whl (367.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyafv-0.4.7-cp311-cp311-win_arm64.whl (191.9 kB view details)

Uploaded CPython 3.11Windows ARM64

pyafv-0.4.7-cp311-cp311-win_amd64.whl (378.1 kB view details)

Uploaded CPython 3.11Windows x86-64

pyafv-0.4.7-cp311-cp311-win32.whl (284.6 kB view details)

Uploaded CPython 3.11Windows x86

pyafv-0.4.7-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyafv-0.4.7-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyafv-0.4.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyafv-0.4.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyafv-0.4.7-cp311-cp311-macosx_11_0_arm64.whl (249.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyafv-0.4.7-cp311-cp311-macosx_10_9_x86_64.whl (256.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyafv-0.4.7-cp310-cp310-win_arm64.whl (112.3 kB view details)

Uploaded CPython 3.10Windows ARM64

pyafv-0.4.7-cp310-cp310-win_amd64.whl (205.7 kB view details)

Uploaded CPython 3.10Windows x86-64

pyafv-0.4.7-cp310-cp310-win32.whl (111.8 kB view details)

Uploaded CPython 3.10Windows x86

pyafv-0.4.7-cp310-cp310-musllinux_1_2_x86_64.whl (618.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyafv-0.4.7-cp310-cp310-musllinux_1_2_aarch64.whl (597.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyafv-0.4.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (615.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyafv-0.4.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (608.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyafv-0.4.7-cp310-cp310-macosx_11_0_arm64.whl (141.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyafv-0.4.7-cp310-cp310-macosx_10_9_x86_64.whl (145.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file pyafv-0.4.7.tar.gz.

File metadata

  • Download URL: pyafv-0.4.7.tar.gz
  • Upload date:
  • Size: 53.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyafv-0.4.7.tar.gz
Algorithm Hash digest
SHA256 043b9d18abca8f2cfa973b88babf333b277de85a24e88cf46ea9ebdd0ae5e794
MD5 009015a098f3dff83731612971662788
BLAKE2b-256 fde25d270ccb1a2f77897178fb6cffb2cfad3b7b0f11bcc92f67932fc1f58453

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7.tar.gz:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: pyafv-0.4.7-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 524.2 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyafv-0.4.7-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 2d9a46dd598d97c71a541d06d7bbebfcec2944379e5106f34e0b9a00547bbbdc
MD5 44469c0677c3e4fd593bf9cd98b06cc8
BLAKE2b-256 127c4ccefdca477c8d223c4d3b4299141714b37f9619293fd660f3cbf4048c7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp314-cp314t-win_arm64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pyafv-0.4.7-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

Hashes for pyafv-0.4.7-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a29ca304748d9575cc3f2297077ab78acdaf9d47db2400f98666630f25f52588
MD5 701ff84bdd857aa23992ea641a50a0a4
BLAKE2b-256 faa2ef28299ec095aa3f9a8042c6dce2d437ff3451e12f2c05388347facc4a49

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp314-cp314t-win_amd64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pyafv-0.4.7-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 908.6 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyafv-0.4.7-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 8c8d5d726a7986b83b6e4077ccf8f6c0626a5cffe27c9424ed65ff2de2b5ffee
MD5 ffcc5eb7379b2043a2b38ccea6b0c371
BLAKE2b-256 3b392bf8f57f9a2f68887fe7c5b0f1079005a25cac5770d66d97d9831b678a3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp314-cp314t-win32.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 037f581b67ef18d5d041e718abc6349c52afb4bbd0ccfad3539e27465b004764
MD5 4bff3f9cf2c7a3aa61adeb6001f4b85d
BLAKE2b-256 5ea0ae3611bac9c1b968fa8d732631b046c3089049c861048f43943891817022

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 057fe87582e4cdd97c88d4c610ddc803fc3be58c39844840f92d6efd6fa3a161
MD5 8880f03b22c83b7c83e6834ba65c2876
BLAKE2b-256 7949f60608a377598763935e65320910e7024fd233b9733e45877ebb1d591c23

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32026e45412eda07bb17dae7fb1d0b9a509613652b9d9ce4e5e097aa73eb3cfb
MD5 4b961867bf7e078e7f03e7ff3f371d33
BLAKE2b-256 fb9edae7d25670355d093ccaaa76ddcdaadfec76ba2c51c4795e1c02ea0686f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 24e84b10b8f780ee89b9f9e7a1e7bb5c242145d5fd845d99c00b275455273490
MD5 83cc9dc61ee91190fa4db7b327e3f6a1
BLAKE2b-256 937c902bc22bcedd0fe310c7bdd1ae13abd4e09f0c70fec847cb700b5d479d8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eaf9051a7c2d1b27d06053a18bfd1337aac1aff775a24b3fa0bf78d637de21b2
MD5 92f1c92f97c618616d093682a0570ad1
BLAKE2b-256 6ada7a184e83c88f8f14790fd0b3e4c1d83efbb5f6b75813d829f73cb82abcde

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d6cff77af1493af88b8c5f9f4ce3fb1c3fd5f0041704185109063730efe4c7eb
MD5 0d7f309d0c752fd0a94eb6e5788b0c5b
BLAKE2b-256 1da978a2d7d126b57bdffd6fe362c01a4f62802678f2f6b5993860f19022defd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pyafv-0.4.7-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 436.6 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyafv-0.4.7-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e64d45ff05ab8630c0ff46e22fc68a4b87ef35461c5e5ff21ca42cbdf14fe82a
MD5 546658d8f7d9ae1917648e919f5863b2
BLAKE2b-256 8b44b085c02fa1de0f189c74eecb3a7474b2a77d3c449b4c874d13cd2bb76336

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp314-cp314-win_arm64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyafv-0.4.7-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyafv-0.4.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 13c688fc023dbc9b304dfe0c1c9967666515f9e149b9f1ef9b8be0a5bb7d77cd
MD5 45d750f38572b34080555e2c04f58b92
BLAKE2b-256 f41d345a311fb044ecc0f4fcb241ee89c7f33e01bb5244a66ec201db9336d8e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp314-cp314-win_amd64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp314-cp314-win32.whl.

File metadata

  • Download URL: pyafv-0.4.7-cp314-cp314-win32.whl
  • Upload date:
  • Size: 816.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyafv-0.4.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a6a48072c349ac0f7b3a9aadc174c5fb2312de26970a88f9d56e874740b89837
MD5 16e220e4aa64b0226b3441874e3c29d5
BLAKE2b-256 ce8c932e4b09ec4f5b78ea44c59451dae706d54565ec9dcbcb14eae722fd0b3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp314-cp314-win32.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 640fa3c8d4d04d9b40b976c1e7378dedeb731a3179ad2330a1b239f6b3e5cf33
MD5 5f9b42b41e2d53b7d018f0a954e47c04
BLAKE2b-256 e4c7385d9cc21e884b29bf19cf4d7b2871b8786b8e3fe25521180e114b4c4e6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fad6ea8c4795f5f712bbf74c2c94e0faf43758f3196e6f2974dc99001f4b9354
MD5 5f3f60f34654ba5e3c8ebe95de497fc4
BLAKE2b-256 8391ae8d084ac109da6a9ceeecc1a385526539168e430f21004ebfe6dc044d7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cb77cfc47418a0a3509b055cfb06b3b9a9126cf29039494ab5bd60834ad6e8a2
MD5 4da7fd4ea69a910c14a21d23f6ac8642
BLAKE2b-256 668ea580c2a5c67bffaf49ba15b4946f0eb066c34356d99bb675eeb7573132e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3c6c6493521e19d26d3b71ff9b45eb03fd8a2dded85db67bffda4aac6c2ae875
MD5 e4c8fff3690325f19b88f819ed8b9d62
BLAKE2b-256 5aa82ca3976d521d09cb6f263c68686f0c070df38900dd21bfa23a0f6d0eabe8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d2c34f237c32b63c584fef1b6272c81767156b807b119d679e45af48c896a05
MD5 fd770e140cb4bfb7de3f2a1d70347f29
BLAKE2b-256 7bcaae9b3dd7faa1038885226f2079f82eefdc50d455fb89c6d93f62c9f62c44

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 057231e846f50b75a5e808cad95391e6adcf382ab08ea53faba625899c2cfd34
MD5 f083d26d4272c4e8a4d3757b56afebba
BLAKE2b-256 d606399471f8ded9ab7767e8dbac800cb400072cb4733324c6be49c8f59632ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pyafv-0.4.7-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 347.2 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyafv-0.4.7-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 16104181fbec1d81e81de4985b338426781b003372f88194eef8bb6f1c3dac02
MD5 11afc7822e6b1f472844c7a6bd7a4c94
BLAKE2b-256 bc71bd009d5402d7105451ac163287aea8dadd72b64cb128810ccd5c6327d519

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp313-cp313-win_arm64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyafv-0.4.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 716.0 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

Hashes for pyafv-0.4.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a992265f8b0b161778eb286cc62eadb64cc78470a219498eff6e4483e3134758
MD5 299b764b65b081ffb53917abde8332c6
BLAKE2b-256 59dca62da83f835f598816de1434654c667f3ba5c4fd857a77623cfa02a4cec7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp313-cp313-win_amd64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp313-cp313-win32.whl.

File metadata

  • Download URL: pyafv-0.4.7-cp313-cp313-win32.whl
  • Upload date:
  • Size: 624.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyafv-0.4.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7639bc5b698d238ab1874ac6b80e04a22ea6d7b61ea02f0dd645f87451bba311
MD5 f86b7b8cd3e62a695f8f6fabbb263ebf
BLAKE2b-256 532e1fcceed9cd26fd4704ae2ae06ed28352af7a4ba9a45983054f3114b159c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp313-cp313-win32.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77c55b1ca65d2801445bdb017a90d42c198e7628584dcfadf0e72db4b5e2c75a
MD5 daf5d5442fd12f3316d7143e42c6c177
BLAKE2b-256 4fd8cacbc12602b0bd625bb582325bbafa6d7de68217a541bc54accb067abb5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c61abcc108facf0cd10611027c51a53d98a4f134190b6931237dbe9d2a022621
MD5 ccc801a9b6791da6c7d6b8a3ddfc2aed
BLAKE2b-256 ad8b5cdd79c46d867699883bf87b0f1d533efa24dc35d94da9e9fae25a18ebf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9cc9ad6f0704b534c7a4a558e087147d87525bcd38fc8e256213c47bb467776
MD5 2a590b6619691893d758dd1807f365c8
BLAKE2b-256 015e6b1e5168a0acb4e51c614325ddce7ea47175ce6648268844a9b7356efc2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc2a04cb6620c265b01bdbc31f9fc332c97e5ae46a587d9494e13162133d91dd
MD5 b653b1d347597a58b77066018b2d8309
BLAKE2b-256 1398a5cbce2fded8c837b941ba81ca172c125a228e39581713883efbdb3e5cad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8efa88121cb56b9f63f1122fbae247564920549b6d7403dad98f20e9084b9156
MD5 7d3183198cc764efca6515dc7e2362df
BLAKE2b-256 f75fb0fd3782cda4959956c403949e2a196229dac3dfb4c539bf531f0fec54ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7259df4faae4117f7693d0497c3476e50d13f76ed754edd9193df33297f2a266
MD5 2814658bbeb16b9fb9eae86819e590ae
BLAKE2b-256 f961db1249767eadfbc6184fea1f97a65040c5026da16ffafbf90b6fd08329fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pyafv-0.4.7-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 269.6 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyafv-0.4.7-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 43e9d437d9b3263f2543c2005ae9bc5c29e9c9ee49b3240034b24d31d93269c0
MD5 eaceff11378f2ae69867c3e8bb03579b
BLAKE2b-256 99ac45503b15a5b07f4d631d472c9ccd54730fdcbf91ce00cfaea9646bc42fdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp312-cp312-win_arm64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyafv-0.4.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 547.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

Hashes for pyafv-0.4.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0c7516337733cb536ca6905dfe0b1374e98f1389d58daf5fa2038c964fec7264
MD5 4518595fd3bc0265436e1ab2ce11491b
BLAKE2b-256 3f073137adbd7b9855c01e61c0cdf9e158e0a01a097e33b55bcb2714f60d7637

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp312-cp312-win_amd64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp312-cp312-win32.whl.

File metadata

  • Download URL: pyafv-0.4.7-cp312-cp312-win32.whl
  • Upload date:
  • Size: 455.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyafv-0.4.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d6b1fc498df328a710c2c5947498d77f5bc34bf28394c08fb52cbf5632782385
MD5 c6629499fa40a371b57394010eeddb60
BLAKE2b-256 9295b5f7e153a94d2778c01cfeb13151e0a4354dccb2c7167af880570dfa0c08

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp312-cp312-win32.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb8fda03b6c110d0219e5b191cba9418d56e2f25d2ea3e8f381e219ad5556d05
MD5 40e270d427edcbd82b50f7934a8bb0cd
BLAKE2b-256 dd8005e832e43f9e6ac0a06401aac445be36409a8fa18b2f7f8c3954516266dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23069e9df366fd3974d5603c4e3b998cc01ff1ace04f2550e6e3591e9e47ee97
MD5 525589c134c3768744470acc4aae87c4
BLAKE2b-256 6ae2b8074e413662a63138cce9584a939cc40702ff40fd5c76620323288a2712

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e89f69ea38ae8a10341638d3d61f63e7ff80950bf10d8667754b86ac0b3b84ad
MD5 d5ec75b3da8022b43755c7319e6514de
BLAKE2b-256 b342ce68d9ce2385e81558c0ff15beff5b2767629f8173bfdd6ca838a2eed9e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 00764a71edbff9be38bc57e96ba264f7f915fdf2e65b405ede015c97b23e8896
MD5 43c37a1408bb5c4031d7caeecf700927
BLAKE2b-256 ebecdb0054adc11bff9f6899b2103e2cf79c31ebba7115c25f6a2939e3ed9102

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3bef8dbb00ef0b29ce85dc0334c882af721f931899579adfdb9454d16501309
MD5 c3ac566d0ee8cd41b99613342a8b9bfb
BLAKE2b-256 abde108e873a26028ef05cf50c98e802ebb7376618aca5a4a406d974a38042fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cdd7a43d3c1073c726050595d434cc0cfc38b60d03c55571632f94357b6c83c2
MD5 50fb02bd351a1445f0a5968dd306e1b0
BLAKE2b-256 9c1125c53834a37df533bd9fd6b4c4881ed4ae5471268a9389b5888361533bb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pyafv-0.4.7-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 191.9 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyafv-0.4.7-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 3658d4e97e8f16a262f3703301ba94da6207d181ca8c1eb44eaf74f07a4e0cf5
MD5 0f13ccbb059c91250bcb156ca584718d
BLAKE2b-256 202ba8b56b503b576fddf9721690ee4642e685df1f1ab320608fd7762e0d48b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp311-cp311-win_arm64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyafv-0.4.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 378.1 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

Hashes for pyafv-0.4.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 18380f59c820da0893bf281a8c181772722c07d73e8a45fe5696f17df8a80e6e
MD5 7e97340c6b20c4d08e029b235f03d7a9
BLAKE2b-256 c41bea00b9dd958e20f03ec2f6d7bff9f34218b7cc62816fbade805812c7a21b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp311-cp311-win_amd64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyafv-0.4.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 284.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyafv-0.4.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b790225a6d4a78800ddada3e0076f5b14bca14a5b086ced77320ce77f2fbd845
MD5 b15f733252ab733ac725b886647b3578
BLAKE2b-256 98b4f68d35beb2d1723f260476e2113a025de36c59062d5bd4f9a05fa0cc67fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp311-cp311-win32.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abc77e1e98f843518e895d3c8d80706b72c01e21dbc5729db3a7847d5e6716dc
MD5 f65fb9a97243312436249adf3bacfc13
BLAKE2b-256 3de0cf0374b060832906b08bcdb6eba6d140998fb7e53a557ab100485e24cbf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a54fbf912f23c21358a00d03e7550cb28d3dfbc28e3fc987347ff72c3670cf85
MD5 83aeffc72d83f1f215bd1d29a6417afa
BLAKE2b-256 ce2e438529800ca7b51aaeb92c758e0273cb32ce5c65a6d3e38aa1693f2e822d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 77df4458061742904e6a9292b445510f05168429742bb44ec9d1b9d81056e2e8
MD5 19c26505b0d008afd2d12d2b3b7092af
BLAKE2b-256 7f306d23889d713babc2b09310e325704ef82bb218a129ce96081c08e456b8e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9a7fc64ebaaef8b7e2be8d5e4a177922232e82f0b45e68ccace38d336fa20cf7
MD5 02612e80d11cfe83d6ea76012d0dcca0
BLAKE2b-256 e7411ff6e63924fdf9f3148e1d3749970933c6500b92e957c8671a111d9176ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ad441dc97462165957b01f2e4305edf1572b0ddcb21b0189fa2c164657160ed
MD5 73460ab10c86276f0a914c5270850698
BLAKE2b-256 ea642a9cce6331e80981564559957ffc954d1668a73d03c61f971f63b013369f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7127cac9eed12f9dad9bce4043f6c664649e4a921ebd5bc2e93f37eab138483b
MD5 1f485bc6177555184c023e0a15dd2675
BLAKE2b-256 1bb94fb84e4d787cfc176e95e9d607fb6fa641e4619d698932bc33dc7235bf08

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: pyafv-0.4.7-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 112.3 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyafv-0.4.7-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 9d8ed5d8ae1d3e34bf4fdf049486c9c0d9c157d4f45bd84816abe135ac01b987
MD5 db38ce62ae72979ac618cfe28fd98b94
BLAKE2b-256 191bb8d5918fd2c7a3714d0e2f9ffdd73d858766cb12b1f9386435138f807343

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp310-cp310-win_arm64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyafv-0.4.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 205.7 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

Hashes for pyafv-0.4.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 31f0704e71154df463d4e0aeab68d0928701e54cbe64e4d4b52adf770b2e4257
MD5 5639ff834e0a85800dcbddc74f24eeb5
BLAKE2b-256 cb352ac51b6d5cb1e3b6592554536eb67ff5e77b6679cff2dd7a69c7af29fab2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp310-cp310-win_amd64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyafv-0.4.7-cp310-cp310-win32.whl
  • Upload date:
  • Size: 111.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

Hashes for pyafv-0.4.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 08899da17486bae09e95ec6600f56c4c186679bb634224c29ddcfb6913208301
MD5 a81537066aaf9b907f946a95167bb7e0
BLAKE2b-256 bad91cb12f89751db2c8afdc9025b169faa9e13a39c802d2442c63279352005a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp310-cp310-win32.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 60159e8e021fd5c550d2bacb057bdc28e0e973be35210c6cabe0144511248652
MD5 38709119a6d741ab341a732ac25f1bdc
BLAKE2b-256 e32bac056a114acc14e3922177ea710ca174e34a6a84d8eee0f9890891c0b5ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f87b5b9aff4ab3daeab0f5997b8a8ab1efb76a1b77e046f95b007e64ed15e41c
MD5 7b27650fdec2b58812ab8d4903defe15
BLAKE2b-256 6dfb1e95c1257f3d21d75f3a4a38d25b70872855f99501d1ac46e5d208c65ec5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 66302706505a196d5d24dc33f50c083e214489fde0dc750d56e78f303e33a95f
MD5 3facdad2fb9f52b47d647795b36a25bc
BLAKE2b-256 054cad372bb0ca7bbea68bc2d66870396ea8149e1328c6e8b152eae334d605ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cc42cf34a87c03c5977c972879d0d2d54e47ad1cd5ba1354beb35065705d842c
MD5 7309e8afda833bc37978df378fdc0880
BLAKE2b-256 e431dfa9fe5c6508ab9604b7a9df85fe628421fdb78cb6613ee0c8853833d351

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 609d2566628a7a647651a6c6712522757868c3e4ebefc3f395c004be167d4c73
MD5 da20f1d288ba14f2fadd0dddb45f0167
BLAKE2b-256 b8d202c0e6d174cd0c08f99ddb3fa12c40bcebc78ac62603fce1bfcaf45304bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

File details

Details for the file pyafv-0.4.7-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 73d45a3d50e11f6e942d13e8b1f18a955d2963a0a1d911dcef834f608dcb8755
MD5 3dbb15b7f6626906576ae85907ba2817
BLAKE2b-256 f1144c9428b284fa88b641a639b2c5a9e215f70615962bb4f9d83711227f77ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.7-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish-to-pypi.yml on wwang721/pyafv

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page