Skip to main content

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

Project description

PyPi Downloads Documentation Open In Colab

Tests on all platforms pytest Codecov License: MIT

PyAFV

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 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="".

Install from source

Installing from source can be necessary if pip installation does not work. First, download and unzip the source code, then navigate to the root directory of the package and run:

pip install .

Note: A C/C++ compiler is required if you are building from source, since some components of PyAFV are implemented in Cython for performance optimization.

Windows MinGW GCC

If you are using MinGW GCC (rather than MSVC) on Windows, to build from the source code, add a setup.cfg at the repository root before running pip install . with the following content:

# setup.cfg
[build_ext]
compiler=mingw32

Install offline

If you need to install PyAFV on a machine without internet access, you can download the corresponding wheel file from PyPI and transfer it to the target machine, and then run the following command to install using pip:

pip install pyafv-<version>-<platform>.whl

Alternatively, you can build PyAFV from source as described in the previous section. In this case, in addition to the required prerequisites of the package, the build-time dependencies hatchling and hatch-cython must also be available.

Usage

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.2.tar.gz (51.3 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.2-cp314-cp314t-win_arm64.whl (515.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

pyafv-0.4.2-cp314-cp314t-win32.whl (892.3 kB view details)

Uploaded CPython 3.14tWindows x86

pyafv-0.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyafv-0.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl (3.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyafv-0.4.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.7 MB view details)

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

pyafv-0.4.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.7 MB view details)

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

pyafv-0.4.2-cp314-cp314t-macosx_11_0_arm64.whl (671.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyafv-0.4.2-cp314-cp314t-macosx_10_15_x86_64.whl (690.7 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pyafv-0.4.2-cp314-cp314-win_arm64.whl (429.3 kB view details)

Uploaded CPython 3.14Windows ARM64

pyafv-0.4.2-cp314-cp314-win_amd64.whl (985.0 kB view details)

Uploaded CPython 3.14Windows x86-64

pyafv-0.4.2-cp314-cp314-win32.whl (801.4 kB view details)

Uploaded CPython 3.14Windows x86

pyafv-0.4.2-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.2-cp314-cp314-musllinux_1_2_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyafv-0.4.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

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

pyafv-0.4.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.0 MB view details)

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

pyafv-0.4.2-cp314-cp314-macosx_11_0_arm64.whl (559.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyafv-0.4.2-cp314-cp314-macosx_10_15_x86_64.whl (575.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyafv-0.4.2-cp313-cp313-win_arm64.whl (341.1 kB view details)

Uploaded CPython 3.13Windows ARM64

pyafv-0.4.2-cp313-cp313-win_amd64.whl (702.4 kB view details)

Uploaded CPython 3.13Windows x86-64

pyafv-0.4.2-cp313-cp313-win32.whl (612.6 kB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyafv-0.4.2-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.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (2.4 MB view details)

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

pyafv-0.4.2-cp313-cp313-macosx_11_0_arm64.whl (453.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyafv-0.4.2-cp313-cp313-macosx_10_13_x86_64.whl (467.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyafv-0.4.2-cp312-cp312-win_arm64.whl (264.5 kB view details)

Uploaded CPython 3.12Windows ARM64

pyafv-0.4.2-cp312-cp312-win_amd64.whl (536.8 kB view details)

Uploaded CPython 3.12Windows x86-64

pyafv-0.4.2-cp312-cp312-win32.whl (446.7 kB view details)

Uploaded CPython 3.12Windows x86

pyafv-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyafv-0.4.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

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

pyafv-0.4.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (349.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyafv-0.4.2-cp312-cp312-macosx_10_13_x86_64.whl (359.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyafv-0.4.2-cp311-cp311-win_arm64.whl (187.8 kB view details)

Uploaded CPython 3.11Windows ARM64

pyafv-0.4.2-cp311-cp311-win_amd64.whl (370.6 kB view details)

Uploaded CPython 3.11Windows x86-64

pyafv-0.4.2-cp311-cp311-win32.whl (278.9 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyafv-0.4.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (244.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyafv-0.4.2-cp311-cp311-macosx_10_9_x86_64.whl (251.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyafv-0.4.2-cp310-cp310-win_arm64.whl (109.5 kB view details)

Uploaded CPython 3.10Windows ARM64

pyafv-0.4.2-cp310-cp310-win_amd64.whl (201.1 kB view details)

Uploaded CPython 3.10Windows x86-64

pyafv-0.4.2-cp310-cp310-win32.whl (109.1 kB view details)

Uploaded CPython 3.10Windows x86

pyafv-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl (603.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyafv-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl (586.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyafv-0.4.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (605.9 kB view details)

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

pyafv-0.4.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (597.2 kB view details)

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

pyafv-0.4.2-cp310-cp310-macosx_11_0_arm64.whl (138.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyafv-0.4.2-cp310-cp310-macosx_10_9_x86_64.whl (141.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyafv-0.4.2.tar.gz
  • Upload date:
  • Size: 51.3 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.2.tar.gz
Algorithm Hash digest
SHA256 1008e5af4362dc651c6e43ee8195277dc067f5fa43c88f6b8d69df707f4c4da8
MD5 03ffc7d2109bff96b5c090ef57380241
BLAKE2b-256 27bf33dd6eee77dad26872b25dced36a41cacc0c4b361e434bca28714229095a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.4.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 515.6 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.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 e690a8f8f15b88f274756f46357a4099bb6ac2ba4318e812dda0f6a62725aafd
MD5 802e480009806213e5d7c255f72ab0e2
BLAKE2b-256 17537647a62acbf499f971afa83812981c2bf5324369c3958cf379752de70965

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.4.2-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.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 059eccd9019b977927288bdee9982796007fab54f49cc0fa00f921b90a7dd252
MD5 cce93b679a60c1e004367eff43c1a80c
BLAKE2b-256 0d3dec0eeebf8a975ce9fc6f07a63bf2a6fcf841e690dee9e2e352ad25c932db

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.4.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 892.3 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.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 277a90e10f57e6160b0ea3161c8fab28b742f7cac2e70f1d9479b0dbf3d07339
MD5 5edb81d55c29561f4c2e4b2d5f10d2cb
BLAKE2b-256 57f0ac0e03cd781b42e94198e15ca13b5d1c3fc17e29b6cd6afb112a09df6bd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5cf1c0d0014cbf490a616b2f80b460d0475c3ca9d1fff3a8ab85c253ba86b62
MD5 3e13fcbc424a349dcf80389caebe0f6c
BLAKE2b-256 8133c558ebfaafa02b394c4b88366db7a85f5216c01a0c2387f7103d6bd3c8c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2bd790d25b1d1de32586d98288781561ffcabd458800c62fd314640e9cf0003b
MD5 0da00d6a5e85d5e180327b720d371f22
BLAKE2b-256 7874a72b69cfc4d321dd6bd42cca3df6863dac99c07fd6e533dfd6c1487de427

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.2-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.2-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.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 982a481a6dda42801bc6498ed22d5a5db4de50dd7594b6e5ad3ad2d1c63f3067
MD5 bcb28487a0384f4b97482c2de47644c7
BLAKE2b-256 bef3fe1e55ef3a3ac34a9fa2b92aafd1e2791a24de5f1096672d42f4fe8eedc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e12627eda4ced711bd204899a73eb0b9a2120e686328a5fabbda9e3044e36ddd
MD5 7c3c968b01b29e745bab0d38f627ccc3
BLAKE2b-256 206dcd10c9d12e41d266bbf1280b20c31d1bfcb0eac9d3cdec1d7f43dd680d97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 976d2da3707de33ff569436514d2922df0603f09813965eef512e1d78dcb1d97
MD5 430f98ea53fbb321fa1b87b328b9924d
BLAKE2b-256 e36f46ba862798d8c5fece147ef411425f93f3bad7495c98ae53f90182f2f666

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 02d86f7a40b6f1b3e2b03c654ae5bb054a6883a04760d88cad1363f18d93fa50
MD5 4c21bdae02010c31fb62ebf2f0bf9ea3
BLAKE2b-256 05e35e3b9b9b9537624f2d59fb4b3fe7a037ea1cc69ec8e5b89d4e1f55892c96

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.4.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 429.3 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.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 7f6662ee6144697c038780921c38cd859430c48739203129fd8f0d663082af4e
MD5 ef33159cf9bac0a41ab4eb745c48d22f
BLAKE2b-256 32e6a1f711d7fa6e9d9c4889887f1f16215df2f7f8550e7be3d2fb2e4f6b1e08

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyafv-0.4.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3b3bc0bdae29877cad614bb8944e45bde54379ad8c608b9b69601570c68d0320
MD5 f44f807e8c6eb0de434f14dc4f10413d
BLAKE2b-256 b8179404ab67fd74752f9814ef340093dc3aef9220c7e1ed06aa5e7843353ad7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.4.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 801.4 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.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 29dde27cac5696a3b54d82509f2585ef2fd6d4cc311f87d0858777b63d494faf
MD5 c446b9c7222ef596bbcc0bf8bcc7f536
BLAKE2b-256 7449bd1168f4a494a4e65acfcde42378a848858978f71fa3a858dc5073dfc4bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 177666866602ef532a816a7a4a5961cd8c4ffbd1a421042057aa92e88c4b9b1d
MD5 b3cb15a5f2fec2eeb2bd717f3d6670ff
BLAKE2b-256 e2030f8d2b55b8b26b054886f2e2c5f13b6cc215d7e7e79f6f7d6c174886ed14

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6244ca6f15b22613ae4cd2b303866e68657642bf5680c0ef2773a8250af1f660
MD5 1faab18394520466a67424a5e5c94515
BLAKE2b-256 90237306818ce52038d92513281d11c974f75ab3e954e9b122b8716f753aeb59

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.2-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.2-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.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 de8038012f3959a1f089c9f4c0b7dcf8fca580294ca98c1d4abb28497c0fbb68
MD5 ad295b880b78656f8ab00d063c7e288d
BLAKE2b-256 ee54a929a3bf3bdfcbbb9d5eb790d014a2faafd7a370e2b81c62ee1c225a1457

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c0bc71d620144a5d1c210982d2a9c62f1ca0a212e143764e614661d47da0c322
MD5 fb77b6985d80895dac47f5b2557cc1d8
BLAKE2b-256 9720f36496a9d8b1d52a32506bb703f89b7ffe7b6d6c9ca5684c5392de274c0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e962fb44f69ee337f7b68dd399ba5c56f19f47be5afbdb9c0ac6ca2dc9647d7a
MD5 4aeaf062b11bdd7ca9cb765cec27a4d5
BLAKE2b-256 a4bc1d1e7a9ad080f4f2b49b669117d6e6a1fe8082756c22380460967283af1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9847390f99f6de5886c8d1a81fae7409737d5c07452c5367574cafbd57a0a3a2
MD5 c6a17791a57a22c4ee4b943c8f661754
BLAKE2b-256 90abd84817c135ead57a4bc5d036de47541156407c6e436b7b98bb8a960bab19

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.4.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 341.1 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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d08ea1e64aed22e5e833d8fdff70f47d02b31e0aeaa72c64598fde016c8feaa0
MD5 de30a80aa4da7de62dd66e57042361b9
BLAKE2b-256 09a912a53ccdac965bdb2ae9f0a7a5dfee9ec63d02a3d359f90502893831a5da

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyafv-0.4.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 34fc8d6602ff1d65d95578decf4fb75a27fc1aac14daa737ab9c7d0cafa457af
MD5 9b31c76dbe5345f1f8e9edeef6f8f0cb
BLAKE2b-256 ffa523d33600b4b212c8328dd7e17ecb271443c483ac45d5560cb1076062680e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.4.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 612.6 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d254bc20e1420cc72aa9c80df800bda8ea6a58ef61bd8a40a6a59f3e80d8d550
MD5 7e91f8b33021d929b10ccc00d5889407
BLAKE2b-256 7dc1f9fafa88e57fa6797b851464142042e91eba44cdc3eaf5d63995dfd4b233

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c19518baf74363ec7c02ce82542bfbdface5673bc45ca8e1c6b77968ac8f55e
MD5 d454cc9cacb79fab35af415dfb7bf7a2
BLAKE2b-256 cf1982d72a2249fcf8aabb955523831a7f6cf5f272c86580d5c00a34c7dcde38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e17672757b0e26f4f10e7d5a2e55a1140b4a9ac28d1342ae1810b60387ea0d6
MD5 e0f7c77aecfa356b2d510ae66c8add25
BLAKE2b-256 5343f16353fd25695681623b6fc807b5dd8436af5fbf9272f4843ff0b7d48581

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.2-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.2-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.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c3438b6bb8eb9ed4e411b765cc11aa69c23c2977a2fa92b0338d34eb2940b15c
MD5 dd87170865b8cbe67d95a908e1502417
BLAKE2b-256 8a01e546db159565adc2528f7c41b76f08ed99bb234009fd34dbc7e293c48e73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2df11eddeb5f400c6a3fe0617c4fae4ca8b2c6b2fd38dd6af3d7ff6694a88c80
MD5 3519d3a6bfdd66917cf93ee7f39584d9
BLAKE2b-256 45ddaf1ed755ee7c081999eb30f57a3a24a55d5c79062e515622bc36d83c0277

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00b3ef111f29830bb132c701b86e3ac52b98eaf444de2336a446ac09d628a16f
MD5 6efdaad409b410dfe465a6d9d731368e
BLAKE2b-256 afa12f9678dce9ed9e1a4be83bbfab1b30d0cc46d648bc880c02c32e5fd206d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c7aeeae3f71db99948d2ff62bd50f58f045eab72cc4abaf4591b12a0f6edbdcc
MD5 96fcba7e496dc3fbcd6192e089222599
BLAKE2b-256 5df94661971826cc37d92b2382cc71d7c7b30655ea381ef41ca8baf5d946c91e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.4.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 264.5 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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c1cef6d79dd2f1d6a4c59c8664964affc3b3c06bc657e992d85cb40da66c28ec
MD5 f530c54628decd7ed1c3a78558806957
BLAKE2b-256 003cb174ae8520fa5a71ebc9f1a020e8799d8290204b2f1e8ee92bbd888fc71b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.4.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 536.8 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c432a24f64eb250aed2a0eb6f5a780809e898e36715974a7b3c561303f803168
MD5 aa1802f899f7afca860df1f6907026b1
BLAKE2b-256 58480cbc27b55f76d2f60ee6962459a7fc1d98f55a6d310d4cb7fa6b5f958166

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.4.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 446.7 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9952b84fa49b9d5d5130b4898ecddff67efb0dbef222a6256d6f2667bb0b1c37
MD5 aa9146c69a37293658578ca542c3a0f3
BLAKE2b-256 f0bbb12960472f86958498f7da96ef664ac822051dba8753dfa195e26e9b690b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9dcde1a65d02799da9c7f049cab7074d4b94a31a99cdc1486887cf30be7be82
MD5 1a24b5af89411abdc2bfb8a489a5eefc
BLAKE2b-256 75afa5056c4a67b8c949a70e24b21dcce2f98d29c876d82b682cb3df5f051a9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 275736c5e3955c695c67eb4ca686e13e524445d52ce97882c798416a3535c36f
MD5 b741054156a3b013ca9f32cef6f6f5c1
BLAKE2b-256 def397fb81d5374812e06d4730ac1dc1ddead2f4f42e84312919aee6e4217db4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.2-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.2-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.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3437b22b7bbf7a36e3fde51128a413529c08d6d4e492a4b65373143455935a0e
MD5 46cbcf18138af0afe17ad306c79ca5b9
BLAKE2b-256 99eca7a8a44dd5aebf11a3d8ee6cd343acc9ad950879e5d99c410f2b51aba7ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ff1aae9491cbd164136c6cdc1cebe7f676eab104d00372415e0dba6d0768b0f1
MD5 078b33a0a69f68a0abdf2d28b529e88b
BLAKE2b-256 d00e6be7210a70be2e8bdc9a70797e0cfb8e124d7cf873dfb7ebe4bbe8f9036a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0df30d47fd60834c6cbf0dc9b1319bd6fba2b3a4a1798f4f82870d0af602e24b
MD5 11165073e83b2415502dd7cf91dcc821
BLAKE2b-256 20b1617500702d8a22b03d70dabadc4a9994fef822a407f8acca3c1c7dc8daa4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 05d581e0fc841e3840c0d81b9dac99d37f7077cfda5ddefe94bed0edbe921881
MD5 1594558da3545656ba2cdcfb6cc0262c
BLAKE2b-256 5acf27b8f64834e6d9b6d63562da56cb4c71cc99915de64d247bf89e2d51c382

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.4.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 187.8 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.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a8517add9bcceeaae0d5d0248f7507322a8ac7aeeb37e7cbc3daab999df02f5c
MD5 6d9bb1441238faad05a06ead8febfb28
BLAKE2b-256 4fc3ac19cbc79eb735973cdcdd0a5e0ef0e8a4e482acdc3fc43452fcb8ddb3fe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.4.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 370.6 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 51f004b3f581be566868395e9a2cbc3198989d456424017ab43e1bb18a05caa4
MD5 4078aaa2e0d742321d2bcb5505d425d8
BLAKE2b-256 169b15dafe22d5ac4e7bf074cbcb44f52144e179afbd571dc21df80a45641dae

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.4.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 278.9 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3abf23f8dc64a4337a3a114ccd8fd21ca5d1fce00d4d9d94a2ad447ca1e1bb81
MD5 8250e5f558d501bf29a38196f65329ec
BLAKE2b-256 fb5e8018780b844fba8f7ef9461ed043e57834ceba5018fa6b325da5b7461106

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6db3b834ab678894bfd81f08b1238087cc32b753b9e53c287d00cc188075d3e7
MD5 6ffe65dc83276696f1b59a29c16ed814
BLAKE2b-256 f267cfb08b5a6da57e6771e4484aeb188b47033db33456b42a54eddd63e572cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b94102268f4b8ad0c2baa0f53d9b4dea7290677e0fa95c4ef14f8b4c96de05a
MD5 c6d1208554a196c8e24f58c601d01b65
BLAKE2b-256 872bf71cd6c2cbb95de4768a1f4f6f93aead6ec75b7bd175f93f03312df64f15

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.2-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.2-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.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 277937eb45818fa21e6cac6afd5ebaddb0d416e9c5c15fc6e040756b86230d18
MD5 b255a928bc1ae66531e75f3c42ae8bce
BLAKE2b-256 a06aa9b3e0ac9ba603f88bc325a05f2afc0e2d69d872722fe11a81fe98b8aaf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 983230bbc9f737875e9ea35e620540558ef2c302a2d88b58c802a7e1688c24bf
MD5 fb072d126c924f27ade50f1ac9b0ad04
BLAKE2b-256 bd08946aaf3933db8bc8893b23afeff1d55120494efd726de9e3985bd3fa4e6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cc971b3d3d2937fd3e5107b25db845f5e13307230ca83305fc33b6a0c7f8290
MD5 f752b5d419eff00537e065a140c99144
BLAKE2b-256 c427c9c0ce2858bb422c58656f466b31be1ecde612aeac633081aaeb48a88e5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 86fff6373193abf998234219bb413d287b6f3f82ffcbd7622ff129866e5a6908
MD5 ca050d703f3c1cbe91fe1d6e9cac71e9
BLAKE2b-256 a9a7dbcdea5291fa5912d67f66106211d6e42ad63bffd95d7653f86394c9cf2c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.4.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 109.5 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.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 6ebd53921e5a8f27248f6a76b8ab4df6a5ea7266150138851c1d3211c1bb568e
MD5 1a620a34bddd2fd11e0c32f8380f786a
BLAKE2b-256 71b3fd55fd640c3f3c945378955149fe0f26b5cd39a30219a36cff9c3ddeb114

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.4.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 201.1 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 92c24dd1e480efd3e46d9bdfcdeeb8cbfbbdf0684d8344ae49ec432645b31a22
MD5 cbbef378bac42cb4f42ed6f800cf8424
BLAKE2b-256 643b588134c3c6a738fc899b9dd7b57615021d3bc314d59af71d6c81a00b7f58

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.4.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 109.1 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f1ce7e6cfb87c0d71290505ef19d930ccec804d7f0c05bed40e3678d65d4cc0b
MD5 d4af29e65df092d5d87b256ab0548966
BLAKE2b-256 311eea3962a6b414d2447b454228e72f9256e2f1b9988fa737421897d9397c28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8ba79f2334f952e04ffd85348e839a0ef2fe3430ff24e2d121d6450c9a640e1
MD5 7bcd36a79b286da89ae53fa2330002c7
BLAKE2b-256 3e55437c572d42bb80b2df5e8364a717d9b95368142041f77b5c92619a8cbc7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee039cdad6d3813b4113265812f0a22d543cdc9c4d3820c52536918d9e2b58f4
MD5 ed6dd352e162a24538d8e5f092077f9b
BLAKE2b-256 53398540f04ec901642522d6dc541783a2632c28de305f9f0831f97ac2b205d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.4.2-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.2-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.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19267fe13523693660f757688108f1dd69e87a31808a53cf2d59f88ba5dc43da
MD5 fe2fa44a649e0f77a71e3542158693a9
BLAKE2b-256 446f525f34a590ddb13bb450a6d8f451cded2b39d643dd3728d60b068c4d0eea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c252cbe840769aa16ded56be7e9d669828c664504f9a2ca459243ab5e33ad659
MD5 567c23b70b6d3293f5f31825001b5722
BLAKE2b-256 be0aa4bc793785c2bc90a32de41a2239df18456a3ebe7c059b6c49e2bf4547a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 add98b7dd4e9ded566d5963ffe055f3ecbeb3c161e93070acf361d62f91248ef
MD5 2b2156819fb1a910bcb11780fe88b24c
BLAKE2b-256 4944529e61f041108416bb90fcb85fabd155c8022ec150b5d08d3982805374a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.4.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9d79a9c48a1fe62f0cf531829840d197734405f974a98e5333161887b2b7ec80
MD5 66898985fde9fb10ceb7f0560514cb2d
BLAKE2b-256 8a71e1bf68a5c1c4661c368ea8a87d5fc9287a6968db05f1eea964a667fe4d6e

See more details on using hashes here.

Provenance

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