Skip to main content

A framework for representing biomolecular structure.

Project description

AMPAL

A simple, intuitive and Pythonic framework for representing biomolecular structure.

Installation

AMPAL is currently tested with version of Python above 3.7, although it should still work with earlier versions. You can install AMPAL from pip:

pip install ampal

Or from source by downloading/cloning this repository, navigating to the folder and typing:

pip install .

AMPAL uses Cython, so if you're installing from source make sure you have it installed.

Super Quick Start

Load a PDB file into AMPAL:

my_structure = ampal.load_pdb('3qy1.pdb')
print(my_structure)
# OUT: <Assembly (3qy1) containing 2 Polypeptides, 449 Ligands>

Select regions of the structure in an intuitive manner:

my_atom = my_structure['A']['56']['CA']
print(my_structure['A']['56']['CA'])
# OUT: <Carbon Atom (CA). Coordinates: (6.102, -4.287, -29.607)>

Then climb all the way back up the hierachy:

print(my_atom.parent)
# OUT: <Residue containing 9 Atoms. Residue code: GLU>
print(my_atom.parent.parent)
# OUT: <Polypeptide containing 215 Residues. Sequence: DIDTLISNNALW...>
print(my_atom.parent.parent.parent)
# OUT: <Assembly (3qy1) containing 2 Polypeptides, 449 Ligands>

This is just a quick introduction, AMPAL contain tonnes of tools for making complex selections and performing analysis. Take a look at the docs to find out more.

Release Notes

v2.1.0

  • Adds load_mmcif_file function
  • Adds more typing information
  • Tidies up __repr__ strings

v2.0.0

  • Breaking change: removes find_aa_info function and tests, which enables us to remove the requests dependency. This kind of functionality is better handled by the user, as there is a security concern regarding making HTTP requests without the user explicitly opting in.
  • Updates project to use modern structure, enabling easier installation on all platforms.
  • Automated builds and uploads to PyPI on new version updates.

v1.5.3

  • Fixes bug with get_slice_from_res_id to enable non-continuous sequences to be selected.

v1.5.0

  • Adds rotamer classification with the classify_angle_as_rotamer in the analyse_protein module.
  • Fixes a bug with parsing structure files

v1.4.0

  • Adds get_ss_regions to ampal.dssp. This function can be used to extract all regions of a protein in a particular secondary structure.
  • Fixes bug with DSSP ss_region tagging. End residues used to be missed.

v1.3.0

  • Adds an interface for NACCESS. Functions for using NACCESS to calculate solvent accessibility.

v1.2.0

  • Adds an interface for DSSP. If you have DSSP on your computer and have the mkdssp command available on your path, you can use the ampal.tag_dssp_data function to add secondary structure information to the tags dictionary of the residues in your structure.
  • Adds the ampal.align module. Contains a simple class for aligning two Polypeptides using MMC. The simplest interface is the align_backbones function.
    • This is currently super inefficient and will be reimplemented.

v1.1.0

  • Adds the centroid property to residues.

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

ampal-2.1.0.tar.gz (2.6 MB view details)

Uploaded Source

Built Distributions

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

ampal-2.1.0-cp313-cp313-win_amd64.whl (489.8 kB view details)

Uploaded CPython 3.13Windows x86-64

ampal-2.1.0-cp313-cp313-win32.whl (472.4 kB view details)

Uploaded CPython 3.13Windows x86

ampal-2.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

ampal-2.1.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

ampal-2.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

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

ampal-2.1.0-cp313-cp313-macosx_11_0_arm64.whl (505.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ampal-2.1.0-cp313-cp313-macosx_10_13_x86_64.whl (527.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

ampal-2.1.0-cp312-cp312-win_amd64.whl (491.1 kB view details)

Uploaded CPython 3.12Windows x86-64

ampal-2.1.0-cp312-cp312-win32.whl (473.1 kB view details)

Uploaded CPython 3.12Windows x86

ampal-2.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

ampal-2.1.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

ampal-2.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

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

ampal-2.1.0-cp312-cp312-macosx_11_0_arm64.whl (508.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ampal-2.1.0-cp312-cp312-macosx_10_13_x86_64.whl (529.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

ampal-2.1.0-cp311-cp311-win_amd64.whl (499.2 kB view details)

Uploaded CPython 3.11Windows x86-64

ampal-2.1.0-cp311-cp311-win32.whl (477.8 kB view details)

Uploaded CPython 3.11Windows x86

ampal-2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ampal-2.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

ampal-2.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.5 MB view details)

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

ampal-2.1.0-cp311-cp311-macosx_11_0_arm64.whl (508.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ampal-2.1.0-cp311-cp311-macosx_10_9_x86_64.whl (530.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

ampal-2.1.0-cp310-cp310-win_amd64.whl (496.6 kB view details)

Uploaded CPython 3.10Windows x86-64

ampal-2.1.0-cp310-cp310-win32.whl (477.5 kB view details)

Uploaded CPython 3.10Windows x86

ampal-2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ampal-2.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

ampal-2.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

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

ampal-2.1.0-cp310-cp310-macosx_11_0_arm64.whl (507.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ampal-2.1.0-cp310-cp310-macosx_10_9_x86_64.whl (528.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

ampal-2.1.0-cp39-cp39-win_amd64.whl (496.7 kB view details)

Uploaded CPython 3.9Windows x86-64

ampal-2.1.0-cp39-cp39-win32.whl (477.7 kB view details)

Uploaded CPython 3.9Windows x86

ampal-2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ampal-2.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

ampal-2.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

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

ampal-2.1.0-cp39-cp39-macosx_11_0_arm64.whl (507.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ampal-2.1.0-cp39-cp39-macosx_10_9_x86_64.whl (528.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

ampal-2.1.0-cp38-cp38-win_amd64.whl (497.5 kB view details)

Uploaded CPython 3.8Windows x86-64

ampal-2.1.0-cp38-cp38-win32.whl (478.4 kB view details)

Uploaded CPython 3.8Windows x86

ampal-2.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

ampal-2.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

ampal-2.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.4 MB view details)

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

ampal-2.1.0-cp38-cp38-macosx_11_0_arm64.whl (506.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

ampal-2.1.0-cp38-cp38-macosx_10_9_x86_64.whl (527.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file ampal-2.1.0.tar.gz.

File metadata

  • Download URL: ampal-2.1.0.tar.gz
  • Upload date:
  • Size: 2.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ampal-2.1.0.tar.gz
Algorithm Hash digest
SHA256 da7f4b03319feab1afbf754bb8d964385a6545bd5ae0daa0cbaae4ba580456ad
MD5 30dffda9ea30c2618f86a243e7e48689
BLAKE2b-256 0b4685fde4c7da3fb43ac746b3c403d0214ec867af6527dd4ee828ab395cd909

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0.tar.gz:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: ampal-2.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 489.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ampal-2.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9aa0093268d95a4f4b7fa96430e11fc842447ac141ca9e5d32dce33350fed9f2
MD5 5b1e6c90fa31ad56ebcb42a57591cfd0
BLAKE2b-256 341da4305d5a29a039941961491a0909fc29ef2771dbac648a93c8f5d7822683

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp313-cp313-win_amd64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: ampal-2.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 472.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ampal-2.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 62d6c4a865f72b16a5b9d6801f7bab0bb694c3f38e89ad4be18e2458f614abe6
MD5 9b6025479ecfae7779ae0eaf01e83789
BLAKE2b-256 a81301e5885adb11942fad18e248205e51d332903d86f0038c0f21841648d0eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp313-cp313-win32.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54b116ed874adb0987cc1073e1901ff472e88e167863832f1d6096eaf09b68ea
MD5 e8cc72aec217b8e2c62f820e2b1e63d9
BLAKE2b-256 5a1598a10ae5a17480bdfac5c6491331774ac73458f96748bacea52699e4af84

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84aa74d59d0874afde0ed6c4328ca33c991c904adf239e201660e29a7763396a
MD5 c14ca565faca71575b8d90d12598ec21
BLAKE2b-256 2a570a2ea8a59c399383d57f86c33a3323d5ad60b68ed6c5f1e93a0b9a5fddc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ba77d4514467bee6335788aac3382f5e6348ecf97dc5e0c45310eed07478b45a
MD5 2203c76d6e72da0f8a49970066cf651c
BLAKE2b-256 62d6ebe3bf37859b08f826b70f46ad6653521c2cb13d1ed32c33a7d8e4ac7338

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2920f8a4f4814013fd6cccfc53d656b06a066198a63625a741afd5cd25544b60
MD5 a5a1237a07d9d4174dc6b6f74962f316
BLAKE2b-256 c8f02e081ba1f8857120cd7e987916f5b5d3164fa0031e84c54d888de0b9580d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 234c94235f5f7b8740c6e82b78097846c14f820c02ddd91d372090aad7677574
MD5 c43efce6df6d5613d800bd74a7befe9c
BLAKE2b-256 a75e377ba685488c78b29006c39ee920b5f74859115f6ab89e3605b7f1dfdf74

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: ampal-2.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 491.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ampal-2.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e00b58559021e8b6244a714c81fe6096884a4783c8169bf082d62ebc55b76f2c
MD5 864bc9d4a113f4e141d1f34023209750
BLAKE2b-256 b29bdd921dcbd4017c8c60c41645294ca6cfaadc37adc75c8968db23c7cb4622

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp312-cp312-win_amd64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: ampal-2.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 473.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ampal-2.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9b1b756a7bf06423703fdb669dc9be988969a30fa724a476f6e8734859969977
MD5 946ad1d3bcd307dfb371aec788c604e7
BLAKE2b-256 65319d13d4ce6c84e131e83645581db7a9676ac15f057dffd28a6a7a6e7f645e

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp312-cp312-win32.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40930fdece94e8680f5355416dede1424246b20a54f349cae6de3499eec4bf21
MD5 b5c7b279fbc2f5c5e5c7b90507e8c146
BLAKE2b-256 186285ef36dc82fa101d4a3009c50ec2d58d95edc821a20c318ba30289ecb6ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df549011142c859cd012372d13e85ae9fe9c871497f9ad262fc95821988d8eac
MD5 0ce95095ea47be2359fe16370a61818b
BLAKE2b-256 53a74e57e892e568cebd3e3a96a12dbf01823886edc9733c798fc0e8c1db1e41

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1840638611b327f3ab5f19cc86bad5255a1691dafd5696d2f55fa1dbc6c29be4
MD5 694a21a00d2c6dd43ee1a81ec9026c0c
BLAKE2b-256 78341c4faf9f6be6fa1d6945b10a5ca9c5d5f57d8250991966d9001c4598f9ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92da4d95300f6ab12eb022266b670046f812defbef897796ea304f3ff2588c15
MD5 b19f72b88c409dbb4218c08c31d09b82
BLAKE2b-256 645201afe8f5b3efdde99222002efb223dc8a5708e3459bb44b6568972da8070

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cce1fba2b061b82898da0718c73fd51efd62aa67adf5f5930c7621bc83c0c710
MD5 b6b8c329be70de486e981acdf6500ccf
BLAKE2b-256 4ffd7c8d7940637e9d6425717a33b2a923aea3722672c874a66d880f2255999b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: ampal-2.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 499.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ampal-2.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 45dd14bd940d611d8801b699fee942d0cadb2555d536772c406293e4097a55e7
MD5 43037a7ed331ad76bb31d51349dd8b20
BLAKE2b-256 24f96833146c60594919e93e43e451a08e731ae4c48d3d112ae397864edc4eaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp311-cp311-win_amd64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: ampal-2.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 477.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ampal-2.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 30ffebd9e2599874b8fe98e47f7b8c1b7ec0a42597bde574970ee8c18ce8051e
MD5 d10911b7660fde61b36765cd1dff90b2
BLAKE2b-256 f4f43f5ea6cbba3a1d077bd98baab6e0cd20e69dcd9c03c91085557b5538679b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp311-cp311-win32.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84ea2a392a7a1ae4c28b98ec627e6ff1a7691b3135a77e984cdb067a8a1b5c88
MD5 e146f89ed9e0ac6b7fe207683d3075e3
BLAKE2b-256 00556c23c7777c8504d9af5d7d36f1eade00784a4755dc0d9949652273b657b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ef3c9851ed3371e7725c6f5f7012253999d82b234270af5daf01288c5987bc3
MD5 ddaf5a37c6f6f308be10b6af2b2abb58
BLAKE2b-256 900468e7ecfb4c95a7dec0f60d712da8fada4b69964d03a98b0800c5048db343

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2b23f8f5362ebad2fe3a1735a37f904d5f7e70d547211565ad4db0929cdb4955
MD5 daf779ec3f58d522b14b37e6c4c6c5f0
BLAKE2b-256 524e6ddedae9c3d7fe764bdb284172270a6a47c1c07bba5b561bf7466889f647

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96f1387d4fff09c35f5ef4ec004cc9ea744d0610decb40cc633d06b653bbc280
MD5 cc12e55cb30a1e3b479d5ec119d5c596
BLAKE2b-256 169c3931a4fc4576e691806ce5ed743a92b802e5f5734557aed53adcbad61983

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aac4d335a134bc1eaac2eb603bfe7c34b67d3318def6cee35ffc8706ff2853d1
MD5 cafa39678465329acba539cdb492d3db
BLAKE2b-256 62d358802784d883cb9d18c4e4b91ace2882e588206c8989db71c9dd91c4dfc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: ampal-2.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 496.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ampal-2.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0c6bf134e23eab744b3f06193b8c32853bbe33354925794c90902a23a7038533
MD5 e9604394b0d0fd9f758a9803ce99a451
BLAKE2b-256 de25bb3140276fc9e7164128b39431f419baf6129884a9d34d97953a5329fa9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp310-cp310-win_amd64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: ampal-2.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 477.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ampal-2.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 28d8f2e5affaaac9e0d4b9f6ba770ff31b5bb195853159c7ffaeb96c07a7438b
MD5 bde4ca7b175ecab117c5a2ca3084969a
BLAKE2b-256 b0cc0a71e825f130e5a904a0cc745f8709995f6ee6383b66e43687d662f687ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp310-cp310-win32.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2940bb77bd39ca686ef889d71b4243cdc80ff9c92b3b869105629c84e3a80290
MD5 543d1cff515b92e9b700fc1197fcedc3
BLAKE2b-256 e765516f2729eec8806f331dac66968b835d2560b08548329a7fdb8da8026c6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 624d1b49a9796109a98e1928f47eb94cba81d999f8e62328b99a89ad546885ed
MD5 704594e17f1fae64649fd78b2094714f
BLAKE2b-256 5f5433e53f3d860d57462b19e072abe99a9824a94442f0f098bc7ccf5ca24760

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 af24026b87430494ab462abc0945f31a821c1703505e3ce5cbff531386d1b3cc
MD5 65271c1d9c754d8b52eb8cb3d74be1b6
BLAKE2b-256 c10c1ab43f2a1b5804f5bf033b6dc21608a0a5f08aef5aeca1925cafcfd914d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 637656f96e89a0b2abb44dc19d649c13757231f8add9f34c8683ed1237347912
MD5 20d98e9bc454af83b6846c852cf7b2f9
BLAKE2b-256 b2f6a117b2e509464984ca502172813e4339c63edb14a11870d150fe565a2a65

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dbab0494b21257df4dfd14469c5644e63c3daf9c5200928ef1657727e276352c
MD5 07192ae4baa4128df9331734ccb441f8
BLAKE2b-256 de04fc683d85a872cf4ce4bdd75d5a108ac9660ce4c6b9f100d029f788bf6618

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: ampal-2.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 496.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ampal-2.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 abaca9cae2f191f25fdf6d485583c4eec4098e6cd2ad24f1158e7d8c48d775af
MD5 38817a4274d34c996d5222c0f57b4e0a
BLAKE2b-256 a3eaf24f3169fc97fa8ec5fa27b408ff195478a15c4b1419e3db72af5b72c0eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp39-cp39-win_amd64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: ampal-2.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 477.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ampal-2.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b05fc3eeb80cc581415204d993f58a6ed0506a303cabdc04253f373140bf27d2
MD5 9d28851f3378c77af23e0ad1fa92f658
BLAKE2b-256 b0c4d0b532b47683553f5ab0824aad81f70fde438b631c08bac457491c958a86

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp39-cp39-win32.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ee0b22ad87a6e5a43626200de8fc9d802d0e27addbf013bda83a1b760f07527
MD5 3245c2026700a152a020d082396ca96e
BLAKE2b-256 1228ac98c6a344f312b5d8a6fe449868de2e19d2d8a6f9ab8aeb845c8a01a5fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ae053e6b891bacb074edecfaffeedd8e8c360385beb579ada913937d5c24e2d
MD5 4ae7cec727c0ca120a75e467f2d7b855
BLAKE2b-256 a5fa72eb14dc9919f4dacea2df51d49f93e96ed4422b93af64f68a8d01ccc475

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0f86d9f682b71a67a76932acb6544920f6e6339e060584aa60d6abbaa4056b94
MD5 39dbd9a600cd09e004481bcb050f47c8
BLAKE2b-256 ba3f3df4eaa63099dbc4b6d2f28bcb1492497b6f4ec1590f32c98cc56a2b10e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: ampal-2.1.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 507.3 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ampal-2.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2639fdfc2976291e8897ef22ed327474591c22d238c0bd1b08915402d1c1a799
MD5 7132c6e6dfbf3140e56c896cc6dcdb3a
BLAKE2b-256 28967e3e815ee51412c1a6a6ac9c73aae5fe67d34795c0e2943edb70b25c85e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 04d36fcb6acb0c4b12379ce2382dbeff936b47dbcb6044784f29167ce297a074
MD5 4f05a72f75a941dde2ec6242b08c2810
BLAKE2b-256 0a0c327bc7aa67ce552782afac3f6023e6dbf8d4439117d080b7298075b89611

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: ampal-2.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 497.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ampal-2.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 faeaa82cdd8aae9b859aba2de8abe0703d20772584ae5d5dfeb30f4e114cd8c8
MD5 342b391b9f30a5209b80b4a998c23210
BLAKE2b-256 d188d57fa05c57682d197101c1e83b44696cf90d1910cd1df3788b3ea312576d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp38-cp38-win_amd64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: ampal-2.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 478.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ampal-2.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 31c3a9b54a30269f7525daf8b5ab3cad8153135bb3d7c83a1a8dfccd8d125d57
MD5 0fb9cd1861eac819396edfb5bf17ca62
BLAKE2b-256 8a48ee2b232436fafd2d8737794ae5d006f19cf97c13a03e0daab298e1bba105

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp38-cp38-win32.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ecc20d9906e69ccb4a0249817d27e21583faa17915b69028246164878034cdf9
MD5 c0fa863b5a863ea4ee7c6a4a83fad990
BLAKE2b-256 e65e17b18e45d762583bdc04467c4944de379d517c7b7e5f60e0e5a55fb8bb7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c004c33040fa0b6397785b0b7ae157ba4316915c0cf26a895ac32a6d18868d9b
MD5 bafe9671e6ec37d18a5bb48c28fcdf7a
BLAKE2b-256 629ca13785ee4157c9ec1875d6c4508d68045b08eaecdbe134fee30c983927ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 213a871c6e531c16ae4a87b64f4d16947328c746a3fff9676fac908104e65ea5
MD5 2749aea912d8362860fc97f55b2fdc73
BLAKE2b-256 9ee9ae202a1128e83fb3b8807d6bf9a9cf2d030b13f3e9be860dd050ad5579e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: ampal-2.1.0-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 506.5 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ampal-2.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc80793d4a6de399a82fd0a0e1ee0a9c24e7869fada465712899bb7201eac086
MD5 e2594a907c53d3ccfbf4dfb0c54941ff
BLAKE2b-256 3f207b20f9bab259e58b838f66c4f87e37b7354bbf73ade5b97781ec1da18e97

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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

File details

Details for the file ampal-2.1.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 268787a32dc57431dd02405b73420ead3eadf1dac1a404295337c4051758b4a3
MD5 ea535a76b0b854b1d9772fefe1f6c5a5
BLAKE2b-256 eedd77f064127b431a96b7ce0d0b896f628b6454423488f97cd7c6468eab3c8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.1.0-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: github-deploy.yml on isambard-uob/ampal

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