Skip to main content

Cython bindings and Python interface to FAMSA, an algorithm for ultra-scale multiple sequence alignments.

Project description

🐍🧮 PyFAMSA Stars

Cython bindings and Python interface to FAMSA, an algorithm for ultra-scale multiple sequence alignments.

Actions Coverage License PyPI Bioconda AUR Wheel Python Versions Python Implementations Source Mirror Issues Docs Changelog Downloads

⚠️ This package is based on FAMSA 2.

🗺️ Overview

FAMSA is a method published in 2016 by Deorowicz et al.[1] for large-scale multiple sequence alignments. It uses state-of-the-art time and memory optimizations as well as a fast guide tree heuristic to reach very high performance and accuracy.

PyFAMSA is a Python module that provides bindings to FAMSA using Cython. It implements a user-friendly, Pythonic interface to align protein sequences using different parameters and access results directly. It interacts with the FAMSA library interface, which has the following advantages:

  • single dependency: PyFAMSA is distributed as a Python package, so you can add it as a dependency to your project, and stop worrying about the FAMSA binary being present on the end-user machine.
  • no intermediate files: Everything happens in memory, in a Python object you control, so you don't have to invoke the FAMSA CLI using a sub-process and temporary files.
  • friendly interface: The different guide tree build methods and heuristics can be selected from the Python code with a simple keyword argument when configuring a new Aligner.
  • custom scoring matrices: You can use any custom scoring matrix from the scoring-matrices library in addition to the default MIQS to score the alignment.

🔧 Installing

PyFAMSA can be installed directly from PyPI, which hosts some pre-built wheels for the x86-64 and Aarch architectures for Linux, MacOS and Windows, as well as the code required to compile from source with Cython:

$ pip install pyfamsa

Otherwise, PyFAMSA is also available as a Bioconda package:

$ conda install -c bioconda pyfamsa

Otherwise, have a look at the Installation page of the online documentation

💡 Example

Let's create some sequences in memory, align them using the UPGMA method, (without any heuristic), and simply print the alignment on screen:

from pyfamsa import Aligner, Sequence

sequences = [
    Sequence(b"Sp8",  b"GLGKVIVYGIVLGTKSDQFSNWVVWLFPWNGLQIHMMGII"),
    Sequence(b"Sp10", b"DPAVLFVIMLGTITKFSSEWFFAWLGLEINMMVII"),
    Sequence(b"Sp26", b"AAAAAAAAALLTYLGLFLGTDYENFAAAAANAWLGLEINMMAQI"),
    Sequence(b"Sp6",  b"ASGAILTLGIYLFTLCAVISVSWYLAWLGLEINMMAII"),
    Sequence(b"Sp17", b"FAYTAPDLLLIGFLLKTVATFGDTWFQLWQGLDLNKMPVF"),
    Sequence(b"Sp33", b"PTILNIAGLHMETDINFSLAWFQAWGGLEINKQAIL"),
]

aligner = Aligner(guide_tree="upgma")
msa = aligner.align(sequences)

for sequence in msa:
      print(sequence.id.decode().ljust(10), sequence.sequence.decode())

This should output the following:

Sp10       --------DPAVLFVIMLGTIT-KFS--SEWFFAWLGLEINMMVII
Sp17       ---FAYTAPDLLLIGFLLKTVA-TFG--DTWFQLWQGLDLNKMPVF
Sp26       AAAAAAAAALLTYLGLFLGTDYENFA--AAAANAWLGLEINMMAQI
Sp33       -------PTILNIAGLHMETDI-NFS--LAWFQAWGGLEINKQAIL
Sp6        ------ASGAILTLGIYLFTLCAVIS--VSWYLAWLGLEINMMAII
Sp8        ------GLGKVIVYGIVLGTKSDQFSNWVVWLFPWNGLQIHMMGII

🧶 Thread-safety

Aligner objects are thread-safe, and the align method is re-entrant. You could batch process several alignments in parallel using a ThreadPool with a single aligner object:

import glob
import multiprocessing.pool
import Bio.SeqIO
from pyfamsa import Aligner, Sequence

families = [
    [ Sequence(r.id.encode(), r.seq.encode()) for r in Bio.SeqIO.parse(file, "fasta") ]
    for file in glob.glob("pyfamsa/tests/data/*.faa")
]

aligner = Aligner()
with multiprocessing.pool.ThreadPool() as pool:
    alignments = pool.map(aligner.align, families)

🔎 See Also

Done with your protein alignment? You may be interested in trimming it: in that case, you could use the pytrimal Python package, which wraps trimAl 2.0. Or perhaps you want to build a HMM from the alignment? Then maybe have a look at pyhmmer, a Python package which wraps HMMER.

💭 Feedback

⚠️ Issue Tracker

Found a bug ? Have an enhancement request ? Head over to the GitHub issue tracker if you need to report or ask something. If you are filing in on a bug, please include as much information as you can about the issue, and try to recreate the same bug in a simple, easily reproducible situation.

🏗️ Contributing

Contributions are more than welcome! See CONTRIBUTING.md for more details.

📋 Changelog

This project adheres to Semantic Versioning and provides a changelog in the Keep a Changelog format.

⚖️ License

This library is provided under the GNU General Public License v3.0. FAMSA is developed by the REFRESH Bioinformatics Group and is distributed under the terms of the GPLv3 as well. See vendor/FAMSA/LICENSE for more information. In addition, FAMSA vendors several libraries for compatibility, all of which are redistributed with PyFAMSA under their own terms: atomic_wait (MIT License), mimalloc (MIT License), libdeflate (MIT License), Boost (Boost Software License).

This project is in no way not affiliated, sponsored, or otherwise endorsed by the FAMSA authors. It was developed by Martin Larralde during his PhD project at the European Molecular Biology Laboratory in the Zeller team.

📚 References

  • [1] Deorowicz, Sebastian, Debudaj-Grabysz, Agnieszka & Gudyś, Adam. ‘FAMSA: Fast and accurate multiple sequence alignment of huge protein families’. Sci Rep 6, 33964 (2016). doi:10.1038/srep33964

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

pyfamsa-0.5.3.post1.tar.gz (7.7 MB view details)

Uploaded Source

Built Distributions

pyfamsa-0.5.3.post1-pp310-pypy310_pp73-win_amd64.whl (1.4 MB view details)

Uploaded PyPyWindows x86-64

pyfamsa-0.5.3.post1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyfamsa-0.5.3.post1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyfamsa-0.5.3.post1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pyfamsa-0.5.3.post1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pyfamsa-0.5.3.post1-pp39-pypy39_pp73-win_amd64.whl (1.4 MB view details)

Uploaded PyPyWindows x86-64

pyfamsa-0.5.3.post1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyfamsa-0.5.3.post1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyfamsa-0.5.3.post1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pyfamsa-0.5.3.post1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pyfamsa-0.5.3.post1-pp38-pypy38_pp73-win_amd64.whl (1.4 MB view details)

Uploaded PyPyWindows x86-64

pyfamsa-0.5.3.post1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyfamsa-0.5.3.post1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyfamsa-0.5.3.post1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pyfamsa-0.5.3.post1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pyfamsa-0.5.3.post1-pp37-pypy37_pp73-win_amd64.whl (1.4 MB view details)

Uploaded PyPyWindows x86-64

pyfamsa-0.5.3.post1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyfamsa-0.5.3.post1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyfamsa-0.5.3.post1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pyfamsa-0.5.3.post1-cp313-cp313-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86-64

pyfamsa-0.5.3.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyfamsa-0.5.3.post1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyfamsa-0.5.3.post1-cp313-cp313-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyfamsa-0.5.3.post1-cp313-cp313-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyfamsa-0.5.3.post1-cp312-cp312-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86-64

pyfamsa-0.5.3.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyfamsa-0.5.3.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyfamsa-0.5.3.post1-cp312-cp312-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyfamsa-0.5.3.post1-cp312-cp312-macosx_10_13_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyfamsa-0.5.3.post1-cp311-cp311-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

pyfamsa-0.5.3.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyfamsa-0.5.3.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyfamsa-0.5.3.post1-cp311-cp311-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyfamsa-0.5.3.post1-cp311-cp311-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyfamsa-0.5.3.post1-cp310-cp310-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

pyfamsa-0.5.3.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pyfamsa-0.5.3.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyfamsa-0.5.3.post1-cp310-cp310-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyfamsa-0.5.3.post1-cp310-cp310-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pyfamsa-0.5.3.post1-cp39-cp39-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.9Windows x86-64

pyfamsa-0.5.3.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pyfamsa-0.5.3.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyfamsa-0.5.3.post1-cp39-cp39-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyfamsa-0.5.3.post1-cp39-cp39-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pyfamsa-0.5.3.post1-cp38-cp38-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8Windows x86-64

pyfamsa-0.5.3.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pyfamsa-0.5.3.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyfamsa-0.5.3.post1-cp38-cp38-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pyfamsa-0.5.3.post1-cp38-cp38-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pyfamsa-0.5.3.post1-cp37-cp37m-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.7mWindows x86-64

pyfamsa-0.5.3.post1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pyfamsa-0.5.3.post1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pyfamsa-0.5.3.post1-cp37-cp37m-macosx_10_9_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file pyfamsa-0.5.3.post1.tar.gz.

File metadata

  • Download URL: pyfamsa-0.5.3.post1.tar.gz
  • Upload date:
  • Size: 7.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyfamsa-0.5.3.post1.tar.gz
Algorithm Hash digest
SHA256 26e95de13adce18e923847591681f085a35fab20eac76887deb6ad12f1b6a06c
MD5 d075e8bc0da10b15ecbb7845d94950ce
BLAKE2b-256 5fd653ba2cc9cb2e200598641ab3b1a41173b9794033873813945f3f5e3c4507

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1.tar.gz:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 71f915b63eb64feb31e19b3a578d0dd4b46b3a8721baf86b9af848db00a59590
MD5 174ec9988e6d6c5cc8f453b02bb1da94
BLAKE2b-256 adf7d61e0e51610a862f27509cb627523147028d954a2f1f3335f405234a25d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-pp310-pypy310_pp73-win_amd64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 668c59e0d2b60be4fc596dafabaec09b53a3ec0809df9764a16a57a4951d7630
MD5 3b602f74f8d8fd6a31ad46684480e7da
BLAKE2b-256 703cd9d1d0110fd6ac2a8c78fffc82a8f4f8d07020ac570cb91e93fbafac2353

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a32a7e1d9120dc643cf5289b6e0497f1c15c7fa0bdcf5aa74b2d4e112d1f208
MD5 396edb040920d66333f1dcf2d0dfdd5b
BLAKE2b-256 4131d92e3b21c54c3a9631653720ad41ab7f876c2798195a428a4ff189f4ba60

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc6b7256e58828f29b8f9d455832e4e73c0ef0ca84284f0b34ee3ec1079eb77a
MD5 d55df7530c8070f6b24169f38e58f733
BLAKE2b-256 4c057e2e8dc4f28ce05e6c2ff7a514f3c45a0d89327452018eb01922290b2dfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4bdab0221e7f671e60bd2c66020669ab73773195853b46d0178cfde63cbd1e08
MD5 8b619de93c6f6619a079ee10720276c0
BLAKE2b-256 b6ca398b7296e5031ce4e562e895870d930d60ac5934f99d28fef9196c4ccca5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 33901ad49cdc02398741dbaf092d1120a6de49952bb9e5efbd9decf97b04e851
MD5 c369e598d5da7fba01a59b1cee2c7414
BLAKE2b-256 2dc6d045678d917a953a16806127f4dbf3fc3750211b5527f0b543df3a1287a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-pp39-pypy39_pp73-win_amd64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2802f2f1af17f9bbdcdb326c0f768c1a48331219548786ee0214615d58538656
MD5 b1b9d0227b88d6063650f40d587c162a
BLAKE2b-256 f11ad32b8ca5e489a3306180baced10f77cc6f00651851b7134c498f40cf86e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d40672fb4c99fbec7bcd32adfcedd58ecf3376458776868f8a099c5f0db8f2e
MD5 6159d4c00378139463681eddd9d53f31
BLAKE2b-256 91719927837c47c10a8cf2e3e6bb94b3e1aed244ad027b3d5f961ce14c95e0ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4adfe631e4633e45d0e0e403b3afd64b2fcac19624961e44af89aeaa1718ab0
MD5 ad7323e9e1af1e2541c950fc2ef7b369
BLAKE2b-256 7e5758c13039bfb22a5ea3dcc81a5d4e32617872549f766904919eadc9b94516

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3f8dff883e3b55bb5c5eafa6de53b670c2b8d736aebc94d8884c213fe5b8fec9
MD5 15874e1abb77e0f3cef64342be2a11a4
BLAKE2b-256 fbcb75c0daa2ea85e9057e19dd2f2baf884fd3008164cc56a5104aa4815a033b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 66c1922568d2da179e12dec7a77fe1bcc6a4c267a26f2116824ccd2d9686dae6
MD5 80d6d7a00a0608e157bc61884fe7ca10
BLAKE2b-256 9554a7dde89e1486fedd8a4588b0b75cb5bf91b1752251378959603798f27ce3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-pp38-pypy38_pp73-win_amd64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 489cf944df8da84c3745dda092a700bb173f7bd9ee728e8130eafba2a570ce0e
MD5 b0865b286856b5c5ba9a86ec54cbdcc2
BLAKE2b-256 206232ddeab371d1da9c1d557830e51e5ad3e2794bd7be7048bafb8bf2aab023

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 139d133717c8e429ff3f53462ab27593bd922dd937322a94b62fb3b1b4b41bdb
MD5 79acc354095969a0fabd718af73900fc
BLAKE2b-256 45721c8df4b9af125f016dc7b4333a502f71419a8a134f22e409400cb4663317

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f94c23a867b0181e24d390cff4d833eefe4d62bea99174c4b18f36d07c16a97
MD5 67f1a77e430cddf45bf3d156036bd255
BLAKE2b-256 a3acf117e2287705e16409f66f2dd6445093f07d78513ab11ea295a77f1e6994

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-pp38-pypy38_pp73-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 710ce98aa989421764d663d6d9417938874b193dfd030446e868f833f61236b8
MD5 627acdb28b1a7b21cff9b9225d847197
BLAKE2b-256 f6be177311b3327d8b1a30a3729651747cbb18c0ed420a519ba90760ca297e69

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 68eadea6af5674a2ac1fb70cf21972d78b4f7d9dd28e702f180f4b41b0185eef
MD5 55b0b917a4f6065e0d0453a51e99632a
BLAKE2b-256 2b6438415945b2f7cbf08ffd4283f3ad392518ee928e51f88a6f34a8078aefa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-pp37-pypy37_pp73-win_amd64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bed16044ddfd3ae3beca330e6cf2af560729581230fda557fd089024d5927a16
MD5 bd99abc8fcd8e5870c42adfe6a18558b
BLAKE2b-256 4ac2c07e121cfcda6d7a767a4998f88e13deb7a77085b71b2578868fe2984467

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56388f95c648ce087015566c87bc6d5d16fd90d5d80f164ded0b0b82e6cec4f6
MD5 1a1ae77c38dfc5d249a749d07c41d51d
BLAKE2b-256 f79f6a9fff8131c7e8720e9fdacf42566292a0c4f809ba1aba291f8e5b22207c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c50d5ebef48a0f33fc8e64e35ea2548638e9303f59f0757def46a6947c038f4b
MD5 5b5b43470c522ba7de612079ec8d39c6
BLAKE2b-256 7f157bc635b96683ec25e33c030085e412963424ad1e98179926713242927f9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 28e9dac040b94c11523dccfe891120565542d5ecbb73b2f4bc95ff2917399404
MD5 e122e726790852e134e2491c14c24a49
BLAKE2b-256 5bd439e725426e5dc7b2c4c5f292afd4c4c99e61200bd7ccce46f172203ccf4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp313-cp313-win_amd64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8acb09c826225d6fdab959fafdabfe2fb5b061cd0a28ebdcf3ab8b725fa787d4
MD5 96d3640bf2bb07201790d16522eca1f8
BLAKE2b-256 6600d976e27bc507c832aee32367eb675dd2a1505038bc97d304bf107db51147

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66ca732c2b28cd81d4e136d7ec1233f1f172f514fb4a62c20d3a7360a73fbcae
MD5 9566b22577b19b91ce113ed407cee811
BLAKE2b-256 f8fd9f566f3827cde4f916ddb25bd33402c833db65e5b53126c7da2f8a838591

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db62cf72912874bbd7ef6e7a3116a8725e7558ce0d8a78d5e611989cea30edf4
MD5 3cb1623adb315513b46ab07e4011fb8d
BLAKE2b-256 2f45feed433723a6d7a51044d00013b8eef978763a16a3a67b071505db05e0a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 03fbe2c80e9e56b80fab1ac8e148502e6b0de3f084b52ba209510af364fba7b0
MD5 08e73281db44984c286b9f9746c901d8
BLAKE2b-256 2daa8a87396da281dbe07fb2706c9dbe343f633c65f5a1b856186693bd03cf5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b6b8b8e78930074bcceb0e0bf3fc48518c4dcef415c985f26f97aea3c3491407
MD5 f73a37e515491e334031f9a8e718c050
BLAKE2b-256 b98282ec54b552e169fc25d3737d21f1f0fb7f35f553047491bb02119f7ef5b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp312-cp312-win_amd64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 043c3a8b5d0265bf2f8c3ca1dd0f46bb2de578049985783555fd9b01b54998fe
MD5 4cd4c11f1364ed8462ed2c683f6a423e
BLAKE2b-256 40bafccb494fde8ddfb96a298a2288185134e21ae1a5f0df0718f54163a4dbff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d97a2a1ada9b4d830c3f17d8f926b04f29ca15cf9a33dca9ed89e4af0a4f7f38
MD5 671cc1ad1eac6e5045a7f3d3854e1707
BLAKE2b-256 cef858d153551be716cca57444c3ce6aee8f8b2c5b4cd610e38ef99787e250fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd7c1329b4936fbebd0ea63bde5c8eda69e95e5535707514e9fd05578cb69f8d
MD5 ce54c9f94e329a292a65e4d5b00b995f
BLAKE2b-256 86ffacb5c9b23b194cafe55083fa0dfb48ed9d14fc2cb995c2f7ca71f9577b96

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7a3ca348b6de590f974038cc749442d09c22c495a8eec58da6436c660ffd1af8
MD5 94524ea4ddd1ce47849cedfb767a88e7
BLAKE2b-256 67a2d697a297e0a0fc54b8db70ac2be8520203f6d8b1db8e0d5287b251e4c69e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5c46dbfd8e2eb5fb25866a8332c1203c3d0cb801db004bf5ec2d9e693d5e4d04
MD5 7eacfc5dd98bc4e9007267ca56f6c038
BLAKE2b-256 9d5666fb18a7e478386ce7bfff65b1c5d26e520883cd619733e82b92577ab30c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp311-cp311-win_amd64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 378485ec1528c6acaa3841b4280d2485a0531125015fdf1f57297a40327bc3a8
MD5 0be30dc9e133fc8dccda4f2d3ceadc23
BLAKE2b-256 0246b72ef9b95b3cafb8869c089e629ce3aa75e808a2f4116fb1e3d4903372ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5452479b8add49eaaad435ef064b7bab32ecb22840f117ce5a268b0b8b62c54a
MD5 52559275c2ff81b3b47f8e70311c2a2f
BLAKE2b-256 195e4fb8ce0a3b443c83d8b592ca12db5f0a1a7cefe457f2bc285bbfd0496031

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30fb07eb038f82ff115807478903c2063dd55f3661df5155791775fdba878d7e
MD5 34dae3ad6c40b9f67a1e4c3aeaa96a1b
BLAKE2b-256 4b88a811ed2a0f903cc8e5ab31f0abd85a344cfb9ee763c69c1553b56e830050

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a704539a2eef1276f0f6743adeab42ad7018c39fa35506f3cbb352fa481f095c
MD5 f81605516865794d88fea4ad27e38abf
BLAKE2b-256 b0a67c11444866a1d9d6a6472f526ef20390c558ba0f39ce8b428bb74a896ec7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dfa74fda8833b1e58b8bda67303212e88d82f943b2a9ce2996299c8f35b877a7
MD5 c688b533c063c3badb58e50c46796bf1
BLAKE2b-256 0f77458e2d7ee13a686a8ae1588a2f6157ca92fe9371afab7b5debd649b2fa4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp310-cp310-win_amd64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1edfbb72615a46c6f3b77c8bb9c785fe46c898b983b1527d2941d1d4403c9db
MD5 acc47631b163c1fa89c908984e419ffe
BLAKE2b-256 2a2187dcc20466856fd5dc254c0702babc03d305d193eed56e71fedee04c08af

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9fefe4963ca1ba9bd0f4115c984a77c2545e34000f9d5b126134dd95d5a5e70
MD5 63721c0d0b04c1a237d09968727ddfa6
BLAKE2b-256 4552166e5a85bba2d867e166cbb07d5517637ca8de8c4edae8a63405e140cf52

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0d64240bf8173964943df4427add48705d28bee1d6500b5aa18b9b628d52b7e
MD5 79b07406ec15d0d4fde4782fd936670c
BLAKE2b-256 f1a72a8e7c1bd0d8f5cd42256af1423b3a222f0bb7c7dbae77c062165e599778

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a9e83103d0fa00feaafd0b20ebb622912a592a2348b040acdc7c6820344e6210
MD5 c1e804e73daf7ca7458923c85c6f51cf
BLAKE2b-256 192394b69fd18c824bf0b4e4c568b7476ef5bc06c88b982ee532508c4357eaf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 011790bee788988a0707dad510f20fa0233e9ad1c41964e574095cdb72b5bd72
MD5 626d53e2f44f1a6ff57e9ec544d6362f
BLAKE2b-256 b13dfbba360331864aa670701eaf7705460ab4989216d585f2e91a67e2482c2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp39-cp39-win_amd64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd519f56ed38c0d6bd80ec05eae65683229948e44e9b1a3d2ee3d21dc96a812d
MD5 f496f19ca12012a16abdfcc14cafafd5
BLAKE2b-256 aa9650a64d721e59afa8107e6b5fb44fe7ae20db12abf77da38802459e496936

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8ff6d14e3de7be42c350c2d9a9ac6a159cbc5be06c3ae89e6f2b6faa89983e0
MD5 996efeea8373e002d22554aed34ed34f
BLAKE2b-256 542ed69c834404590b565e4eb43629bdb13e3354ff1d2b0ad1a2b70fe83a9aee

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 197f038dbc5a8c89b2e38188e4626524a8bc4867c2330c25d5b741aaeb3f392c
MD5 27ad35ff4c95dace85ce099ddef76432
BLAKE2b-256 e278b781559f56e3ee92448690f3dad6ef4258bc1c6161fa28fec2a4951f8e1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 91c8f53db8ba4e11ece662f7c935e85eec2668c92c5922c886bf857194a77260
MD5 621b6e32ac9370d7e6dcf6f449d0d065
BLAKE2b-256 50bd06d06843ee8dfd80d3314e1d37e7281bb21c567aca8fdedfeb07e0d37993

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 dab1104adf4e0fa7ee44a784cc889d47250d8e1ee846b3adbc2e5b05e11d902b
MD5 c3ec02da506b93370fbcd0152f81d0c3
BLAKE2b-256 ad48d39c04ec2fd6f37ae0bc1f36b314371d1c004525af9d6945d07d5e4503bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp38-cp38-win_amd64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53a3f94bb504d40b2409ac0ca957bf015ce3b4d86a06694a760806b36251e82a
MD5 0878d9e795bfe182f4f97507baa8588a
BLAKE2b-256 f4af1d5fde98a20a8a01d646e698efabf6fda93879bed49fa065c36b742d212f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9bfc8a793e06dd88c7d6082750cf854617dbbb971bf8a1fac46ba05cdcf63790
MD5 c170c068623287caa01e55e9011c9a46
BLAKE2b-256 1f7fefc20947a637644323a9e38625b05386cb8849c53f30832779c4867f09a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2ac978255341284f7b9d83f83dbb6ff5e58456b4c4427c72d5d0a18697150bde
MD5 03d422161be6d5185fb8a710d8cc153c
BLAKE2b-256 81e4234837c3f9a39d960d076c4d55ac80cf1368dd8aee750a336e88d8c1acf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a1f284c0a6c8e272b4f55ff67b1c580447c231565877c3b37070b364c17e41b5
MD5 20cca089bd2d65bba43d5bc3b58b4ad0
BLAKE2b-256 72764638c52ad4fca5dc19ebad9c81482d736b1c9574cd54d8bb53a09694fc8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1f56a4cf448bcef7dffcf11e8a90eb7047a26210991b61f2e6dd160a33ee610a
MD5 3a467cf1a0a649275c567f9288ddf6b7
BLAKE2b-256 4db1c8433c09046681f7c0c37d0e5a9f16fdbe022b49735d5061742e12a3c82b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp37-cp37m-win_amd64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e00cd70fb31af67328d6e97b809a292d1fcd43e3be0de25f4769e358d41935ff
MD5 d711fd444e6930b872ce36ebd2642dbb
BLAKE2b-256 f948c70282f3aac198cc7c9852ca596a467614df6a40ced420a604baf25e15aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 678fa090c6c095074358750cf5add4157c6540793339cd866a0ae88920858590
MD5 34a0fcce4dea31d1a15b67cf68023931
BLAKE2b-256 aec85c9ced618095db82e5b327e349541f0d2c2b4027d79bdbe6ee6224da5384

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: package.yml on althonos/pyfamsa

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

File details

Details for the file pyfamsa-0.5.3.post1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyfamsa-0.5.3.post1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cda5f3cbfc13632a84d6111622ecf39c24971ebb0a4c5dc715fb50842fc9e567
MD5 da22e93548cd6ca8eee0bb0cedcf6899
BLAKE2b-256 d0bb4873caf113c11fa77212a7c6bbb021ab9ab46caccce94190dc593449fe0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfamsa-0.5.3.post1-cp37-cp37m-macosx_10_9_x86_64.whl:

Publisher: package.yml on althonos/pyfamsa

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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page