Skip to main content

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

Project description

PyPi Downloads Documentation

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

Usage

Here is a simple example to get you started, demonstrating how to construct a finite-Voronoi diagram:

import numpy as np
import pyafv as afv

N = 100                                          # number of cells
pts = np.random.rand(N, 2) * 10                  # initial positions
params = afv.PhysicalParams()                    # use default parameter values
sim = afv.FiniteVoronoiSimulator(pts, params)    # initialize the simulator
sim.plot_2d(show=True)                           # visualize the Voronoi diagram

To compute the conservative forces and extract detailed geometric information (e.g., cell areas, vertices, and edges), call:

diag = sim.build()

The returned object diag is a Python dict containing these quantities.

Simulation previews

Below are representative simulation snapshots generated using the code:

Model illustration Periodic boundary conditions
Initial configuration After relaxation Active dynamics enabled

More information

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.3.9.tar.gz (43.0 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.3.9-cp314-cp314t-win_arm64.whl (506.9 kB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

pyafv-0.3.9-cp314-cp314t-win32.whl (883.6 kB view details)

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyafv-0.3.9-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.3.9-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.3.9-cp314-cp314t-macosx_11_0_arm64.whl (662.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyafv-0.3.9-cp314-cp314t-macosx_10_15_x86_64.whl (682.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pyafv-0.3.9-cp314-cp314-win_arm64.whl (420.6 kB view details)

Uploaded CPython 3.14Windows ARM64

pyafv-0.3.9-cp314-cp314-win_amd64.whl (976.3 kB view details)

Uploaded CPython 3.14Windows x86-64

pyafv-0.3.9-cp314-cp314-win32.whl (792.7 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyafv-0.3.9-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.3.9-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.3.9-cp314-cp314-macosx_11_0_arm64.whl (550.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyafv-0.3.9-cp314-cp314-macosx_10_15_x86_64.whl (567.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyafv-0.3.9-cp313-cp313-win_arm64.whl (332.4 kB view details)

Uploaded CPython 3.13Windows ARM64

pyafv-0.3.9-cp313-cp313-win_amd64.whl (693.7 kB view details)

Uploaded CPython 3.13Windows x86-64

pyafv-0.3.9-cp313-cp313-win32.whl (603.9 kB view details)

Uploaded CPython 3.13Windows x86

pyafv-0.3.9-cp313-cp313-musllinux_1_2_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyafv-0.3.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.3.9-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.3.9-cp313-cp313-macosx_11_0_arm64.whl (445.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyafv-0.3.9-cp313-cp313-macosx_10_13_x86_64.whl (458.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyafv-0.3.9-cp312-cp312-win_arm64.whl (255.8 kB view details)

Uploaded CPython 3.12Windows ARM64

pyafv-0.3.9-cp312-cp312-win_amd64.whl (528.1 kB view details)

Uploaded CPython 3.12Windows x86-64

pyafv-0.3.9-cp312-cp312-win32.whl (438.0 kB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyafv-0.3.9-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.3.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.3.9-cp312-cp312-macosx_11_0_arm64.whl (340.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyafv-0.3.9-cp312-cp312-macosx_10_13_x86_64.whl (350.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyafv-0.3.9-cp311-cp311-win_arm64.whl (179.1 kB view details)

Uploaded CPython 3.11Windows ARM64

pyafv-0.3.9-cp311-cp311-win_amd64.whl (361.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pyafv-0.3.9-cp311-cp311-win32.whl (270.2 kB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyafv-0.3.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.3.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.3.9-cp311-cp311-macosx_11_0_arm64.whl (235.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyafv-0.3.9-cp311-cp311-macosx_10_9_x86_64.whl (242.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyafv-0.3.9-cp310-cp310-win_arm64.whl (100.8 kB view details)

Uploaded CPython 3.10Windows ARM64

pyafv-0.3.9-cp310-cp310-win_amd64.whl (192.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pyafv-0.3.9-cp310-cp310-win32.whl (100.3 kB view details)

Uploaded CPython 3.10Windows x86

pyafv-0.3.9-cp310-cp310-musllinux_1_2_x86_64.whl (594.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyafv-0.3.9-cp310-cp310-musllinux_1_2_aarch64.whl (577.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyafv-0.3.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (597.1 kB view details)

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

pyafv-0.3.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (588.5 kB view details)

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

pyafv-0.3.9-cp310-cp310-macosx_11_0_arm64.whl (129.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyafv-0.3.9-cp310-cp310-macosx_10_9_x86_64.whl (133.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pyafv-0.3.9.tar.gz
Algorithm Hash digest
SHA256 0d739de23e6d48b374e6ac6c7553730fac29116a9ba0dfc52b71d0c17c95e4b8
MD5 0458d4819973496e165ff7c51d528977
BLAKE2b-256 523cc1fd1c71a932f1e7a7a1a55ec764277da430725f7916e660624e8378fb33

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.3.9-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 506.9 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.3.9-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 8b445636dbb990c5b2a10ed10d16921dd5f70a48264e97db9717cc2eb18972f6
MD5 06c8be1e28da41d06443d0a7fedd6b41
BLAKE2b-256 ca0a8de3253bdf2cbc0beefd90e3bf08a8c11a1b3e9ab832c7e206a1054744bb

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyafv-0.3.9-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 cebdd5cb0679efb79940c53feec038ae294ddf8a3df95a68e8d21511953c652d
MD5 b9c65b7d8af96d2421868d31fa0f4aa4
BLAKE2b-256 dbee90ef2fa0ea759c5f1b6ed01a65ea3d4247ad3a5f7bf2af49a953ab5cee4a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyafv-0.3.9-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 23910c0207ad8c3c8ffc36e43ddf04dcdaef519999e821af0d607a3c8d8286fd
MD5 5ee84b234e356f1cc4b21981b821918f
BLAKE2b-256 efd42c2ea3919cef1e51e0e887053b72a606a233ccbbdae7897c70a1772f22aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 495ed915f12ba654de9c9c1e0b8510081fea7a4d9cca487658380c533d54a00f
MD5 b4d0bc4fd39c97111d1223fc04fe9c8d
BLAKE2b-256 bbd34a5d5c67c35c7812aa8e77479d3ac544c5f441ef73312bdce2e5ff5eee2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58937d9f4b5114a80ac627bd58739fdddc909fd1ba38a09a4805089bab6712eb
MD5 de681a02324bbdbf797ffe844a34a395
BLAKE2b-256 2c73639c8d97844baa3f29fdc9ff5ad37b1318773fecbe0cf922cd3bd5ab2005

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.3.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.3.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.3.9-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9a55deca8c968e9946d5064bb6c82ff280403f1e0618c0bd7023eaf482c38b69
MD5 e1badff1d97ecf4ea6eda0db86f68235
BLAKE2b-256 e60b787bbda25dbb1e65d2fdca34fa1b441eb53fe63aedfa449915d0bc33c367

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bb783252ee2658d41793b7810a07de9f5bd9f6c05a4ec5dc23ee0d86fc35f89a
MD5 a45e05da466645d5c06794efbcfde698
BLAKE2b-256 e257457fc06594271ca130da10a4390bf575fc5d01a9f8729e9d20f66fe2638f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b214ffc44005171550ed798dd95d65ebed32ff27440f48e442950a1fa3abd81a
MD5 8f0f2e294d58426a51e2277dec5aca40
BLAKE2b-256 d6a044e830f62896b6aaac740af20db942fc192f357c82523eac1fefbfdca65c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 11f6903508d9e5e945e784578d3c5d557adce76581477aff5fd6831c13284f85
MD5 11285953ce7c5ec85635fd732f1b968a
BLAKE2b-256 878f66d46900cb5e91e7548b8373d39859f1f139f5eb216899d7188649244a50

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyafv-0.3.9-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d0487f332aa030523a8218e416a65471e35c9fbaf0e190cdbdd891deda21fba2
MD5 d3a92112264c4dc6a7317513f0b878ff
BLAKE2b-256 8adbdc0e782d80ff9151191e7ede435922e82336e1c44e8d64a4f79437508f02

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.3.9-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 976.3 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.3.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3099c195d0fefdc52236d16e5dc6996ce1ec7a49280aa6628bd0948f17a24115
MD5 c201f210bb81d98c60ddd6763b87e181
BLAKE2b-256 08bcfaad1ca8adb0249dca50cf837759c0fcd6b00a86d22de0689b49cff77949

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.3.9-cp314-cp314-win32.whl
  • Upload date:
  • Size: 792.7 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.3.9-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cd497d2ef216fbb59a97efb682eccd0a853f21d86f208d940239b172d2e82f84
MD5 0ab49bb0581f48e8787377b5f7dc2b99
BLAKE2b-256 b56367f197fdf4ab9af9707eb65fe9b069d3a1f9a1c9c6b8ae4f3da3d76044df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb7b31c8f1a12f2f6c4e66cbb1393d338b5648bd3e775dce02287cf5b487a66b
MD5 bb820e87492ccba86a2da48f61748737
BLAKE2b-256 c441c10098534b159b037375a776ed4b34e0726ab91e1f629c00fb8d32e41443

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b05dfcac305107ae11bcfcd799eeab8b344dd53556c10c1d0631929b1ecf6965
MD5 ba1388dc2a91ae218dbd14362c32154f
BLAKE2b-256 283f3543b25ec678333e11ac7edb39b14001bc92483d57cd5aaffff96bf0e597

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.3.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.3.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.3.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 706f0cef8e631ad241ffc62b557b7b70c72946b5a78e9f51857db618439c668f
MD5 920d87e7c62508b59605850cfdad4f9c
BLAKE2b-256 93840b35fc9ba6bcf80f8750678c57da7d824cf2e93546e8c73f17017d68389b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7f33de9694e047a869d569d5e0d54c7fbc22593187ab4abeaa4d6e6d5c17e2a5
MD5 3d7cb975df7d054484c8517e1516c520
BLAKE2b-256 b675d1521afbd0dce2106ded214c5181e8ef19782faa33b09e3418876f4a4e1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4da53dc59e27dd3068090bb3179b0e160e0468de88bbbf16ad99bfe2f072f81
MD5 3eb71ecb071ae577e77b182344512c09
BLAKE2b-256 18f6634fa9618d64884bc113050a90939d865104102443a7737375ecc5ffcc31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1b6443df1d4dd999c26e7b06f8cdbde29f083708d26208d2dd1099fb78ed1df8
MD5 ea545d1341af8ba1412938362778bf8b
BLAKE2b-256 fbed4afe2e947d2d9d44346169f1180aaa72919c43f06e8517c843e4c3329220

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.3.9-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 332.4 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.3.9-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 25861cf2824d424b31d834fa253dca22cc808716b672a838a2a408bd67e5bc7f
MD5 a5c9b5dd872e210327e7476856d8e160
BLAKE2b-256 77114084719dd38337a3ee2c96173f4e5987f97c853dd9292b3129121a1b2e5a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.3.9-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 693.7 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.3.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 17b2cf7e70b17de4fbde804e6c9bf5af415c472ae95d1db89f3ede88b63e43c6
MD5 8ea7b04075b6a3e7f27f839343312c08
BLAKE2b-256 65a8f54a9f6ac73c995aa0d092d31a8152a4f70c16fb11bc0533e3dd19b774dd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.3.9-cp313-cp313-win32.whl
  • Upload date:
  • Size: 603.9 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.3.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f5725356b103504e85b21ac2d22b00ce13edd95fe399a1e5d4b073765a78f8b4
MD5 1588b3df6a5cf2360ba07f05264aee19
BLAKE2b-256 e57faaee0452a87f12c1be36773634fdd75d7057edd91214d888dd25fa6544d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 768bce783d8c7ac3c24679eedf24287dc3bc6eb43eb6701a77948204ddf28396
MD5 01cd01246c813e119977ea7466739519
BLAKE2b-256 40c10ca152c1be3526dc5fca52cc2bbe786d2e194ef65ed235401adf6a9c4a93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fcc29017588a7dd5aa48ad73422dd62972c55b92946124bee07099d121b136e9
MD5 62dbf3bf44c75a2011d01fa725ef113a
BLAKE2b-256 b1f032aec0ad872cea5c185eef5fbdb801cbb8ce34bb18ea075c3c053bf7aec3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.3.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.3.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.3.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0f23449b69126845d3d0690d428da8267637418c2c33fa27ce9c6f8a659f2164
MD5 eb4d470e8d1834664ca6ba2ba968f241
BLAKE2b-256 31f01b7eb80e7da587e815a73c751db1dd8e175b31ad424dc6e836ad35bd695a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e33ae180fa6ce51f16a5f065c1362990448b6dbc6fedd2dd18d5761b22d56ab2
MD5 f25dbcfe1ad74034ceecdddac00bcdff
BLAKE2b-256 052756e0b345ffdb2008c18a018e103559235ad7785206f3236c5a2a55fc360d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7299d641768d804e7ccbf73f47ae95f4d2a3fc2fd1d3f24b7dc2fd8fb0c74d8
MD5 15be9c787fc3ab555b4cd644240ddd1a
BLAKE2b-256 f6d7e3be1af4558afd5cccca9a4cbd6fba8b6d67ca552c5abf28ecba9907d94c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 488c35c61c4daf2a6e26abff34bfc5e82150cac029c73bd5cfd6eb84f5f172dc
MD5 58459fb052b8a9f24ca4e7ec32b46dd8
BLAKE2b-256 69bca15d480cf471c87e5250d8a0871474de961c776c55e0aab53671851b2db9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.3.9-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 255.8 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.3.9-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a5940535c6762e05e985fafdc02eb0dcdaf0bd06fe6062026e5f3028f22abee5
MD5 497ccd6f2d87d2e3bae0eed28b11880d
BLAKE2b-256 67a72bb335bc59791a1f5d8ca68f51369b4bf88681f49338446f4991dd92cfdd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.3.9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 528.1 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.3.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0ec16d9cb2b04a5c0b84136c36336e64dab02c382ef32f419e4a43a15307bb1f
MD5 ce21b02070f3411fa7d5b70dca884b87
BLAKE2b-256 e2fb40aad1fa900ce7e41d4a83c9590334c0e6bc391e7a76f4dc4a6b7b564797

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.3.9-cp312-cp312-win32.whl
  • Upload date:
  • Size: 438.0 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.3.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e265701759853b898ab73dcde8d7b39a36f8cd9f8ed4135828a718c65be2bf52
MD5 d75f67dc74b6ed88dd8d5c8e1107fe01
BLAKE2b-256 38624ec1d1bdbf999116da547dd5765aeb39e3f95645d7782713ebe873657a93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6d8bb58b9676ea836220200e5f646baf45bb89bedff09fc174dd373d72660e6
MD5 ea0f73edeb4fb8c74df0b3a24f964eb5
BLAKE2b-256 daaaa9124b56a59e35fcc9689439aeab39ed510c3a4110199b1c57025817be95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ac21f7da20018962ea3ed5c87990ded970215221ddc9cb0ea481d353744d86f1
MD5 0016d7289a35425b31913441618ca1e5
BLAKE2b-256 96f7edce7bdfaaef5be487e031654a5317cb41a8d2b68a4fa62815d04c6e34c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.3.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.3.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.3.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3c11967904efbf49500dfd7ebe93bf0d9645aa650e99a9e6856636ed9c3fd646
MD5 0e761b9816f590b300bf271d459f5543
BLAKE2b-256 7c01689d88bab78c403e43bb062c9444aaea26af2d1cce48bdc4a37514163bae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d63ae081c2394b17ae362b8ecd5d7f6bf692327b5216d69b06a53932b5f46673
MD5 3b079820e71d4e0f9bcaa674b78b4199
BLAKE2b-256 abe9d6899be23fb8ec192c742449f37bd799b8941e17bd0be8a6e47ea42346e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b0c95154e5bb898f8cbdb7a9b119aa94184ca81dabcb00e93db5e74050ac49b
MD5 bde905ab8260b689093795a72d292415
BLAKE2b-256 b346c5c0500606b4977db4203573f0b73a2cad9b155b0a0366170c679ed8828e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 612890f01d7c9e6dc0861bf9b5bf01a12be5efec2a63714c96ca926a5db1e53b
MD5 a9a84b25fdf775f0663226a944cced24
BLAKE2b-256 39678ab88c7fd4ed42427e15030023e06643c858afef279338861543a30d9ca2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.3.9-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 179.1 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.3.9-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4eb719b69dc65eac82eae0fe0be9706af3c0c001485c30941d46757f714ac565
MD5 ce5f1efa7d61e313bf684e0090dafffe
BLAKE2b-256 88d35c7500485db571f64d431e6cc4c4daabf889364f519994d0fbc8871d4270

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.3.9-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 361.9 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.3.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 13c0b8ac393fffcb52fa3bf454e9c29f35ca7628f9ff4eb43751c2e6315cba42
MD5 ec48e92e4328737b2d676600ad4b2557
BLAKE2b-256 3fb1091f34a61fd0972bec9b30276c51b93a6bde1530ea7a3b420e58f3086e0d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.3.9-cp311-cp311-win32.whl
  • Upload date:
  • Size: 270.2 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.3.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3941ed9cc452707ec65dba92e4681afcced3270f9d6ec1ac04af9bf64b68238b
MD5 ada958b7bfb5a75516799b176e6c18e8
BLAKE2b-256 8c19eb8ec5035916eea359077731654385ef752d16a92b4c6075dcc37eb93ef3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb0353bacb4ca7462a397d7a065323c73b86c2bde7a8d740ae238c59318b71fb
MD5 36844380a1867c527d0afc3bb361aa8e
BLAKE2b-256 b624a9dfe6111c7f21fc6ee52eb139791a2e7f988257cc5141ac1b67bde12a31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26fd8ba029dddf2f20536fc420257c4427562c6ce74a8d76733ca4cf6bc2e0b6
MD5 83210c3ed3a35c93f07df76ed1a5191a
BLAKE2b-256 c156f789a696a69d0fa885328e90bd073260cee845a35dd6f9b4aafb6732bb77

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.3.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.3.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.3.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7f14b6acd0682d43ce23c21e1f7f8ea5a72cbce8a899182880e2837f24bb70d7
MD5 7cd4f22fe4568726cc1241f43321de9a
BLAKE2b-256 75c3454d39639958a2b24c6a20e758613744a1eabf0555838a5493e535f5174c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a3bb0f71a523675e5573130feedbb1c21e2298d215c00ecfd1552338d4f1c8b3
MD5 a33b72553b33278b5e81dacdb42b39c4
BLAKE2b-256 7785412a502bfbdd9fa41bc32ae5003d5b62fb5952a8001e7cfcb9d0586c838f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0db51b004dc98de52e37fe78685915466a2d58c2bac44568f22fb488f689faf
MD5 874f1ef4f132b30858a7b70a336ff58e
BLAKE2b-256 12be3a83c2cf40854b30f75d08e226c2db7c03e2f159fc84945d695931249045

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9fa52f5376616e72080d07ca347ee35ec77f7e167e8b465c864d8e07d50f866a
MD5 4080bf50c6a73cfa010a55c2be607bb9
BLAKE2b-256 342d7002f3e6d9597bfa6714cff26e72ce6821896f6018f9df49af6fe6a383f8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.3.9-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 100.8 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.3.9-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 17be3e4c537770c618d8f1d3cc7efdf9efb029739d152fbb3d7b91a4d55f4d80
MD5 7f1c0353d2bf8112a7352a7409e7a0d4
BLAKE2b-256 403bd6e14b60abb4fc71c0d633b49b91f29354b48c91de3889fc2c943df3e81a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.3.9-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 192.3 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.3.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 97197987427ddf1593663c87cff36664c179f839c3f577a52edc10429c76f6b1
MD5 63c6356bd94f79192949f052053cb921
BLAKE2b-256 b986fd5c3739dad47487aa3c55ba236e265c1a7c852099aa110117ce9c3fa118

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.3.9-cp310-cp310-win32.whl
  • Upload date:
  • Size: 100.3 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.3.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 436bc8c432a84299e155a4df35e185dc6a7c81f2b801be59953d1e9d29160137
MD5 decd91d95297fd5ca36dd882beb63148
BLAKE2b-256 ac99717c80fc81f7b1944055fcf5cafd81295feff59c6a8f6f14174d3fd2964b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 845af52efa763cadb4f3cf7e4bb6afb2bc09228f74db895c4942a8a9d301ed91
MD5 90cdf52146805516be4d5b642b46fa57
BLAKE2b-256 90ca33c326722b49172bb372704dda96cffbeebbde049e6a56eb06fddfcdbcc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 352024e4f0ab6839aef2c523012a3c00d675109aec54be6d0d396e3dfc3b7927
MD5 35ba44581060ca5f0343f5179d479f83
BLAKE2b-256 53b547ecdf100469a16699213a4f9c654a92ecae2ff483c1e781b798a75da549

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.3.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.3.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.3.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9684faf0411184021acf14a6dd00221a9b549a9ed0af2bfbd27b3d5a8e83f4b9
MD5 3f7269ff60428a995d0e446b6a282cdb
BLAKE2b-256 6c855fa880e8d17cd43d058080b9e145e962e3e49149007928c0c025545b4cdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b5a829b0135e2feb4393ac75f0980e826736938cf0bd8caef055e3431fbb646b
MD5 51ae9cdefc630686ee19dab275773763
BLAKE2b-256 02eefb93125b6f45d120153628154f8654b497543d9f9004e645d6b29e4e32d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c248594822fc24025d5fdcfe7e2a11276cfd6bd6306537e7b2423f13aa6dea4a
MD5 9b96b39ac933605801a2cb83763a798d
BLAKE2b-256 b99aa1280058ca069e689bd33df7b500441d8f0eb6a92204a657b8729351629d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b42d12947a5481838743d5f0bb57939d471235c14c2deae1bd2f79c02d87b757
MD5 1242d7187b4494f8b053e1653e9fdc7f
BLAKE2b-256 594e082fd447bdc3a301a9f7efe17dfdc12009bd9704ae237541f05a6ba81740

See more details on using hashes here.

Provenance

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