Skip to main content

Rudimentary BLAST archive reading in Python

Project description

pyblast4_archive

This library provides limited Python bindings to the CBlast4_archive and related objects from the NCBI C++ Toolkit. CBlast4_archive allows the programmer to interpret BLAST output in format 11 "BLAST archive format (ASN.1)," and this Python library aims to make such interpretation possible in Python.

Installation

The latest portable binary wheel for your platform can be installed from PyPI using pip.

python -m pip install pyblast4_archive

Alternatively, you can build the library yourself.

Getting started

The main class of interest in this library is Blast4Archive. To load Blast4Archive objects from a binary ASN.1 BLAST Archive file, use the from_path classmethod.

fomr pyblast4_archive import Blast4Archive

archives = Blast4Archive.from_path("blast_results.asn1", "asn_binary")

or for a text ASN.1 file,

archives = Blast4Archive.from_path("blast_results.asn1", "asn_text")

To decode query IDs from the archives, use decode_query_ids.

from pyblast4_archive import decode_query_ids

decoded_queries = decode_query_ids(archives)

Likewise, to decode subejct IDs, use decode_subject_ids.

from pyblast4_archive import decode_subject_ids

decoded_subjects = decode_subject_ids(archives)

To decode BLAST database OIDs, a SeqDB object is needed. SeqDB objects can be constructed from a path to the BLAST DB and its database type ("nucleotide" or "protein").

from pyblast4_archive import SeqDB

db = SeqDB("/path/to/blast/db", "nucleotide")

Then, to decode database OIDs, use decode_database_oids.

from pyblast4_archive import decode_database_oids

decoded_oids = decode_database_oids(archives, db)

Dependencies

This software depends on the NCBI C++ Toolkit and Boost.Python.

Portable binary wheels

Since this software provides Python bindings for a C++ library, it must be compiled, unlike a pure Python library. Pre-built portable binary wheels for many platforms are avaiable on the Python Package Index (PyPI). The full process for building these wheels is described by the package.yml GitHub Actions workflow file.

Supported platforms

The platforms for which I am currently building portable wheels to upload to PyPI are listed below. For other platforms, it might be necessary to build this library yourself.

Linux, glibc (manylinux)

Architectures
  • x86_64
  • i686
  • aarch64
  • s390x
  • ppc64le
Python implementations
  • CPython 3.11
  • CPython 3.12
  • CPython 3.13 (+ free threading)
  • CPython 3.14 (+ free threading)
  • PyPy 3.11

macOS

Architectures
  • x86_64
  • aarch64
Python implementations
  • CPython 3.11
  • CPython 3.12
  • CPython 3.13 (+ free threading)
  • CPython 3.14 (+ free threading)
macOS versions
  • macOS 15 (Sequoia)
  • macOS 26 (Tahoe)

Dependency licenses

Portable binary wheels operate by bundling the main library with its transitive dependencies. This is accomplished with auditwheel on Linux or delocate on macOS and is abstractly similar to static linking. Source code for these transitive dependencies are not included in the Git repository for this library since those wanting to build this library themselves will most likely prefer to download the transitive dependencies from a package manager or else build them from upstream sources.

The sources for the transitive dependencies are included in the source tarballs accompanying each release of this software on GitHub. (Due to file size limitations, the source tarballs available from PyPI do not currently include these dependencies.) Dependency sources for Linux can be found under the deps/linux directory, and dependency sources for macOS can be found under the deps/macos directory.

Both the binaries and sources of the transitive dependencies are obtained from the package manager of the system used for building. For Linux, the manylinux_2_28 container (based on AlmaLinux 8) was used. The manylinux_2_28 container uses the default AlmaLinux 8 repositories, Extra Packages for Enterprise Linux, and a custom DNF repository hosted at https://www.cs.uky.edu/~acta225/manylinux_packages/almalinux/8 . For macOS, the default Homebrew taps hombrew/core and homebrew/cask were used, as well as a custom actapia/cibuildwheel_packages tap.

For Linux dependencies, the RPM .spec file and any patches associated with the package are included. For macOS dependencies, the Homebrew Formula .rb file is included. In both cases, any patches for the pakcage have been pre-applied.

Full license texts for each dependency may be found with the dependency's source code under deps/. Additionally, the LICENSES.linux and LICENSES.macos files summarize the licenses of the transitive dependencies bundled in the portable wheels.

License

This software is licensed under the GNU General Public License, Version 3, which may be found at LICENSE.

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

pyblast4_archive-0.1.11.tar.gz (28.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pyblast4_archive-0.1.11-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (25.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

pyblast4_archive-0.1.11-pp311-pypy311_pp73-manylinux_2_28_i686.whl (26.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

pyblast4_archive-0.1.11-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (23.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

pyblast4_archive-0.1.11-pp311-pypy311_pp73-macosx_26_0_arm64.whl (12.9 MB view details)

Uploaded PyPymacOS 26.0+ ARM64

pyblast4_archive-0.1.11-pp311-pypy311_pp73-macosx_15_0_x86_64.whl (13.8 MB view details)

Uploaded PyPymacOS 15.0+ x86-64

pyblast4_archive-0.1.11-pp311-pypy311_pp73-macosx_15_0_arm64.whl (13.0 MB view details)

Uploaded PyPymacOS 15.0+ ARM64

pyblast4_archive-0.1.11-cp314-cp314t-manylinux_2_28_x86_64.whl (25.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

pyblast4_archive-0.1.11-cp314-cp314t-manylinux_2_28_s390x.whl (29.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ s390x

pyblast4_archive-0.1.11-cp314-cp314t-manylinux_2_28_ppc64le.whl (27.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ppc64le

pyblast4_archive-0.1.11-cp314-cp314t-manylinux_2_28_i686.whl (26.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686

pyblast4_archive-0.1.11-cp314-cp314t-manylinux_2_28_aarch64.whl (24.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

pyblast4_archive-0.1.11-cp314-cp314t-macosx_26_0_arm64.whl (12.9 MB view details)

Uploaded CPython 3.14tmacOS 26.0+ ARM64

pyblast4_archive-0.1.11-cp314-cp314t-macosx_15_0_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

pyblast4_archive-0.1.11-cp314-cp314t-macosx_15_0_arm64.whl (13.0 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

pyblast4_archive-0.1.11-cp314-cp314-manylinux_2_28_x86_64.whl (25.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pyblast4_archive-0.1.11-cp314-cp314-manylinux_2_28_s390x.whl (29.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pyblast4_archive-0.1.11-cp314-cp314-manylinux_2_28_ppc64le.whl (27.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pyblast4_archive-0.1.11-cp314-cp314-manylinux_2_28_i686.whl (26.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pyblast4_archive-0.1.11-cp314-cp314-manylinux_2_28_aarch64.whl (24.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pyblast4_archive-0.1.11-cp314-cp314-macosx_26_0_arm64.whl (12.9 MB view details)

Uploaded CPython 3.14macOS 26.0+ ARM64

pyblast4_archive-0.1.11-cp314-cp314-macosx_15_0_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

pyblast4_archive-0.1.11-cp314-cp314-macosx_15_0_arm64.whl (13.0 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

pyblast4_archive-0.1.11-cp313-cp313t-manylinux_2_28_x86_64.whl (25.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ x86-64

pyblast4_archive-0.1.11-cp313-cp313t-manylinux_2_28_s390x.whl (29.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

pyblast4_archive-0.1.11-cp313-cp313t-manylinux_2_28_ppc64le.whl (27.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

pyblast4_archive-0.1.11-cp313-cp313t-manylinux_2_28_i686.whl (26.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ i686

pyblast4_archive-0.1.11-cp313-cp313t-manylinux_2_28_aarch64.whl (24.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

pyblast4_archive-0.1.11-cp313-cp313t-macosx_26_0_arm64.whl (12.9 MB view details)

Uploaded CPython 3.13tmacOS 26.0+ ARM64

pyblast4_archive-0.1.11-cp313-cp313t-macosx_15_0_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.13tmacOS 15.0+ x86-64

pyblast4_archive-0.1.11-cp313-cp313t-macosx_15_0_arm64.whl (13.0 MB view details)

Uploaded CPython 3.13tmacOS 15.0+ ARM64

pyblast4_archive-0.1.11-cp313-cp313-manylinux_2_28_x86_64.whl (25.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pyblast4_archive-0.1.11-cp313-cp313-manylinux_2_28_s390x.whl (29.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pyblast4_archive-0.1.11-cp313-cp313-manylinux_2_28_ppc64le.whl (27.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pyblast4_archive-0.1.11-cp313-cp313-manylinux_2_28_i686.whl (26.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pyblast4_archive-0.1.11-cp313-cp313-manylinux_2_28_aarch64.whl (24.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pyblast4_archive-0.1.11-cp313-cp313-macosx_26_0_arm64.whl (12.9 MB view details)

Uploaded CPython 3.13macOS 26.0+ ARM64

pyblast4_archive-0.1.11-cp313-cp313-macosx_15_0_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

pyblast4_archive-0.1.11-cp313-cp313-macosx_15_0_arm64.whl (13.0 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

pyblast4_archive-0.1.11-cp312-cp312-manylinux_2_28_x86_64.whl (25.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pyblast4_archive-0.1.11-cp312-cp312-manylinux_2_28_s390x.whl (29.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pyblast4_archive-0.1.11-cp312-cp312-manylinux_2_28_ppc64le.whl (27.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pyblast4_archive-0.1.11-cp312-cp312-manylinux_2_28_i686.whl (26.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pyblast4_archive-0.1.11-cp312-cp312-manylinux_2_28_aarch64.whl (24.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pyblast4_archive-0.1.11-cp312-cp312-macosx_26_0_arm64.whl (12.9 MB view details)

Uploaded CPython 3.12macOS 26.0+ ARM64

pyblast4_archive-0.1.11-cp312-cp312-macosx_15_0_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

pyblast4_archive-0.1.11-cp312-cp312-macosx_15_0_arm64.whl (13.0 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

pyblast4_archive-0.1.11-cp311-cp311-manylinux_2_28_x86_64.whl (25.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pyblast4_archive-0.1.11-cp311-cp311-manylinux_2_28_s390x.whl (29.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pyblast4_archive-0.1.11-cp311-cp311-manylinux_2_28_ppc64le.whl (27.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pyblast4_archive-0.1.11-cp311-cp311-manylinux_2_28_i686.whl (26.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pyblast4_archive-0.1.11-cp311-cp311-manylinux_2_28_aarch64.whl (24.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pyblast4_archive-0.1.11-cp311-cp311-macosx_26_0_arm64.whl (12.9 MB view details)

Uploaded CPython 3.11macOS 26.0+ ARM64

pyblast4_archive-0.1.11-cp311-cp311-macosx_15_0_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

pyblast4_archive-0.1.11-cp311-cp311-macosx_15_0_arm64.whl (13.0 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

File details

Details for the file pyblast4_archive-0.1.11.tar.gz.

File metadata

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

File hashes

Hashes for pyblast4_archive-0.1.11.tar.gz
Algorithm Hash digest
SHA256 5cfe09901d30bdb2476e44500102ca57716f1bcc1a2d54001f3aa64215457f27
MD5 b3dec56711d8664a6b38792843650fea
BLAKE2b-256 680862dcb37d496b0dc94c54ec2fc6a644e49c1baf4e2c823da0c2ea01e4526a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11.tar.gz:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8a300dbbe17c26ae6e975b37e9504f612f7fed2d83a2c534411995c4abaf06ac
MD5 a6be2b9194aee83668e3f1d4c9dfa5a3
BLAKE2b-256 ef8a8723683374b92db34d0b090164831b8794b983d642150115184ceaa41555

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-pp311-pypy311_pp73-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 18d050d801a861d189660193f6e3e8f09fe93a74bb7fe435d13a956cfc62226b
MD5 2cc15d5a3feaa33cca14074433fa4e26
BLAKE2b-256 44ae7def89e85fd0b4f50001118b546f8f81cf914cc19f7323f44629426c3c71

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-pp311-pypy311_pp73-manylinux_2_28_i686.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61433c06a647cf9058ef3fb78eac610b972871973d7d22c666e750a4d3a8e13f
MD5 dce6ff6200b55ee30ce5e4960cfce24b
BLAKE2b-256 900e6222a9080894311918bb2e4513fb1c70569e2b76638713feaea261b34ffa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-pp311-pypy311_pp73-macosx_26_0_arm64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-pp311-pypy311_pp73-macosx_26_0_arm64.whl
Algorithm Hash digest
SHA256 1f0f8b540d0909e681ed8e41ce5fffa95f873488c340547c50e5cb89442f49bc
MD5 9e9ffb4e8e4f57f76b33dd881a8f95c7
BLAKE2b-256 111cbfeff86eb03493c45de779af9820fff8ea7f260f4ef7693e9b2abfb70268

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-pp311-pypy311_pp73-macosx_26_0_arm64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-pp311-pypy311_pp73-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-pp311-pypy311_pp73-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 52a9a6d2476fa31794247bbda2aebc158ab5083bd2e18b174f50581ed8ba3eba
MD5 a81016159e154f7e377dff37f0b476dd
BLAKE2b-256 fac5ad774e7c870b05ee951ea0a21acc7116eff39633821aabe96622b1157905

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-pp311-pypy311_pp73-macosx_15_0_x86_64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-pp311-pypy311_pp73-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-pp311-pypy311_pp73-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 8394650f79f1c82ac3cdff2b04fe1688838dbdf01b13e027364a02de609539df
MD5 91609e4ee14469be5940b792cfa25a83
BLAKE2b-256 ea3e310bc056e7d8acb33f6081414eebe61a22733c8ddb643c8a554a3aafcaa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-pp311-pypy311_pp73-macosx_15_0_arm64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c1cc72493c6d46c25a6fc7bde2e91e54544329705134f2f446c71ab2b75033a1
MD5 b407b91e2f07ec775fd726322cd637f6
BLAKE2b-256 0b25deea63bd35be8c286fb42e620da30953da13a0ff4bb1e32df50dafdc687e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp314-cp314t-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp314-cp314t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 bc1752c33adafbd985e329f17823f634e3246f66076a1bf18d4c6b01b0b4a31c
MD5 a42e4d0a8755ca5a7c64f0db99d6ef7f
BLAKE2b-256 c3714ea373122091d89aad48fe6d74ce9bdf0a019afc89dfcc898ee33a61486d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp314-cp314t-manylinux_2_28_s390x.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp314-cp314t-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp314-cp314t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3b98027e9a839623a7fdf15ce92607fffd20c5c33fa0430ffc3eb4a426a3f9b5
MD5 9c51b70a150cd52599e5d38e0369d9a6
BLAKE2b-256 c6556851b65c01729e941d816f11c2588712e14903d640f42494c5114740e6cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp314-cp314t-manylinux_2_28_ppc64le.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp314-cp314t-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp314-cp314t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 c2799fbe89987998e6356ebf9226e2657b0c8f21a0157ae367a0463f8def571e
MD5 4cac2738357a781a5f0d10d5c7896e26
BLAKE2b-256 5aae91a8bd198240bb490db4e2408dde8b107f02e11888c739f5c24c2bbb152b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp314-cp314t-manylinux_2_28_i686.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e67545b1e3097e41271458a918d68cc4122c095044df72527d8ca6a0a3f7dee0
MD5 e8d009e0cbca3e45d7da2f18a2513da6
BLAKE2b-256 45b988ebcba2000b8111fb540505afe2eb1afc85b6d3e2b26b8e31a22e1de38d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp314-cp314t-macosx_26_0_arm64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp314-cp314t-macosx_26_0_arm64.whl
Algorithm Hash digest
SHA256 89d9d17dc32cc5c5ddfd9f5e5b45355ed6d4726c6016bb8e95e940cb1ab4d492
MD5 d4982d713a83c58fc0331b18c67c0d02
BLAKE2b-256 aa4766f9423cd6d6a11de0aa255a18dc3ac6308d25a9f62f91696bf70ea2cf3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp314-cp314t-macosx_26_0_arm64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 a8455d29ecabfff0ad17a5abfa296c7362d5f9613cbe1ec45690cc4307e7116f
MD5 fd7beb25ff05ba28fb7914f6c5fa5069
BLAKE2b-256 91e3824d1e10ef6640e34bec82caa17deb3e4d4d03cb80f42172c5e54b36fdc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp314-cp314t-macosx_15_0_x86_64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp314-cp314t-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 e58d6d72472e78cab66817da2fefe40204ba6881a27904ac6495802c9c56deaa
MD5 3cfc19f5091e5428a6027aeb15402945
BLAKE2b-256 4b8acf1561bcbe65744af54f6a59b56ccd63a76cd08b2fc4e70ef848ba578b98

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp314-cp314t-macosx_15_0_arm64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b7950d9826ad0d221075b41ca48c7f25e63ce92afc2c925f2e3c12a0bb20af25
MD5 7adc80f99d79c3f0425bab41f779ee28
BLAKE2b-256 1fcce798989a745c16e69dae10d316afef59b20519acf81b3504e831ee1083a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp314-cp314-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 3d6d8a34b22a3065a550811b84883281dd4ead009fbf106a7f3000de25ba04bb
MD5 c83f8bd61d3542eb03895efa21060543
BLAKE2b-256 66e5e022f22d6b838ee04dc2f72acc6027cbcc1bfe24cf691ce76b7d9376696c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp314-cp314-manylinux_2_28_s390x.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp314-cp314-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c006588ac2d0fa2d949733c3fbc49541c1d3059de036776f4175fa75225228d4
MD5 178018ed1df7ff73cd35c6467d1e3e52
BLAKE2b-256 02fe10f17d7eaded30649a98fb5a3b80ebc093408a97929bd0bb9132fe068c37

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp314-cp314-manylinux_2_28_ppc64le.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a6a09a4ab321dc341feacd86bb3f6e81eeddf4ce32f90c2ad11c9203c47a862e
MD5 e6b308b3b964ea48101d43ab9fe04b24
BLAKE2b-256 162a2c375ec9455acfc53c27b7abdd2ea8096bcc9dd98b27b470130d240cc44c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp314-cp314-manylinux_2_28_i686.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f483a72f8228689335c5da9dc5ee0933ff1a5c27568535576f53589210ef0ef
MD5 aa3ff6b628104214f623824886544871
BLAKE2b-256 6d0dbfb12a24318f01276b87b1b624967b1acd3725ac1077f1fc96900b1fc3ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp314-cp314-macosx_26_0_arm64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp314-cp314-macosx_26_0_arm64.whl
Algorithm Hash digest
SHA256 79d129aa36f79d45e0bbfdfe9bb22c552805ed8a47084db81cf74ace998dd2b1
MD5 6d57bf2f00f6c6e1691ca9e718cf212d
BLAKE2b-256 f4e39061577de96c66c2d3edf9dc00cc3c7fd0ac4d564701535f3cd5476e70eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp314-cp314-macosx_26_0_arm64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 99f04b061cccdbf8a27f69ca9372256dd5e4896ef9db269ba58a2c938daae877
MD5 f01350d9f0a19103768114fead5c61c8
BLAKE2b-256 0e45184aff9f9db0ebf5b27a43e66dd0c66b4f2443d975a3daf4c7469875a988

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp314-cp314-macosx_15_0_x86_64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 6cf53c1d684429b2bf71feb87f147404201495ca82bea218312fcfb24014ac0b
MD5 208f9a6ff884b75b6b1a4f1eceffc552
BLAKE2b-256 698f49334553d40f6e38ca11ca849043bfe81e70e770b8fa9540dc159c72c4a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp314-cp314-macosx_15_0_arm64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp313-cp313t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp313-cp313t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2dfa550c506f7faae2c8a2184a67d36505707ad1db66b72329db358c900fa043
MD5 1e4d5673e07fe388f24700fdc3613a3f
BLAKE2b-256 e3be4670a532a83f59a85407a2510b4cdf9fda671991313648c3842a0238bede

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp313-cp313t-manylinux_2_28_x86_64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp313-cp313t-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0d32b915bd14a5683979ced28526729415952df25351901ff3e1c10a6dd038d6
MD5 c6e6715f08daa1dfaf376fc34e2ef17e
BLAKE2b-256 d6c4904e304c8d75d0061e6ee677f4be7155d58e2f5c684c247f53dfaf05d6f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp313-cp313t-manylinux_2_28_s390x.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp313-cp313t-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 aa12ccfc2c9e05938495bd209b18565e8f3e802b01e91f11f3e9cba726c27709
MD5 2ef5a4a1f5e4deec7086600572507688
BLAKE2b-256 5058abe0509ca48761ab14f29fddf67356e1b1bf2db11071fcba0237d7235ee5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp313-cp313t-manylinux_2_28_ppc64le.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp313-cp313t-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp313-cp313t-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8b9663383f071e6730827b971c8db536facc77120036758990e83d854ee080ad
MD5 56094fc5f75b5204e25ba471a0b9b846
BLAKE2b-256 208e8a2f7a46c2862d9d80b2e379aee3ea93ed2b84c5a85833a6063ef7004fdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp313-cp313t-manylinux_2_28_i686.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b20aa09392cff7e9b613bd7f850ea4b3f90908e628e00ea9faeccd319206cdca
MD5 ac9c439f11c65150a7ca3a4d0c1100b3
BLAKE2b-256 a6bf2eaef11bbb945c10a7e1b5fdf2b00016f5abfb98ed1132b994f272ef911f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp313-cp313t-manylinux_2_28_aarch64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp313-cp313t-macosx_26_0_arm64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp313-cp313t-macosx_26_0_arm64.whl
Algorithm Hash digest
SHA256 c6e679cce000464f8bd1dc39570760e7b6f4f65dfe93b2283c6da102607c3729
MD5 4f23574e85cafa12c4c59e7e08bd79d6
BLAKE2b-256 6e55c12feaea27c4fd7302ca40b09c7629352b49c23fc4e65a1139e7e853c238

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp313-cp313t-macosx_26_0_arm64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp313-cp313t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp313-cp313t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 bd8df298b608def0efbafd0823a95d1ceaa80deaa5786b5539a916c04141e404
MD5 f7563ef5942513a18c69ac43d4bfaa6c
BLAKE2b-256 43d879d896b01e3293960df3ec1116c146a485f4c6bea5a6578b76088ccb46d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp313-cp313t-macosx_15_0_x86_64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp313-cp313t-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp313-cp313t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 4e39c1d86f1817dc7408bac0a2895e928aa5d32daf519a034f834125d572ec43
MD5 9be3dc4e7b405ae60e4dd154d06eba67
BLAKE2b-256 b7c665ef655ed4cb0455b6976a838e77d65b6cbec6f379a3857510e44177a4e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp313-cp313t-macosx_15_0_arm64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2632cebd249df6f06aaa882676bf012e655fa1ebcd09fbfdd99856e00c11e7a0
MD5 7b53f906c55a256058505cf975373486
BLAKE2b-256 e23d45846f14ef348bb7f09d9e6803777c0f3ce2c9920e9cc845d2ba36599738

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp313-cp313-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4ebdea40898660e116c72f086330045f3e01de71679c3f85bf9d5a82ff7176b2
MD5 aa198d4f9b7803d8ebce030c8d926de4
BLAKE2b-256 ade10667308ee7d57b8c1a2042ae5b277232a7f6fcdea59eded89e1a34bc8dcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp313-cp313-manylinux_2_28_s390x.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp313-cp313-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9c3ca041cb9259564119e5358036cd28ab38c14c56e6fadabbe422e5deaf2391
MD5 424873c94e76fb905fb466af8a38a887
BLAKE2b-256 028bbe8b74e07db0312a157175df8edc9a24aea3b582c703c438c7564d755fc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp313-cp313-manylinux_2_28_ppc64le.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 c412afd783b1da00578b75359bf3760bfc3f422c7a0aef02a8d6e11ccb2f52b6
MD5 c9a68e1ed57707f49c770f2815d99ab9
BLAKE2b-256 24f43c7600943fc9a4b014490631790da3804fa4627ee4c0abb5386b23702851

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp313-cp313-manylinux_2_28_i686.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 effdc60def70f10b4340311b4e16b66f1d53c54d8681e5d7370f8230f2f94e1c
MD5 20794b8290860762ea9524559ca51514
BLAKE2b-256 ffd1300d172267111345a63928cbde8ce4911393569517b2b17df5984b1c2aa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp313-cp313-macosx_26_0_arm64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp313-cp313-macosx_26_0_arm64.whl
Algorithm Hash digest
SHA256 26b4666ce400316ceec26d4930bfc23dde0133aaebb5d8917d2b1bfbdf413f38
MD5 7c199035f00a87a1e9eaf3ebe048cfe7
BLAKE2b-256 f781dcea4c485c16ed7624c831b9888f8740c6693393b71f8dd9b53e0285da6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp313-cp313-macosx_26_0_arm64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 329f41663a7c72639b8bd95b6c7aae5a82a49c9f25a8f16085c17756fadcab64
MD5 84ca9dda1af785fd17687758caa35c3a
BLAKE2b-256 e338fd439f353c8f2fc60e5a7e39fa68bd2eb11b0d9ce8d76ad73ef8d5f49496

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp313-cp313-macosx_15_0_x86_64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 8875b9e27a02834348a56fcc618f735dea6e6a25f1bfb40dc6a1c99bc9669164
MD5 2232cebc6bfbae602f8fc9881ebf14ec
BLAKE2b-256 b4a8d07d1bcb0ba56b1b2bacf333f538b360f60dd3c9e268ae5a48173951e230

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp313-cp313-macosx_15_0_arm64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c044b1411bcb7ce32d2847933c0f6f16137f81748d1fdcbc2d3d2960495af409
MD5 329953fe4d6097392d1ab8e719959c5b
BLAKE2b-256 19f014e88815028cb9655b2a94f67e6dd461fb602a145e2aefdb14266d3fbf4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp312-cp312-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6869130398f0188842707241ef063ba4da2c7cad5a5f52c0e29d7e16e98136c6
MD5 6def5e941b0f42b7e1bf7afdda1414c0
BLAKE2b-256 53c6fb4f682f8d430253532a3a81350dfcb52ebc1fa0e576f706123e59debf4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp312-cp312-manylinux_2_28_s390x.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp312-cp312-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2b25571cf9f20fe752b76f2e1422579a2fd63e74301f812e726dbfca96c23acb
MD5 9370af173160061ad4f5e00566c446d1
BLAKE2b-256 90d101fb88d182651c618b0a6fc7e0e3ac6b1f80b10832539e10dc980344cc5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp312-cp312-manylinux_2_28_ppc64le.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ccbfd60ccbafcfe61d30821772054cf3da35c48ba4c17cc4c5f331ab9cec0b93
MD5 ef917e3225b5310be1dff4d1785620e6
BLAKE2b-256 ef57bbe1a859b4085103165a4b011e5f044574c9e44d2923dada411c7dcdf26b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp312-cp312-manylinux_2_28_i686.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 19907bba7e6bf095c0adf44c74e4e32b4f0e3ce10b2243bf32d4a706b2ee483b
MD5 29b5c36ea66c085b83b6775e1aa7b1c1
BLAKE2b-256 792f37090438b44cef34f554d2f3f697375b1cf4bc540c7c80972f1bffc0f303

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp312-cp312-macosx_26_0_arm64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp312-cp312-macosx_26_0_arm64.whl
Algorithm Hash digest
SHA256 a649373150b7e97678a3a3d75ce16122785a78073099fe9c2b1017e25f9ee3e4
MD5 4a47f4bef274e4490fa3952698060af2
BLAKE2b-256 23a0fcf8e29a5fe0f844b17da6a96288ecbbb7a9487d65079225206599d216b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp312-cp312-macosx_26_0_arm64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 dcfa39130ea7a4cf3bd90f449bc834f448aeb771eb2b5004faca948a124bd084
MD5 b3420c474131e6ca91087faa2699e24e
BLAKE2b-256 da5941594ea023d9cb575d75fc6469e28c1e088fc1c9dbab56fa4eac7074d61e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp312-cp312-macosx_15_0_x86_64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 4d4613f3ae852e734396abe2c9aa480dcc75469855262f5891e86998f9b41b13
MD5 1ed2e6cdbaa08b3892ce367dc5b1fc4a
BLAKE2b-256 43f89ad0e0b8f37388d17d6513a31cd137767116b2f20727512a1459e4225dda

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp312-cp312-macosx_15_0_arm64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c050a6bde45699ce6e31245e5237c6883c1bc9248cb296644ec8e4ca205e3aae
MD5 0b460c300f96bb283d05653f3bbc9740
BLAKE2b-256 04523df43773a0129a66389b2aaadb733d867c0782f27970bd6d3c976b3610e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp311-cp311-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f91229382b7b8dd22966878f2aad2a2efd46efa8d7fc8be2a25e05441600687a
MD5 3100a096803f9d84637e81a07f733735
BLAKE2b-256 52d5566464799e40d348a161a9078f64f9cf9cfe63b95f37822186e8db702242

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp311-cp311-manylinux_2_28_s390x.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp311-cp311-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2eb5456a648a30d39d73f7e46bb6023be64133fa44ca5e6db6a6f5a638832246
MD5 3ad0c76014709cb402b27907ca45124e
BLAKE2b-256 b3523edc86018df6556acd97c6eab86c7bd6e984f1284671bd386ddab6b94726

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp311-cp311-manylinux_2_28_ppc64le.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9b1dc49d49582052472228aa70857d212396e19d91f386fab955c91e3e828f65
MD5 461bf6440ef565ee77e7f737310a4d54
BLAKE2b-256 ba46196e34969d9c853bf7c94cde2326f6f94e1fc92c0c68481a5097f67b3e15

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp311-cp311-manylinux_2_28_i686.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 55a85ed424a61c46c9714fd3ee25a63bd344ca158560257c39e2b71e114334e1
MD5 0e0c610b259ec7c01a9d7214e40f9bd5
BLAKE2b-256 fcdc7be39d569df77aaad0be2fd8f051b0cdc01794866df9f2008b6b81930869

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp311-cp311-macosx_26_0_arm64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp311-cp311-macosx_26_0_arm64.whl
Algorithm Hash digest
SHA256 536f7ce070f0e360f1a25b2dc07a8c6af20078f04a1a5034270f102698c1a6fb
MD5 d33caa2112cc0a3dc711b80fcf0b3c08
BLAKE2b-256 278346da4e7d71f78b49162b7c52c2a466343a108e25afc22e303d8e073023d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp311-cp311-macosx_26_0_arm64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f99b616044bd0cf9317a2ed4a72fa83b9f18a659657940cac386e7835084efd8
MD5 23e707ac255883f3d9d694e5d118b74b
BLAKE2b-256 00739ebb27a1dfad608c098248b3b0d8219b1e5301fd6a15e4b1f061a4a31776

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp311-cp311-macosx_15_0_x86_64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

File details

Details for the file pyblast4_archive-0.1.11-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for pyblast4_archive-0.1.11-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c32b82b2b406224bc29593199f5d19361c5e441ae06c321f65ae8a82a300a5ca
MD5 aca395c2556d343650559599792d6495
BLAKE2b-256 2ab08d9e94f4c4bffd988adb3cca3a60c46c647df45d7316302338dc488a8095

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyblast4_archive-0.1.11-cp311-cp311-macosx_15_0_arm64.whl:

Publisher: package.yml on actapia/pyblast4_archive

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

Supported by

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