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.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.0.0.tar.gz (2.4 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.0.0-cp313-cp313-win_amd64.whl (484.9 kB view details)

Uploaded CPython 3.13Windows x86-64

ampal-2.0.0-cp313-cp313-win32.whl (467.5 kB view details)

Uploaded CPython 3.13Windows x86

ampal-2.0.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.0.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.0.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.0.0-cp313-cp313-macosx_11_0_arm64.whl (501.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

ampal-2.0.0-cp313-cp313-macosx_10_13_x86_64.whl (522.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

ampal-2.0.0-cp312-cp312-win_amd64.whl (486.2 kB view details)

Uploaded CPython 3.12Windows x86-64

ampal-2.0.0-cp312-cp312-win32.whl (468.1 kB view details)

Uploaded CPython 3.12Windows x86

ampal-2.0.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.0.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.0.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.0.0-cp312-cp312-macosx_11_0_arm64.whl (503.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

ampal-2.0.0-cp312-cp312-macosx_10_13_x86_64.whl (524.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

ampal-2.0.0-cp311-cp311-win_amd64.whl (494.3 kB view details)

Uploaded CPython 3.11Windows x86-64

ampal-2.0.0-cp311-cp311-win32.whl (472.9 kB view details)

Uploaded CPython 3.11Windows x86

ampal-2.0.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.0.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.0.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.0.0-cp311-cp311-macosx_11_0_arm64.whl (503.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

ampal-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl (525.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

ampal-2.0.0-cp310-cp310-win_amd64.whl (491.7 kB view details)

Uploaded CPython 3.10Windows x86-64

ampal-2.0.0-cp310-cp310-win32.whl (472.6 kB view details)

Uploaded CPython 3.10Windows x86

ampal-2.0.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.0.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.0.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.0.0-cp310-cp310-macosx_11_0_arm64.whl (502.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

ampal-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl (523.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

ampal-2.0.0-cp39-cp39-win_amd64.whl (491.8 kB view details)

Uploaded CPython 3.9Windows x86-64

ampal-2.0.0-cp39-cp39-win32.whl (472.8 kB view details)

Uploaded CPython 3.9Windows x86

ampal-2.0.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.0.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.0.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.0.0-cp39-cp39-macosx_11_0_arm64.whl (502.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

ampal-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl (524.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

ampal-2.0.0-cp38-cp38-win_amd64.whl (492.6 kB view details)

Uploaded CPython 3.8Windows x86-64

ampal-2.0.0-cp38-cp38-win32.whl (473.5 kB view details)

Uploaded CPython 3.8Windows x86

ampal-2.0.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.0.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.0.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.0.0-cp38-cp38-macosx_11_0_arm64.whl (501.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

ampal-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl (522.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

ampal-2.0.0-cp37-cp37m-win_amd64.whl (485.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

ampal-2.0.0-cp37-cp37m-win32.whl (469.4 kB view details)

Uploaded CPython 3.7mWindows x86

ampal-2.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

ampal-2.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

ampal-2.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

ampal-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl (518.7 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for ampal-2.0.0.tar.gz
Algorithm Hash digest
SHA256 638e83e0b540189b09f2581f49a670be0626008da1be508e404510a67acc9e3d
MD5 a42d6102fb3f143e622234d3e90fb7b5
BLAKE2b-256 1c33f9500549d617a2d7ec786d19a8e2a7ee093d3702bdf999865233def0d9c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for ampal-2.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 71c3c7e94cd3bfbc001752f535e1e0e44738bfcf03488f9da1b2fa03d3459cb1
MD5 6dfee73a7915b502ee922d14f2af17e0
BLAKE2b-256 c0066573a28e1771d9a3ccc173e96cb2a5f39df80da37f5b7b942523c72c6bb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for ampal-2.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4a6b96b754e004b0a23feeefe8bfd42dc3a334ca1fbac03e7d6228690522d3ac
MD5 2c6fd535eb91be75f9c5e6178bc5c489
BLAKE2b-256 bbac1ce48da5461f4043815c46e3a70d523d7a45adb2572ad1bbe24048629a86

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 baf26a58efbbed13e11dcd9b609ef4a38eb1fade082eaca2bedd6a14e25039ca
MD5 dae16b4eab793137bf34a061db60a57c
BLAKE2b-256 6a1ec2852213e3d900e26539763ac13388fe3804dd253b0b647294d3aaedcf9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.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.0.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cfa2079e5a0d5d14b07c343826682954096e3b027178d693a0156cee67ea92f1
MD5 b444849adba58fceb7f15145bd7b6670
BLAKE2b-256 9fb993e19590d538d63ddb42f66e14e69090174a31ff92d561ca744339113264

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a326b724a4d3ca29c0ed13761d689063d316b1d95212731f3ca90e4c8453433
MD5 f673edf0fb8c49a196e6f91ccc187253
BLAKE2b-256 690dce909b07883726656b2c427012a3f354f59d3f54967318918d69400f5780

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 097beede98f938f88c2c93a941dea239ab17414930fb6074a638fb63b817f173
MD5 732e1dbba917234d550b32ccdeba77e8
BLAKE2b-256 e9c2d02f3bd0ac29da6f551920eb731417f042ebc41e65f42b93841e3398ea55

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2378e141fa6b102a298e1510d91eb8a1b2226d134c921b5a04ef6cd6fb3a2670
MD5 bcca8b265ebd9da081ca111ef4f0f7b7
BLAKE2b-256 ba05ebead59aa8d3516060c1cad7dcf3ef561ce08d59e5f912b249e1dced26dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for ampal-2.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ae7b693115686b70a27f15860d53db734fa389d40c5c6bf25043c6fc96034ed9
MD5 6773fd57356a8757ca76e7077b3b18af
BLAKE2b-256 17e19fb197925e1089531c313f9157739aab99c8269e8bc5bc49194288c646ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for ampal-2.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1f80f6063efcf5449e7d324f787fcd416595c6a353b94fdb09f4a17e3f60376a
MD5 8a8ef99cbc4426901375a777f1208d23
BLAKE2b-256 c55f4f6ff13bae1e5ba383103d5afc8f22771696ad3dd7153febbfa6e1552193

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d17d53fa147af8b18a6e0cfbcda69c19c8e7bbf14e70ef1c00a97efa7c7a4b32
MD5 f3f2f2fc3e98eff22705de9dda3a67c9
BLAKE2b-256 b0938a4ff0619f22180f99ffa5cc62fa45feabe692f8376dc571f79b5180fa22

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.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.0.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61f8c67a964bd4e52a7f99cab3e12133a0df5d15384e77cb3c2664b68e39e5b2
MD5 582bcfdda49086378e597776cac42dda
BLAKE2b-256 927538fe1c7aa66c8cddfdcb93396ed7341ee505a137e8d656302437afab00d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ad892549af75b5012737ac868fd2910aeadc0193d1367b6d38311e738cf29776
MD5 6ebf35fd5163e91d801d1db4d2794077
BLAKE2b-256 cd9b769d516014a1331e94f79e7cfc1bc62596a9b9766607184a6e44ad51f2a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b065b05e35e3c94c7e5af0405ab93211c4b950ddb3ac923338117b72e784e2a3
MD5 6d5ee1938a2537f451aef4ecaed76bf6
BLAKE2b-256 4689ca0b0752fc667f590f8905c813a88e951b3e1badbfc6580b9dc421d51cab

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 46795bd574eab2a33b56efd657bdf1be97ecbe0ddb1f44a2b51b5e6816c28c27
MD5 37974530b4a2a86c9d30cdb0226db1b8
BLAKE2b-256 7b42006cde874c673a02c98d839aa6df5e623a35658b5b2510ba66cbf06ee8ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for ampal-2.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cd1fd01bb74701e3b18d3fbadbeecd22b1621032c194ba3a9dd485e3975d8307
MD5 f02cc581105f27155a6486219354aeef
BLAKE2b-256 a2ba499b4c8740b7cab1dccb3f05de4467393c3f8cd088e55db035630b991f17

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for ampal-2.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 015cb6b1d376e468ad999d5d088cd978ee4c619968c6f711f09e985b3114d831
MD5 f4863332ef15e899bdfbf35e9169c12f
BLAKE2b-256 995152f514be0bba03cd56f592c3c146c611bdf764f15a59a05e3024329629cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57ba6ba39343d4f46b0f6f6e31aaf62b935f65eb883b552886b0846e4921c584
MD5 c96f06aa6d03539b5215cb0b42dca4bc
BLAKE2b-256 5c8ad23d15c5fdf36aa6c9b2dfb84b71eb41ae438ccae4e66319236ed5046e49

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e78a2babf6203854b7a31727f21c77255f020dd56615c7054bdba73e95b43eb
MD5 1e3f610560b47241b7f61300644094dc
BLAKE2b-256 dabd1783fcf111eb5cf6c856d040721d5c80d0f28cb82223fa34619d25045eed

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 70b0d147722ea84373ec62a1830b48b31a01f5a2b74b1d7b18ae8296a36b4ab5
MD5 621e9efcdfefdecdc1c3842798f6c917
BLAKE2b-256 a610a4be97f5828a5dbf676746de088adfe48bcef534b6d287d57931e20d4205

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5944ae1d539f999f200fbe3b9379d3dedce3455c972f1d7ffb22a3950f9f7762
MD5 9e4e496f05d583ad202579982c1956af
BLAKE2b-256 c48befdc46838defcff80deb1a8a593313c7369519f911c8e1563b92c3ca20d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 378d0387d660f414db1fb1e3fd842221c76060fb31f18226420428037fed21b2
MD5 0c7f302db1dfa0e27bf2b6e60dde818a
BLAKE2b-256 5e6095d345aac18e51b8df69de2f1f4a8b16e0cbf53f0bc5dbbae02f52a68c51

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for ampal-2.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a48c4d5fff4eff53b4917a74444d1207fed4881f59286dafd1ed30c5a4c240b8
MD5 227b23ea3e5bf0174ff240ddc98aeb2c
BLAKE2b-256 18411f87dca0df9c924405e3fefd36906c3388676786b60d3ef5292fa49eefaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for ampal-2.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e7f1b5cdb8c6623e2dcf6cbbb7e68195ec4fa6b18977f3892ab18319d8797973
MD5 152aad98ce6ac61a06595c68eaba777a
BLAKE2b-256 f5fffefaa4ff08fed723dbdf27c5039234331c0b4b9a1a4f98a56ef7cd478bd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48f8dd6f9e061a85125d9a8b7edf3c4cdc7243f73688318799a110e6fb1a4fe4
MD5 bc5542e7006eb50fb1fff6b052bc2243
BLAKE2b-256 52d9b2fe7cf0085efb3f115d6cfeb7c782a75fcecc20506b520ef54248a3ff00

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5a72a3eb66a102b8940d2632c0ee9d71d05904b9bf3c4540c22d1db4f4c8a7c
MD5 7080aad26d4df056025800995ee26d52
BLAKE2b-256 4e23174811a1e62586c71c933c06e33d572096471e60bc0146d472a34a343d55

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a19f6aaf10490b44f2b5faca3ee8f46f99c011ed9eab3b3f323dc98cfb84a5a6
MD5 04ba6d08d1c26ff4df4c4967db1f3e72
BLAKE2b-256 31355a2a56f12a9464f8ad17cbb11f6d6b4f79873d5c1e2a1a107c9504fc8efe

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9140efa1b217fa4137bf3f69e66b59ab1777d0f1464672400964280a809f9eb
MD5 e6bedbc31636684b6868d3f2761613bd
BLAKE2b-256 3b8b4171347c845f92c0f53128903411b8756d6bed24f00ee0097a4df50842d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5484cc43df67fa730b05d20d4ba76102c59798adf58f815d5327581783ff6bfb
MD5 fe9dc1adb2b4e3b4f9eb751d5b3cef5f
BLAKE2b-256 b5a40a3b92a9c7a0ebc0c7eea48273c0ed9d3d842b425ddaed855eada4915afb

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for ampal-2.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3222ccd8ba0871b557956a287c7bfd03300993a47a63912869bb1ee6e845bca8
MD5 83816dc364c6d1f00db1900aa0c5ae74
BLAKE2b-256 4e87e87b3781c7ac32aed067445d9e8405b4f190d1a34a475b106ad21f25bfd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for ampal-2.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6070455dd11348f8052706c769178b8bc753e7e7008455327ac8fb7b21cc7127
MD5 6229ca51f325794279248d66651cab59
BLAKE2b-256 4205dc93251f9e0790c27a5c3e9f6d531fe800b3e50c5c5daeec4e67b65898b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ecd1e820425c76ce70868b78358e088650af9d8771706519fed96816f412ceea
MD5 08726f86f2b09c8d0062142e8a258813
BLAKE2b-256 45170238dbf1f2d173818128c981337f30af3f257ed9f31f935cb135657bb988

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d0b06daf686261ec61e369abe2256bb00a7e66eef29be3a6eb50810f2c30df0
MD5 48944850bfcdec4a7e9541879fa2072f
BLAKE2b-256 f45d6ac3e2ef098d6603d41292d59eaf1fb4363b05fc513c1787ab7fe05aae22

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ce9d48c1a4f4bb3a6aecb9498cf607efe10a255cb25c43f46fb89a3cfbaebf1e
MD5 3ba20a5974f8a9fd36d290f25103aad9
BLAKE2b-256 f55d258f5e37990d0c6b89927d291a10434e5cbfd3d25988a58bf1208bc3756d

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for ampal-2.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9305f8f8825464cbe62352f3f57a6226010ba2c1a61a5e820102468dc9b3de2
MD5 ac90550b60c79bceea38eae4092c1f50
BLAKE2b-256 8d7aa5e7f1e67a1503fa5d8c87ca09dd355713289a859f03aa666aabf67edbfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58126abde0f54fb3358f776651e988c5413d3f97815d82ef8e54d1ed76e376a5
MD5 ead17ccf05054baab89a1d26cb2b944c
BLAKE2b-256 103987f1c7b166d3191ad13d642c15a80d00f3772a9cc728c96caebd34860783

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp38-cp38-win_amd64.whl.

File metadata

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

File hashes

Hashes for ampal-2.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 6ca1058a6295042dde840aaae448bf1ed42195574bd06cbc39ca45e8c427f9fe
MD5 bc4129ccd272a83f8f8f449ed3a2c8eb
BLAKE2b-256 083a5e3e7ae290a8f812e5cb0c922a7124a30edf1254ac25987d71c7cf8bbcb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp38-cp38-win32.whl.

File metadata

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

File hashes

Hashes for ampal-2.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 58e0dc8e63b7b6f5a0c1ab9d0d46caf8edebfafd4efa5a73c0c0cec5d117ef7e
MD5 35199d289f3f3fa9869d597b48e0afdb
BLAKE2b-256 fe6b5d24a6abc96ddea9554c8e0863cab5fae2fcbfa3020fbd148325ffb413e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19762d4e715ecc686d75ed5547762f4607ca1fef7d69d31d020ace0cbd42ff5e
MD5 63f3f62940dac1e9b42e088b1b84a48c
BLAKE2b-256 7aa50d4d0b1ed53aff5c87b883300d225ac57e366f0983ccf4e355d78a8bc332

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a74aad4be8f458e4ee12a52345966ad12100075f3667cbc703fd8237e12057a1
MD5 ee408ef43b288600defae72d7e3da3b7
BLAKE2b-256 f4caea3ede1f2485dd895f4d2fdf7238f8cb706190a7e1332e9d1e33661fccd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0ff3916067ac8aef85e895c2eaecbc0eccbc9bd60c547acfdaaa91af19020564
MD5 0a9842cf2895500e7076b55cc69c00ab
BLAKE2b-256 151984d71a9f10535a178ed45e2121244871efb4e0971fe97af7fb1225539487

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for ampal-2.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c59120b9435dc6c076a3500cc9ff2c4ed3ed83c4959f17c592c4a4fe5040cda5
MD5 e4ba869e5459faa28c34e98e0690b7c2
BLAKE2b-256 e484cef2f26de8780beeeebe4588c5b77a3afc4bdedd1facf569e23a03633d04

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.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.0.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9cc73acc1d5042512c9740558068a1c7df5951a556fc4a9df2e9fe74f2e85ea6
MD5 97257e71d6f50effd37ee72bf772bbef
BLAKE2b-256 87e316ce9090ae77c7eaf4c1fc93039da986964ad062159476ce306971bef217

See more details on using hashes here.

Provenance

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

File details

Details for the file ampal-2.0.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: ampal-2.0.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 485.0 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for ampal-2.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 343101443bf4b342b6ac3e368e82040610d8d10317c2c6ded3578c29d0dbf912
MD5 e2e09f935440cc2a532fff832b61ffc2
BLAKE2b-256 8209575c1cec2309b833944be17af41f7a5af4831fced4f57f13e3ab2751eaae

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.0-cp37-cp37m-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.0.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: ampal-2.0.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 469.4 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for ampal-2.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2c685780db87e7bad8b7facb1d4281e7582ec30b3acfcaa3823974b783a25801
MD5 cb75f9b63b33d6e93b9a8d71fc6b9a31
BLAKE2b-256 e9d2e0972d11d66143c15c19de5ebda7af651c376c0a81c3f555fd4b42854f84

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.0-cp37-cp37m-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.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7229769af716e1452ea61853121448d276bc3b60b5ebcf0ff251f4a7bdf352e6
MD5 f3e371592969693e132ccda56ff2bd1d
BLAKE2b-256 63bda8bb0436161dfc5863767075275780cad1df7d366c11e7edc554d4d032c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.0-cp37-cp37m-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.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5cb303f85e1ed7cfe1fd0dee0595ace46aae11fc449d1e5a35ea8b738c695f7
MD5 db0770ed16946e09877d0a5abf883ff5
BLAKE2b-256 47f5d8ddb217343ec8e71cd5207a7a51d4b8094eda5fc0fac9c8d102777a18a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.0-cp37-cp37m-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.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 46376622a9f2a51fa61602593dcb45258d36a86374327c513b10850191067ae0
MD5 fc1ec1625dc03058f63b09e12f6abc85
BLAKE2b-256 87433188b3a946f25bfdbd94c7f473353153c5230de4b5ddc4a43d612631fb9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.0-cp37-cp37m-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.0.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for ampal-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 73d9779be22dbf0ae1bec2b3f319afb0a3d6fe20de8a9a0c31d37ec412759905
MD5 5b2d95f08769d81503c74c31a67fd069
BLAKE2b-256 656ad5f71a7047503193857f38645850be246280fa350002cd8d1a61798e0a04

See more details on using hashes here.

Provenance

The following attestation bundles were made for ampal-2.0.0-cp37-cp37m-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