Skip to main content

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

Project description

PyPi DOI

pytest codecov

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

Installation

PyAFV is now available on PyPI, so you should be able to install it through pip:

pip install pyafv

Python 3.11+ is set as the minimum requirement.

Usage

The following example demonstrates 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.

More information

GitHub: https://github.com/wwang721/pyafv

See important issues for additional context, such as:

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.2.tar.gz (34.5 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.2-cp313-cp313-win_amd64.whl (121.1 kB view details)

Uploaded CPython 3.13Windows x86-64

pyafv-0.3.2-cp313-cp313-win32.whl (107.2 kB view details)

Uploaded CPython 3.13Windows x86

pyafv-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl (718.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyafv-0.3.2-cp313-cp313-musllinux_1_2_i686.whl (691.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

pyafv-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (693.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyafv-0.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (661.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pyafv-0.3.2-cp313-cp313-macosx_11_0_arm64.whl (139.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyafv-0.3.2-cp312-cp312-win_amd64.whl (121.5 kB view details)

Uploaded CPython 3.12Windows x86-64

pyafv-0.3.2-cp312-cp312-win32.whl (107.5 kB view details)

Uploaded CPython 3.12Windows x86

pyafv-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl (722.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyafv-0.3.2-cp312-cp312-musllinux_1_2_i686.whl (693.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

pyafv-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (694.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyafv-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (665.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pyafv-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (139.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyafv-0.3.2-cp311-cp311-win_amd64.whl (123.0 kB view details)

Uploaded CPython 3.11Windows x86-64

pyafv-0.3.2-cp311-cp311-win32.whl (109.1 kB view details)

Uploaded CPython 3.11Windows x86

pyafv-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl (740.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyafv-0.3.2-cp311-cp311-musllinux_1_2_i686.whl (717.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

pyafv-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (714.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyafv-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (694.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

pyafv-0.3.2-cp311-cp311-macosx_11_0_arm64.whl (139.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: pyafv-0.3.2.tar.gz
  • Upload date:
  • Size: 34.5 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.2.tar.gz
Algorithm Hash digest
SHA256 286b3023be02d8f52c71d14e23932148c6b9f793bcd0b26a3a205eac547d1586
MD5 88e49a8df58cfc410e939c286e17a309
BLAKE2b-256 67df4bfb34746b9380a3d2d5a95ff84d4ac6430d10399dfe41a81b6b7611f262

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.3.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 121.1 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3bbc86337ab46d132f4035abed9464c8d998363325fd19bdefc3ecc4807b28e1
MD5 2d4b2aa6d5af0e917ba41ff413e7ab69
BLAKE2b-256 5ae93eba7d8994ad2538a7140b82380080f22887b1931460b7d3929354c31723

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.3.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 107.2 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 18a6737ea4e4a223f42bdbe26d99fe0fcfb2b8ebcf9a1ff37e913b80da732510
MD5 21a1213b2538aeaccdc5cd19a0d1b8a5
BLAKE2b-256 957820e749823453b9a38a85e7d971a97dd2904ccb7f03bf8631bab79596ec75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 138c0072c2bb8e738a45bec8f5788035424b19ff9e5e67abd4349d1516769e84
MD5 25657a6c6f4eaf5f6cf093af8ea2177c
BLAKE2b-256 ad47f809c936bf6ab48b28559bf78ccf467912ce972cec19fa24ceaaf84957ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 af4c546ccad41e085ed9e65240af0846b61e5ef22eba03358a93497b04f06e40
MD5 a1569e77f0153a282855b671019582ec
BLAKE2b-256 6723e3e73bc1c3ecac0018cbd974e3c9b2d4c723e25c70c1f2a8dc966cc37016

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.3.2-cp313-cp313-musllinux_1_2_i686.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.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2383423455f644ed0fb5cb2f062ad5119c29112c16310dbe3f08a90241eb0bb
MD5 870ee40108e59a3876cc2c29786178eb
BLAKE2b-256 edbacd47129e389a384f693a29b7b994695637c13885bf211976300e55b4d5e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_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.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyafv-0.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3081d7b3fb408c0c4c2f1d46b4df7ea4a54fa1606b19425a0fa3cd3cc5f6e353
MD5 f2cf6fe084ef496ee2861391efa6e010
BLAKE2b-256 d0701b1119a86335d9d682311f79e6d78151bf70ccef69c96a0d00d27140f3e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyafv-0.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28d20a7e149db4b03f9ba42b644dcce208810f1d9fdb4709efeb9d74a78528af
MD5 b51fb78a0c847e44e502acb4aa9a689a
BLAKE2b-256 88716436b4a30d0382be8d73301b120ed54e29fd6f5b35f00329130144a05d9c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.3.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 121.5 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2e89eeea746775e28e3592f3fd3412da70c153d9e4c39ec77c2c66b4d993ca31
MD5 4c74ad237674141b7516399fdd1962d2
BLAKE2b-256 7da740e75a0154ea70d16d36c4ee9a545bf5227e7780921aba7972edd48d67cd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.3.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 107.5 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2afe0ea6aca75a0c21728df516499e175a6ff8162fa15ca56689d07a0c4f1c3c
MD5 33be59b773a99ad3fa099f33340feb94
BLAKE2b-256 31ec2835cdb2ce1f01d42b4525b4461835fc8e77ba1ca3de5c5109a2f887e605

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f2b59d729a1318236b3df529a8203d2f2b207386a6b8277ebebcb16ea7436d5
MD5 4022862b747fc29aed416ba45f62d5fa
BLAKE2b-256 983ae536e6332e680a81444411b515e514346a274661fc157ac44b7d2ef706dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 14f5956fb7f748438bbe1b4940c71610381812b76569eacd33978cba2093436d
MD5 81857cb9409bc1bb22542b71eb1e25ee
BLAKE2b-256 c303e9e2e5a88417edb454f94d7297d8fffa8cdb1035688c15c04c685e049d35

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.3.2-cp312-cp312-musllinux_1_2_i686.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.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3bcd1bbb254b271845bc308df81075cbe83c3e9e878e33627343c13076e6ee81
MD5 882694724ff083741e9ee6ce1a98cd00
BLAKE2b-256 89acd39ba2ac747de09cfe8ae8d8e08f22d4c799d2c7a34cfe00ec238a5f1926

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_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.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyafv-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8babd01469b11c58f176bbf186368d1bdb6ad4802109dafef8d344a304745585
MD5 6cec13e7d6f9a329c3d0a24f5fd03b34
BLAKE2b-256 b9bdbb4479da88faca72c2d72c48f673cc87b437057a19abc598db64030d3429

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyafv-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e10064a530c005b5aeb6a5939856816bbaca35596378f0840db70fba5401b2c
MD5 98b8d53a67384c8f09f22aa84853c48f
BLAKE2b-256 12cd8dc563f8e251dc393791ebbaaa029358194b59e333dfee6c88d8192611de

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyafv-0.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fef474386ae5add04100c19b71d49b36d34e90670c13f5c5131efe42e40a91bc
MD5 cf3e635432a34cb324633f309009150f
BLAKE2b-256 e44d562f33935a923afe471b3624df7bf6b54bd86760f268c311229527af68a1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyafv-0.3.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 109.1 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 91957799cfe0f3c04805fb3aa3033da43634732e4f0237d13009838ea0896062
MD5 6cb9270e8667f74c7f711ce3c87217f3
BLAKE2b-256 85d2e714c1384baeafb64adca99db5240981a5d249cc205f9fa3ae9a16b21c06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01d1246082629a5147b101cbbf8bdd23c5f32eb8c3559f290e7a3ca50327cbba
MD5 196f98a9a646195fec595340cf5776bf
BLAKE2b-256 d850efaa8038879eba27a73dafe218a561f12678493bfb2032c3774d192799c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyafv-0.3.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f39927ebf80054ff95fbcf012013c38a1ef88f24d0040b209a8b45352b715b28
MD5 4cfa626e169cec007dede27911a2a6a8
BLAKE2b-256 5825236ebfa83fd341f58b0e5d9eaaf8e828038b3cf071642fc3159dad8c128a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.3.2-cp311-cp311-musllinux_1_2_i686.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.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyafv-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44886bba4395766616287a83b4c6f4deeebcb6714d9b07c044c142362f45042e
MD5 0798c956f797899fd0bdc142f66cd427
BLAKE2b-256 114b836160c17380cf3aec924b0eed4f765daa3dc2362f939df6bb1cc03131c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_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.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pyafv-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dabd3f500bc318c6218b124d55574a643e6a8a36dab7567f2d2b7d30a483f945
MD5 213a5cd03771cd95ea2f5fb7b7975c20
BLAKE2b-256 ba90c37d7bf0e82334dfa3405ed89e1e6a17e34ff2fef9cb069e7ef8f52a04ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyafv-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyafv-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8892b3d6befb829385884706cce8d617548804f94df4fc0ab49e6b39e15d443
MD5 9e020f72dacbc8d26cee157258b6dc7d
BLAKE2b-256 daf3734ca09a32e2ad4c890d4ba9b07889cd62684b154520cd3c3b3f2900c5e7

See more details on using hashes here.

Provenance

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

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