Skip to main content

Python implementation of the active finite Voronoi (AFV) model

Project description

PyAFV

pyafv_pbc

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

PyAFV is a Python package for simulating cellular tissues based on the 2D active finite Voronoi (AFV) model. It provides a computational framework for investigating collective cell behaviors such as motility, adhesion, jamming, and tissue fracture in active matter and biophysical systems. In contrast to standard vertex or Voronoi models, the AFV model incorporates finite interaction ranges and cell-medium interfaces, allowing for detachment, free boundaries, and fragmentation. The package includes tools for geometry handling, time evolution, and analysis of cell configurations. The AFV formalism was introduced and further 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__)

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 conda-forge distribution currently provides only the GIL-enabled build.

See the documentation for instructions on installing the package from source or in offline environments.

Install using Docker 🐳

PyAFV can also be installed via containerized environments. Pull the Docker image from Docker Hub:

docker pull wwang721/pyafv:latest

The image is also available via the GitHub Container Registry (GHCR) under GitHub Packages; use ghcr.io/wwang721/pyafv to pull from GHCR instead.

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(r=1.0)               # 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. Refer to the documentation for more detailed usage.

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

Citing the package

To cite PyAFV, use the following BibTeX entry:

@article{wang2026divergence,
  title   = {{Divergence of detachment forces in the finite Voronoi model}},
  author  = {Wang, Wei and Camley, Brian A},
  journal = {arXiv preprint arXiv:2604.15481},
  year    = {2026},
  doi     = {10.48550/arXiv.2604.15481}
}

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 arXiv:2604.15481 [cond-mat.soft] (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.9.tar.gz (55.1 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.9-cp314-cp314t-win_arm64.whl (525.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

pyafv-0.4.9-cp314-cp314t-win32.whl (909.8 kB view details)

Uploaded CPython 3.14tWindows x86

pyafv-0.4.9-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.9-cp314-cp314t-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyafv-0.4.9-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.9-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.9-cp314-cp314t-macosx_11_0_arm64.whl (685.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyafv-0.4.9-cp314-cp314t-macosx_10_15_x86_64.whl (706.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pyafv-0.4.9-cp314-cp314-win_arm64.whl (437.6 kB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

pyafv-0.4.9-cp314-cp314-win32.whl (817.5 kB view details)

Uploaded CPython 3.14Windows x86

pyafv-0.4.9-cp314-cp314-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyafv-0.4.9-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.9-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.9-cp314-cp314-macosx_11_0_arm64.whl (571.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyafv-0.4.9-cp314-cp314-macosx_10_15_x86_64.whl (589.1 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyafv-0.4.9-cp313-cp313-win_arm64.whl (348.3 kB view details)

Uploaded CPython 3.13Windows ARM64

pyafv-0.4.9-cp313-cp313-win_amd64.whl (717.2 kB view details)

Uploaded CPython 3.13Windows x86-64

pyafv-0.4.9-cp313-cp313-win32.whl (625.6 kB view details)

Uploaded CPython 3.13Windows x86

pyafv-0.4.9-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.9-cp313-cp313-musllinux_1_2_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyafv-0.4.9-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.9-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.9-cp313-cp313-macosx_11_0_arm64.whl (464.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyafv-0.4.9-cp313-cp313-macosx_10_13_x86_64.whl (478.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyafv-0.4.9-cp312-cp312-win_arm64.whl (270.6 kB view details)

Uploaded CPython 3.12Windows ARM64

pyafv-0.4.9-cp312-cp312-win_amd64.whl (548.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pyafv-0.4.9-cp312-cp312-win32.whl (456.6 kB view details)

Uploaded CPython 3.12Windows x86

pyafv-0.4.9-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.9-cp312-cp312-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyafv-0.4.9-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.9-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.9-cp312-cp312-macosx_11_0_arm64.whl (357.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyafv-0.4.9-cp312-cp312-macosx_10_13_x86_64.whl (368.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyafv-0.4.9-cp311-cp311-win_arm64.whl (193.0 kB view details)

Uploaded CPython 3.11Windows ARM64

pyafv-0.4.9-cp311-cp311-win_amd64.whl (379.3 kB view details)

Uploaded CPython 3.11Windows x86-64

pyafv-0.4.9-cp311-cp311-win32.whl (285.8 kB view details)

Uploaded CPython 3.11Windows x86

pyafv-0.4.9-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.9-cp311-cp311-musllinux_1_2_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyafv-0.4.9-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.9-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.9-cp311-cp311-macosx_11_0_arm64.whl (250.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyafv-0.4.9-cp311-cp311-macosx_10_9_x86_64.whl (257.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyafv-0.4.9-cp310-cp310-win_arm64.whl (113.4 kB view details)

Uploaded CPython 3.10Windows ARM64

pyafv-0.4.9-cp310-cp310-win_amd64.whl (206.9 kB view details)

Uploaded CPython 3.10Windows x86-64

pyafv-0.4.9-cp310-cp310-win32.whl (112.9 kB view details)

Uploaded CPython 3.10Windows x86

pyafv-0.4.9-cp310-cp310-musllinux_1_2_x86_64.whl (619.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyafv-0.4.9-cp310-cp310-musllinux_1_2_aarch64.whl (598.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyafv-0.4.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (616.3 kB view details)

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

pyafv-0.4.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (609.4 kB view details)

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

pyafv-0.4.9-cp310-cp310-macosx_11_0_arm64.whl (142.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyafv-0.4.9-cp310-cp310-macosx_10_9_x86_64.whl (146.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pyafv-0.4.9.tar.gz
Algorithm Hash digest
SHA256 6ed6fd1d244d2213b9b5e5527dd0762f9feda71851b285db169bbb08997e0300
MD5 5ec6d4ab856e21d52655edce5d10f49d
BLAKE2b-256 d0cde955ba13c284e00a36023041f2f1c860cdf06cc43fa913779276d99aa060

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9.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.9-cp314-cp314t-win_arm64.whl.

File metadata

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

File hashes

Hashes for pyafv-0.4.9-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 5bd7c4355eab7b305f1714e8ab9daf2982ceedb610283414f644090155189eaa
MD5 c6bf7536a972ff74f22ad699cc9007d3
BLAKE2b-256 9b12a44cf77e6ec0e985a80fd52ffe664a668e6575dd2a2549a8fd3db89c677a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pyafv-0.4.9-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.12

File hashes

Hashes for pyafv-0.4.9-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1a5cb808cd375e860bc072a080297d1e296e5b9b399068894d8ccec24e7d93f2
MD5 fc92be47d533ac65c6928a1cb412feea
BLAKE2b-256 64f4a370632151044ebc35efac60f5bb9ec707dad519f7e8d8b7df2abd71cf56

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp314-cp314t-win32.whl.

File metadata

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

File hashes

Hashes for pyafv-0.4.9-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 da62858420daf8c78b7b29a29214cec84f74103e444fef0c225de101f02aee60
MD5 9cbb3ee448f75e72dbc05b9b3d1a5f2b
BLAKE2b-256 c4296574c6a855ee72418c9e3942538936533aeedb0a44f2cb3b4d4364c7f39f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 886f4a704fe9b67c9f122ca5955eebca507680e9ac9ef2ee6d8238953c9ede6c
MD5 b94f05c42d076e88ff89c4d65426c1f4
BLAKE2b-256 91ac0e628c5f1726e3613ca30ed113360b550aefd30abcc94af3eb11f4cb15be

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 743e759759621528bcba94d2cd936541b022b90ee2747bdfef9c93e14173aef4
MD5 ec57f9bf5fc90f55c66e3447d4974580
BLAKE2b-256 b1fe1f427383dead61cbddd4eb6c3adfcbb0a28c4b3e86ef260fb4de0f230273

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-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.9-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c1fcaa1bcd158d18013675a37d9b20d1d2ae4c3e5344d147b02101b4bfc406be
MD5 36ce74eb0f1b20849ac830a07a1e87fa
BLAKE2b-256 502e839eab007bfce1a3e7d3a56ead6cdfa578d2f75d1848f7df165f2a1642a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 387c11e5214220d9c2a927aa25214da28f52e1a8fc54c62ff2bbf558abd88a00
MD5 d19572f3bad8b2bc4352733b18dd88de
BLAKE2b-256 bf20c0f8cfeabf0ec19cbbeab180f1e02f8a65cbe022d62274ed41b010adea1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc503d65b50a9ed24cfdf1167a3b4241b353d71768ad80363988e5a7a98aef10
MD5 aa34f62e136b191148769a7a0f519c92
BLAKE2b-256 e6c880543cdd2fc764da37473f9865a31e6c388787d3b27ea6a9c5e80ca87069

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1c585e4de4365e57a85ea480e3dd8812c53205e26d980c7d3558b1dc209f53b9
MD5 06cada76bd2bacd82837b68089e96e93
BLAKE2b-256 b28880b55f0a84846db2fa34fb86f6e231fdc9b2bc28f4882cce7cb84ab91907

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for pyafv-0.4.9-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 8946773950bd614f2b2fd8652a4a3ae4ecbc38dbe179f72a612c4309c261dc02
MD5 c39fbed8670b42d1dc453b45cbb02047
BLAKE2b-256 25d1d0800261ba4cf83fa537775aa2e3389f510fcb49b47d95db98896ea04e19

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyafv-0.4.9-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.12

File hashes

Hashes for pyafv-0.4.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0e986305d86bb093282ca261af3e08e193fdd6b0a343b10dc7d8ef27922d0e3e
MD5 e1b88a95cca031baaf8613080186a497
BLAKE2b-256 4020a98954fd4979ae8474aa099aca2bb9ac20d9f793887269eba9dbd28d0178

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for pyafv-0.4.9-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cfb2a8a768bfe3d8e1b0c6b1ae4a6263116f471b18bd36dcd47ba8301ba0df4a
MD5 8f230abef03fb9c93a98145acb7b6e78
BLAKE2b-256 773ec83993962aee2d9ec76afd98f35c5e11a8c9e6f2fda51168d1b98bb58fea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97fd97ad549ead3cf7fdaa3e2ed49165e3f4b12ac35f76cff33b8143a046c197
MD5 0e6dc4ea6663741b7f91d58d7b170122
BLAKE2b-256 1f61a995c3968077496b08ba29c42ad51a75beb661ff78a782f8571c534bd718

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f709984f23257d9a2b7154e55966c6cb1f62f14529e0d114170ba4d7dc2c850
MD5 9e00237961e8907bfae256cde38de817
BLAKE2b-256 618ed75569ae6b5dff4c885821ad80d645870f00ad4c4d41499f1e7aef9514ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-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.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e5c52211d97be25abcccbb5c454d57def05555e66bc0332d3555b2edbdcf6657
MD5 84c74da1e1f7bc5e2996328de8a1edae
BLAKE2b-256 2d1741e7135985d883bfab7e30460213c2418243b1e6101e434937455da44945

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4cbc4b94721fb74530ab4038be4d5ba2b835c20f331db88c5889385b175de08e
MD5 76d188d4f006f41f2efbee73914698d2
BLAKE2b-256 3d1e42b56d53f6f4d44b3efdaa91809b237dd23d068faf4c6c68c72dcd4d614e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 395b3e932657c52186fd9dcbe51e71bf014d07792ee2af111417ffea9ab50e9d
MD5 41a478f9537f2b39c0a748a0d3016c79
BLAKE2b-256 c194402870e2f832cd43411d40f1c38b0a5ff0b862a9d7a1647b72c69967f702

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e1cfb62e67961b1b1b44e8cfdc1d8d4dc0d1399cfddaf5b7c1613a2d39d9294d
MD5 6054fe6f746430f321acc7be3bd4b3aa
BLAKE2b-256 9c447c2ef851e3211a33332ecc421e2a2df822e388f1f792f3c83c238048cdbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for pyafv-0.4.9-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 6a1abf6bc32522e2e96787c2382ba614efb7480bc5f8ac2b0fafbfc9cd032f7b
MD5 2d9974422e1a44d3e95e6ad2b5105aaf
BLAKE2b-256 7773cc8e36833484de311c5b692a1a8673e4fe3cebd810a8a5520551bbb3b33b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyafv-0.4.9-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 717.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyafv-0.4.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 17c1904578af233c6d0b83838b87f544b401c6acece3b27ac4bf9de1a231dc85
MD5 8ca45a1eea6e44491b42809bf4eeab6b
BLAKE2b-256 e8efc38d8c3e2a35acee13c4b35f33ef40df1802fcddd66c478ec6b71da9f371

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for pyafv-0.4.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fb599753a6852849bcd8de2257f1f32f68d87a8bf0940f2d7808eae3dd334349
MD5 5fdcfa82aabb193e084a94815174a006
BLAKE2b-256 e43b3fb4ec81be7fe3679fbb60680b6bc9eaff91cf705d5e16f9007f022e9f0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e273ca402f2359bf9176d8c1de11c50413ff84a4f5b615a6c46ab0daebf402dc
MD5 4f4d8ccea6011297ab375859db46481b
BLAKE2b-256 65b151202b08d83fb4e226ed78e510180ea1aaf095741d8fc2e25e5f0adf604c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8fe9a5ef8c70ea3675a31a2287a9d86fc2e84fa0b1e0ec06795894d935d49983
MD5 83c3503a72f100f4ac3718aafff7af01
BLAKE2b-256 50e6949b33cb042a77e9a7ffbd910e7eb4a33c6dd4b5e2b8a23b1f7c2bffd4ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-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.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cee2afc2054a1ab6d8794da20e4154002120b8d534869bf4a4e48b04d748ca90
MD5 9b98d33a549431f056b76c05e51ae05a
BLAKE2b-256 728b901cd30f9b76b912e17f4b4e0f651868e4a02dd0a6c77d81bb07cc5b12b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a0a027e30e10d048ce080fb11140e38e1d4052b4815b6d1cc43a1f3981c377d5
MD5 788d2c0e0b011467d2a30885242001b2
BLAKE2b-256 1c288ab7b833f69b4cfd16591b11dd88669809af38b8c4851ce7c82f96d683b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92472582230492845891a5e6de3aea30663aa883afb32f5a0f3c75508acd337c
MD5 6f732fef7d6ee27daf1ff818de94d538
BLAKE2b-256 3196e7226fcf4a6356b59b6bbe86c410f015fa485c7e5b0ba0e7bf8f53716c51

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b09a4e7abeed2096bc5bd8cfa4a03eec86168927c5be94b783af1f87cf04ba23
MD5 d826be3e18e4f6ae56f0ef1bdf28f91b
BLAKE2b-256 e798ba982ddf471e4077169d011a9b3ed3e3a17d4a476f5add4d144683e6493f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for pyafv-0.4.9-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 55d290cc03388fe68fa90daa75385b682b598a7aebd183ab1dd4cb5bcc21f46b
MD5 f1aa461bffdc22cc8f7caa5f2eab3f53
BLAKE2b-256 63a436275b289ea6e36af9b5171d74d12773ad703eba311a7adeb6efb1594390

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyafv-0.4.9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 548.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyafv-0.4.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1823ea20692ea7291beca9955bdd6ed58699c173dfc86cb3967d9e0b627af4a4
MD5 863293fdb4488a4a078bf4889a553ed7
BLAKE2b-256 b42a2f723a0e30db9d6e965065ab3482643a81517836a672902338e7e8a70ad0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for pyafv-0.4.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bafd84a639e747cc89a9584691ee4f7fabcfdaab9a1db27a21c3ea49854be1d4
MD5 94ed9831d5aa1646515071b9c5ff399d
BLAKE2b-256 342e0b3f2d981765123a38f335a2790e8c94680557e1c109bf0c32ebb6d08a52

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5c48fa5d5b8b336e5fcf9d36ece55d27d1c8ce9074ede49e24c95ea52a216051
MD5 89f6fa3c2817eac23f170530f028e64e
BLAKE2b-256 61874dcdc0c30e4b25d48fabe1573cd0662e9d8f241a90f7e4de3c178b34ac9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab0f1d81ba8c6f01df3addb209c7c18ce6d6c6221017da617d29c99ed7b92a17
MD5 68a121e504aa0afc5f6d1e25a00a686c
BLAKE2b-256 5de5bb58ed5d8ebae4791d556d257473a4e25580d6da4cc9e3e811914ae4a923

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-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.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d5e966f39462cacda6f64e49d9ca2aa0baf306208ec6fe1f39708d264297e27
MD5 597bc22ee4d0ca586cc2dc8f2366dccd
BLAKE2b-256 2663b0864deafefcbb4caaa2fe27a520ab6d203f6e2c09a9b0401d1719fb6392

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fde9f3b75d644d1e9950edc8d195c4f9d8c5136e21c24b7d8e5f16a2836d0a95
MD5 02991f45a8ed15eb42038d8a96b9fdb2
BLAKE2b-256 1e5d4d57e5aa752c3e4c622a050323e9d0bb967f8473ccd7462cac8f338c00bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21b2a51a2f0c49937ecd8912f2be46648759389b602f8423122366ac33607c23
MD5 c99a2894abd2ecd75a9bd1b4f327df5d
BLAKE2b-256 00fdd2c2f86105563cb34befe146649c349ff60ad54d454dde24e3a92a8fbc08

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a24766390ce0d3668e8c287ca575542f55bd6a7f9ebcbeb49eff393a0195e744
MD5 f9397a19dee227c8086149ac1b5afda8
BLAKE2b-256 1c0616d3640ac95d06d8113c1eab34a4bae0a1cd7215854b397e488e9384a78d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp311-cp311-win_arm64.whl.

File metadata

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

File hashes

Hashes for pyafv-0.4.9-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 f9bb940d941322b297f9dc7edb936b8a82adcecd90dedd81f055e840677a038e
MD5 12438aa10334b578222c8a65bf67a54e
BLAKE2b-256 e0d12dc34c2fd77bee30dab5f027b63d15eb5cd01958dcb3a45f8533a6e8ce4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyafv-0.4.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 379.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyafv-0.4.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 47f8c7aca14acc5da70b544faefa132399451b98673c5fe76a1a968f5ff909f4
MD5 f6dbd1bc11086969717fb4774bc14997
BLAKE2b-256 9071d4b61bdad457114017bce0b5b41b308b37fba6d56987a4956a7c1e6031f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for pyafv-0.4.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ced9b1c119c8a3c5881fd2f0ec06ed7a555a35e7c1173a89f8fbd4078237dc1b
MD5 bc8df0dcbcc3b1e1247e9a9796a4a25b
BLAKE2b-256 18c412cc6f6ab4688b0918ccd477d1743eb78083201e199259baea0a9ee2d2fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 599382e3642e15fce3168b85ff37a5b6688d5612faccb63e6e8162a04382dffd
MD5 3ccc80d602cc18ffbee8e2e926f819d2
BLAKE2b-256 972119442fb1124eed614359fac0073123eace7e6d55a2e033ba15f7c479ff88

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c116d9ed1803f4fd4c96114ebb54b77f462dc7cd49fa7a7350e60f764bb1eb0
MD5 a32278ff3a86c5f3ff365fbceb25f461
BLAKE2b-256 6a2860b3ea1a3222fde6af9ba168dfaa68f10fb53d329c8a0bcce025497fd739

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-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.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9c3f7a37f1a1378b0d9990e1c8e91b341626f8af42169d0930591726448a8cd0
MD5 febde34fca2b61cb8e9543e1702f4220
BLAKE2b-256 d3b2c2f12b7388c4825ceee6b77136d8242fc88a99937c7f5ea6c7dcff71b2e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 58eb070db6f1739cccca349cbbf1e4bbbbcb7a5e50209e5bfe27e9cd0e82de12
MD5 66065432040684317fd7c3ef76365fa5
BLAKE2b-256 fcf04eef1c5cc6c67587f7c134a63fd73180858015b9b5e217015fbeeab2fe79

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3896c3dc61060a74196e87172f8d44df0b8460698e584a3bcaa66b4008758662
MD5 975419587c3ef459f42ad257b8d4c36c
BLAKE2b-256 121792bf36c19f1da8a90f5edde3472b6b423576d4fe14cb68946c3559d109ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 82cf4c18e041a923993db2aab518c0adb927efb265ddd8ac6ffb3f206fb0c945
MD5 7eafae5e9bdef5c3197f4b94473fd6f1
BLAKE2b-256 4f749d530e41ffb60ac2f708633e4947a7bf01f8ea9d788e846e4325fc8b9d2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp310-cp310-win_arm64.whl.

File metadata

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

File hashes

Hashes for pyafv-0.4.9-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 46eb1f888ef5e873cf47992bd9f38f30689aa0c11e8f4892861edd5ec775bec2
MD5 dfb6ce64580f4501a8d1fd9402e3d087
BLAKE2b-256 5add7bafd70f8d9d23893bfd45644558302998f7c8e31a2fb48af2904860ffb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyafv-0.4.9-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 206.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyafv-0.4.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a8307789102b873a33c5aded83857657db6f1990a5c73aa5e2bfff22e60fddcf
MD5 bc8560e70ccc77d485936a0f9b7702b3
BLAKE2b-256 29596e83161f5e7ef7b02a7346a652bf0ba48149e8dd63d67e2c67dd558d13d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyafv-0.4.9-cp310-cp310-win32.whl
  • Upload date:
  • Size: 112.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyafv-0.4.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4829d78e6135bcf30b31aaa4b7e9bff28c766e875f6ef1f7958237a82f93ca95
MD5 ec70883370d8cfb334f3f077d38e27ed
BLAKE2b-256 ad80787f773e24f6e4a28a91104080be420c36417223232300cf3b991984b932

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe12fb480fcff4f4031fe37c9e880c9c2730a7cb407a1e8e2df3d64271126ddc
MD5 6ffbcb30e09f52c9ca669f5a35a4b1ee
BLAKE2b-256 fe924b4bf2f6e3e042959822417d584f1ccc215e0012743dfe894c7f354d81b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 45080efb960d82e80e3546cb65cd4ace78f549f529e02f82e074a61ed5e31e59
MD5 9db19b47a84b8eb6c0ea6603a150391a
BLAKE2b-256 eab66a8ef8308e2712b251b6e465f083455b68939c10b9fea66d1dcdb97948a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-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.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a52be4429c729e2a3a9786ca8181ae77b57881ead12a55f93b02ac0950ed6d55
MD5 090ff39d94f5f11fd0a56cacabf09d97
BLAKE2b-256 8bd5f71a1fa9a4d168674f301d8b832e606df881c334282201a91618282aee6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ed92dc98124e1a76200603f230d3b1eac61856c7c99330b35a1bfc6272eafe8d
MD5 2fecf29a33915224b4a9eccb2675c044
BLAKE2b-256 768fd250392faade94978304eb9349b86d87a1d4179adc3fd5b5f05ea3a666ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87e7cb9009ae4f32c4b7896fed41ecbb241f38578f9c114e4abd9ffe5c131cd0
MD5 1839f7d79441a1bdb873fcc0bfd4f7bf
BLAKE2b-256 7ce58094b848f7e2f48e7ac523eb270b070af866992aaa651d66f6cf73c99dac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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.9-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.4.9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3786cbead7bc73010dffb4ec764cfbe976ba4ca4235fca0ad6ecad03fdbf0088
MD5 df6fa65ab56e6790995f8dcc30ac61f8
BLAKE2b-256 c73cc48db289ea5620ad3b37144c0bcb9df85dc3fe216f41efd375d06f740f0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.9-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