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.tar.gz (7.7 MB view details)

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.15+ x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.15+ x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

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

Uploaded CPython 3.13 macOS 10.13+ x86-64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.13+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pyfamsa-0.5.3.tar.gz
Algorithm Hash digest
SHA256 d5492e885c71dedfd3ddb1fc16b02981388f7fcb7dbb152c37b8bffa5f760ce5
MD5 ca2a8a2db2e18dc03d17f96da701699e
BLAKE2b-256 7d7483a29d3b6c5f421a7646fdc08cbb61a9a14eb42d598a1cd55becba12844c

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6411b5ed933fb8f9ebb15c99a8cc16994c7c8ff5eb40b8afb6c4d1f4d43e3551
MD5 e7b452bda09ddd9fb3f5b43d1758095b
BLAKE2b-256 363ad9794d9faeca0bac22ac27d2b5488c60b88d342471368d1018e736327c19

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0434d9c0cd71dc7d14a9cc0a4414a2490a097ee3d12a169ebe36a70cb12aa957
MD5 7a13f2a72219a7f82e017cd9c73eb523
BLAKE2b-256 47f1f87431a94411447feb29ce7c99e78dea0d35e4e350a2114134c47a92c527

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ddb9c0f9d67db9eb989708085d0bcd924dbf770d4aa6ae3d2dd541d31f8b2ea
MD5 b2a80b0a4b9c2b06d532beaf701fc459
BLAKE2b-256 e5f8ba64ceb6300013d063bb025f529d2aeb4b60ad3103b416bc9c360a8b2c31

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cff2eccb65d02ce022e79777470a0ce72f03abfb2e40d1b4f38e333165cac59
MD5 c66794456ee4187e3e4124c5b8e81e2b
BLAKE2b-256 667568fa4fb1f82064179e48701b3a00796eccf992bc10ec805f185a01030454

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 948b8f49f1e6279d7db598d90648495f45a63203e2cc5a25a9850a53ca717741
MD5 a47af3b4a139caaf08abfeec64ab1e99
BLAKE2b-256 1690bf7d3cd69463ac9b82d1730758597dd599218dd1492d086229f6b10984c4

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0dbf5b325c5f558f0b36a1fda58a2b748c03699f0ba91551579d9c441be3ec17
MD5 059e93612bb96c20f5e17adab210700e
BLAKE2b-256 9e1824aa49855d6aae29b7e063c7d3410a6ef61351ec5fabda6c5a1a23af3af0

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 099c4d9b1b38f7c1491bcdc7def520598fc7289560b6324adfffc5ac50aa7dbf
MD5 6d3602c342460ac106e54e0a88b396bf
BLAKE2b-256 447b4d4c8378d80de22f4fafa475805377cd3b5b4e9dc548cf84ea519c39af68

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b788609a49cd4fc1605aa7cfac22dd8080c45f31f61a7d8e2331800a34f7ab3
MD5 b9cd9c12363d268723548f43e599716a
BLAKE2b-256 cc1331f8f2dcb56583d7aa28136b947e873fa649045a66d431177bf7f1000127

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 204afa23e622f50b422068e1f9ced35cdb045a8223c457d02ececd002e75e6de
MD5 72824fa3e719f80bf2d85a0184da42b1
BLAKE2b-256 e96aadb8b14743a11d47ba41d820b2c925c7210db9967d900c2e179403448b75

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c07dc101c2e210f171312401c5e275cd9efe1bfbf513e0d9864ea55c9615f90a
MD5 705cf3691ad44d4b68b22e49ef3507be
BLAKE2b-256 fafe269229ebc76f3e3f38bd70e5a7882ecb8f65e682be3a1a01b8c912691de6

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 dd7a36cf040d6092a3483ea3ff57af4386059cc96ef92b28052213019e054eff
MD5 8e9106c46d4ef4a5941a104e9b5def54
BLAKE2b-256 79a4493054f33b3a7119e67a93b6e4f66b8cee0007d097a7a399b78b15053dcb

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9aeb6c88db6fdf4b47cef22c2ec72654a84a1fdc9d1ef20ad5cd84c98f52b1c9
MD5 1d3e2e86dd28f64880772fb3fa520e2c
BLAKE2b-256 0a46a0163d378280477e307a5359376f0751b39c094fa1ea2b87fd13bb1893fd

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 267e753141b5745a26432a52ec232a4864a2b6cf589239b108436c0c344bc11d
MD5 4825410815551f5e2d5385d504026234
BLAKE2b-256 3abe278b80340051326150ef6c9dc420ce6eb6e7a639e163241e76c954019e6f

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb5a8c53d8ed7f4ce74d7538c91bebd7945f8bd6ccc7edbcec2ae2e2ed712621
MD5 911fce08ddb4ee6d8b592fdbd078b662
BLAKE2b-256 439848320895efd076b408b3c54e457e5dad089010f811a47ab73fc94f59ac13

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d1a03278ed508f295a94f50fc75f33a89a0d010a5e8834cf981af844c560a0ac
MD5 7fce2cc0ec5c015004e449cf61e90fe9
BLAKE2b-256 0480678c2f33d2a8dc1a3e4a57183b1b2c9d4630815145250cf90e3ab4e0d7cc

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a6acc49cdce4851c9e0bfcfba3dc595d5a889de6733112f799a218672a951567
MD5 6b0122dde3e14c7d771f60e673da7234
BLAKE2b-256 43e1a6ab609b75b2b4df2b116fca186beff1f0c2ff74d5dbdc5c9d426c2dc371

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77502ce2a4f5e237b4fd4349a2f500962a907dfb23d77f0970c8396946dd64e9
MD5 4f370ff93ba984ce9d57098604780de9
BLAKE2b-256 c631ecb826319962e282f06b4d0a341bdc73b11f972735905d12be42320cf111

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1450a99a983e2a97f4683ee5e5a38acdfad67f74dff0942f2fcc4ffccf642d9
MD5 76f48ee59983ff0b3f366c88f9cb2840
BLAKE2b-256 4b73a34dcc59ba301d87618ee9e2bcb2fb938ca17bc613647b90c4210e8916b0

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2e02f9230d1e9d0e52d30fb8ba17c0fd057c5ab15b4d8037519e35f1a3ea58ad
MD5 27003b4080485afa1520047120c98650
BLAKE2b-256 5f1399289791b9d666a844352a3b7e6adec3a3393c98ece8620c77900a0ee5de

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

  • Download URL: pyfamsa-0.5.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyfamsa-0.5.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ff08141262ba984854a2ef5680d958d1092beab47f2b205d5cb4b1756a5ae715
MD5 520233c416c3186ab44e6010d8613c1e
BLAKE2b-256 bbbc411e2d87cac16dc5a54b47a390e7f09b737780ce504a07a28f3b2d208435

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b321b24295a8caf0d55f65a53f99db384902b094757be833ee08475df43d17e
MD5 1d1efe72b81ad4058adae7a52f0d51b5
BLAKE2b-256 bb00e3f92164e02c66df00d51bd4cfaef4d59882c5316c329983937ee50debe2

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8decd9f316d9441bcf6c3dd63fe80eb0cdf644b9c96ecaefbb5a70dd1dac7a8
MD5 634bc966b6703f5dbf36cc337e4605d4
BLAKE2b-256 7f5bfecf2047b80c084a3cd69db261da02831e8ba438f70002ef72bf4ecba909

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8fe0d43fc7c3801cdd96a18efbafd871d7b17d7eefa9d56258607a1a1321358
MD5 74993ca730b1814a6e69dd7a9fcdfa44
BLAKE2b-256 edcc8bded653f7dd9eed31db2d3362329fe0fe82c8eb567aa78720221661d648

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4f68a30f7db9fe7536db73f940dc5d7741effc41b6dc30782a7acd9957c02f0d
MD5 5067085f34f127420a2abcddaeeb2a02
BLAKE2b-256 5de94a86992d78ce7413abb1ee9b77d7797e00a5b1b69431191a923964f8ee3b

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

  • Download URL: pyfamsa-0.5.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyfamsa-0.5.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9d60527e6937a4546bc65aa8f8ea4fcbbed5bc0dd9ad394573b74ac51f6bf57f
MD5 7ab226c23e3549aea0b54d046971517b
BLAKE2b-256 b09ecb7b8644de09ffef90b6a11543446367921d055e50819956e5f0a74f4395

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d1a941b9deefddd44422e62ca9e1fc07a37d8ef97ccd4de24d0ebd1e8d25024
MD5 552c90cb2f3848762bb93437f477ebdc
BLAKE2b-256 428b0222064f7e0964c3739329009ec03fd201645984adfb57c76e80523530ad

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b13da4068b0b27459872bedf85982cb717a392c901a056964e703ea3618c9b86
MD5 8d8bf2d1c4165fd1408c2eda467af241
BLAKE2b-256 8772c1d6cd8acdd613dba4b301a5618ad186bf8832501e69acf1afc6b5eceb7d

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36d6fd9f48ac50f93c8eed015fc65efc6fdf6926eeea3a2299318641a15c371e
MD5 f5baeabaa9a52eecede299014a487b60
BLAKE2b-256 f6f407ee59e88327a31ee667e207ad6a6ba8a6633e5402840001df97d5746b9b

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 172cbd6d69d9db52ca9ed1cd0c87f36961531630b2bbce97abd8d4a5bd0864a7
MD5 813140c18125bd433c12b2552fbf9ca5
BLAKE2b-256 4f8bf520cf45aa50e8cbe57d2a173cab95b89bdc41f4117dff478f89aa1bb7da

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

  • Download URL: pyfamsa-0.5.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyfamsa-0.5.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 682bfddf4b822642a52828bb671ac51a38c032d979fcd1b0fc3a3ae116ccb4a0
MD5 8f16f16381597cbb23ad9dd33e2f3619
BLAKE2b-256 b9cb5c06e03f179dd1f979f9c74079519fe5e101b5884148c429ee852ff65467

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fad1402eb815eb00f82d3e0f453f1489a09fa74dd5dbdd0c3e9567c5514d950e
MD5 bbf27bfc90eb6f9c77be9b05f4cb0486
BLAKE2b-256 b4560658e7f7782a2e1b4f4c1b09d742081a5e027f0ee99d51c859f572311200

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cfee1755fbc996d96ba86128330b4528a4917964745a545de250f17987e99c2
MD5 88ea233adde8821acf113303d7e9bdf0
BLAKE2b-256 3618293b4a7ce50c858054ec7d2f96055149207a0d95189e82c5885e294f45c5

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e542692f1f0b08d95439aa2d71dfc98bccdaff9f02bf960288ec442179decb8
MD5 6440b0f389edd00ca43f919d1e7acbf1
BLAKE2b-256 a458d503e07ea4e6e26a26c2cb1804bf3846b856248e1696591aa0d1f6599b7f

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9f3d13b6f40d71ff5adbb79728eb2aebdd17d7ebdb06f24eac7d8daba167b4a
MD5 010ba749416b51563fd4d87807e3635c
BLAKE2b-256 af774ee521c66975c5f118c50599ea7e1820c014c30b80d8cd0ae0e2d2ce6cf4

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

  • Download URL: pyfamsa-0.5.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyfamsa-0.5.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e8be55d9351c2a8df628e5e324d22e09601bf512f83327db6016e52bad52c255
MD5 c7bdb50292ef87c4b33a6b968daa1010
BLAKE2b-256 4c89fe7b36b5844f841a9be67be5617cc6c7502c424daecf6097dd7fd5d344a1

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 747bbceceeb417e60163ba18d0c689e29150ae55805c21c43dcb1b1a0d25a8ea
MD5 5fa5ae99a41e6aa7312821255fd2406d
BLAKE2b-256 8e62baf4ecb06263dc576852a88f67f6bfd6235227a4107c2ad4b0e1a58433da

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 95626ab6c0b5e78074c33855a15f086556cf57551e106095e2c4f037145679f0
MD5 47c560cbca137e7493b254c944e5c38d
BLAKE2b-256 e082f4aa1fcafa01dd65c4cdc919fbb9b81dca4ee56ca829b9d868548d5f5dfd

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 086380e9f5e145b663f7b4b9098ac528f5c824910d7011209512acfbd22ad234
MD5 dcd68b9aafd6abb2f40b6254d2f46028
BLAKE2b-256 276a0b762d04f815b0734adcc1e0b26af2e4e52943a607b5ef367f9b61136332

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 46a30399866a26a74eb49c038c6c946df3a7660157f460971d76ae840e0c43a2
MD5 5b984a4c08e19307a690aac80b5f79b1
BLAKE2b-256 b44c5cc9bf01f7f6c5b27a2a218e2ea97b4a7857f3e0d450a26bbba9e0b6e56e

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

  • Download URL: pyfamsa-0.5.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyfamsa-0.5.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8be4dfc3980c1457c7a7069a8c70b2cb18f53a5e50434cc4fb96bdc057ad164d
MD5 558a9bf5c1af005aeaeb69cdcb907238
BLAKE2b-256 a8c1ead519dc86a454a03082c836be3dd472580260d7b461833163a932de5bf6

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9beb5b00bb04d3a0d0867a0670a5e4bf5e9fb930364c2b1d38d7dd6151ac64db
MD5 267e773efab485bcc5ee540f467c9f71
BLAKE2b-256 39407725858ba7f67c234798246c6a11f46209a7ed07aed5ea2f86f9825d1a1c

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87f7d7a4cb8f6af7f604e64482805c9cd0b4f3272eb4daf679be5984f7a7fa24
MD5 60e00b5da5c93f5637e9d3f330f32b2b
BLAKE2b-256 c8ea9a75ef87499542a0b6a9683d399d0fc623b4efa9f13a6de59ca0a9b4cc56

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 846b45d1d3339a7ef70a8ec49525666de6199416d9b73ce079a6a60ac350c704
MD5 dacd10f42cf69e6b3fa3e5770f0a8f2a
BLAKE2b-256 3634ab988611dcef4a6a7aee438b23b00385f06eaffb00a82e5a1218d4ef3ed1

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 42f2117938223620a2870e185419eae457bf8c4101cdd33c33fec868a1ad1a97
MD5 707d5b90440be777f0b55ffd557becc2
BLAKE2b-256 c8708c2ce170aaf4ef1c615eea5717bb1b5a0a40b2746c3a35245286e15a01db

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

  • Download URL: pyfamsa-0.5.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyfamsa-0.5.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 73c6f88a1ccfaad6cc085ace37bac69cf378f7bbe4ef494cade9d66edbbb82dc
MD5 5bfbd290eb19476b56692aaf23a071db
BLAKE2b-256 450dc06b7574847cdc8330f7bb9a85d9229cd3a279454be0b50a8d3e4149f99a

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13441b92e963dd7f34d226247907345d6c605d88784ca75d81ae583cd67acd7c
MD5 faed95f3c2b1a0290b89b2686e65ae43
BLAKE2b-256 f6894b3b856afd33118ee19e1b51ef89526d46c521647ec980c6ddd7f16d5954

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4583e3d60fec6dfde9a023d64dd2d4b91a9eaaa01a22062daec367dcd298fea9
MD5 b9b1fa5d6d773f062733d1d9a3a3571b
BLAKE2b-256 53eea1bb92d4e284ea6e338662f032ac501a4b849422442e9b5e94ffd8a3611d

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2dc78a99f3f819e45979f34a539b7df92d149ea8032f666eca2b60298788d7ad
MD5 61ceabd0c3db95769b4114f78ca2a9c2
BLAKE2b-256 5266df169329d3652f8420781aa10c938a87e1bab50020d34feeef9d2db61300

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 060027aa55584e0c089638b12aca120cf38a07cf9485f30ed1581b791ffafc98
MD5 5e5ea1ce20693dd4d5b38a127980d370
BLAKE2b-256 c7e7b34d73b3ec494b964fe20da75a67cdf5b45157fc03166762d9cc8d4cbae8

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

  • Download URL: pyfamsa-0.5.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyfamsa-0.5.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 6dfe3e95ab95d544f8b0b32fd650a77a758c6faf5e8ced6a90ba2fc3d481d5cd
MD5 d0a381124e194baea3ce009d3c28146f
BLAKE2b-256 30e288764e0ebfd69ff159acd2ab589733ddd694db4cf448fcf9cd518856bb8d

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 626aa4e43e7be33df1bbf14d15b2c682756327f2701e7f9837f9feab3cc93420
MD5 7cc5de0fea5734e9afa0a33121e7cd2e
BLAKE2b-256 e6eed93218391b8e632f843d1db7e0418620988f455c387e7266fa1ac37559fc

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35077790faa5c82c589bca432cfa85594bf13880c49b936f9d894e2adb0ffa85
MD5 6ed0e3951ee5b547f720cf6469bb699f
BLAKE2b-256 29898fe69716700a833e0ebef0ccce37c484332dcd522326508e49ef65f0c9e1

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

File details

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

File metadata

File hashes

Hashes for pyfamsa-0.5.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 65f227faa1cead509daf9f02370db8ebea0ba3c0f2c1a613d0655168cb36efc9
MD5 707b6ec9501a3a3d3604a6b32bb662d7
BLAKE2b-256 f1a0639dfed3c52b0ad62bc5b30d051711c403bfaa575c0bd7436070a1ee9592

See more details on using hashes here.

Provenance

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

Publisher: package.yml on althonos/pyfamsa

Attestations:

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page