Skip to main content

Amazon Ion

Project description

Amazon Ion Python

An implementation of Amazon Ion for Python.

Build Status Documentation Status

This package is designed to work with Python 3.8+. Newer language features will be used as deemed valuable. Support may be dropped for versions more than six months past EOL.

Getting Started

Install using pip with the following command.

python3 -m pip install amazon.ion

Start with the simpleion module, which provides four APIs (dump, dumps, load, loads) that will be familiar to users of Python's built-in JSON parsing module. Simpleion module's performance is improved by an optional C extension.

For example:

>>> import amazon.ion.simpleion as ion
>>> obj = ion.loads('{abc: 123}')
>>> obj['abc']
123
>>> ion.dumps(obj, binary=False)
'$ion_1_0 {abc:123}'

For additional examples, consult the cookbook.

Git Setup

This repository contains two git submodules. ion-tests holds test data used by ion-python's unit tests and ion-c speeds up ion-python's simpleion module.

The easiest way to clone the ion-python repository and initialize its ion-tests submodule is to run the following command.

$ git clone --recursive https://github.com/amazon-ion/ion-python.git ion-python

Alternatively, the submodule may be initialized independently from the clone by running the following commands.

$ git submodule init
$ git submodule update

Development

It is recommended to use venv to create a clean environment to build/test Ion Python.

$ python3 -m venv ./venv
...
$ . venv/bin/activate
$ python -m pip install build
$ python -m pip install '.[test]'

You can run the tests through py.test directly:

$ py.test --ignore tests/test_benchmark_cli.py --ignore tests/test_benchmark_spec.py

This recipe skips the benchmark tests because they require additional dependencies:

When in doubt, look at .github/workflows/main.yml to see CI setup and learn how to build/test the project. See also ion-python#379 for a writeup of our adoption of pyproject.toml.

Tox Setup

In order to verify that all platforms we support work with Ion Python, we use a combination of tox with pyenv.

We recommend that you use tox within a virtual environment to isolate from whatever is in the system installed Python.

Install relevant versions of Python:

$ for V in 3.8.10 3.9.5 do pyenv install $V; done

Once you have these installations, add them as a local pyenv configuration

$ pyenv local 3.8.10 3.9.5

Assuming you have pyenv properly set up (making sure pyenv init is evaluated into your shell), you can now run tox:

# Run tox for all versions of python which executes py.test.
$ tox

# Run tox for just Python 3.8 and 3.9.
$ tox -e py38,py39

# Run tox for a specific version and run py.test with high verbosity
$ tox -e py39 -- py.test -vv

# Run tox for a specific version and just the virtual env REPL.
$ tox -e py39 -- python

TODO

The following build, deployment, or release tasks are required:

  • Add support for code coverage reporting.
  • Consider using something like PyPy.js to build an interactive shell for playing with Ion python and provide a client-side Ion playground.

Known Issues

tests/test_vectors.py defines skipList variables referencing test vectors that are not expected to work at this time.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

amazon_ion-0.14.5-cp313-cp313-win_amd64.whl (611.6 kB view details)

Uploaded CPython 3.13Windows x86-64

amazon_ion-0.14.5-cp313-cp313-musllinux_1_2_x86_64.whl (581.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

amazon_ion-0.14.5-cp313-cp313-musllinux_1_2_i686.whl (634.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

amazon_ion-0.14.5-cp313-cp313-musllinux_1_2_aarch64.whl (599.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

amazon_ion-0.14.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (573.7 kB view details)

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

amazon_ion-0.14.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (575.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

amazon_ion-0.14.5-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (623.1 kB view details)

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

amazon_ion-0.14.5-cp313-cp313-macosx_11_0_arm64.whl (498.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

amazon_ion-0.14.5-cp313-cp313-macosx_10_13_x86_64.whl (519.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

amazon_ion-0.14.5-cp312-cp312-win_amd64.whl (611.6 kB view details)

Uploaded CPython 3.12Windows x86-64

amazon_ion-0.14.5-cp312-cp312-musllinux_1_2_x86_64.whl (581.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

amazon_ion-0.14.5-cp312-cp312-musllinux_1_2_i686.whl (634.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

amazon_ion-0.14.5-cp312-cp312-musllinux_1_2_aarch64.whl (599.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

amazon_ion-0.14.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (573.7 kB view details)

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

amazon_ion-0.14.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (575.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

amazon_ion-0.14.5-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (623.1 kB view details)

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

amazon_ion-0.14.5-cp312-cp312-macosx_11_0_arm64.whl (498.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

amazon_ion-0.14.5-cp312-cp312-macosx_10_13_x86_64.whl (519.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

amazon_ion-0.14.5-cp311-cp311-win_amd64.whl (611.5 kB view details)

Uploaded CPython 3.11Windows x86-64

amazon_ion-0.14.5-cp311-cp311-musllinux_1_2_x86_64.whl (581.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

amazon_ion-0.14.5-cp311-cp311-musllinux_1_2_i686.whl (634.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

amazon_ion-0.14.5-cp311-cp311-musllinux_1_2_aarch64.whl (599.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

amazon_ion-0.14.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (573.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

amazon_ion-0.14.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (575.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

amazon_ion-0.14.5-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (623.0 kB view details)

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

amazon_ion-0.14.5-cp311-cp311-macosx_11_0_arm64.whl (497.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

amazon_ion-0.14.5-cp311-cp311-macosx_10_9_x86_64.whl (518.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

amazon_ion-0.14.5-cp310-cp310-win_amd64.whl (611.5 kB view details)

Uploaded CPython 3.10Windows x86-64

amazon_ion-0.14.5-cp310-cp310-musllinux_1_2_x86_64.whl (581.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

amazon_ion-0.14.5-cp310-cp310-musllinux_1_2_i686.whl (634.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

amazon_ion-0.14.5-cp310-cp310-musllinux_1_2_aarch64.whl (599.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

amazon_ion-0.14.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (573.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

amazon_ion-0.14.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (575.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

amazon_ion-0.14.5-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (623.0 kB view details)

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

amazon_ion-0.14.5-cp310-cp310-macosx_11_0_arm64.whl (497.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

amazon_ion-0.14.5-cp310-cp310-macosx_10_9_x86_64.whl (518.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

amazon_ion-0.14.5-cp39-cp39-win_amd64.whl (611.5 kB view details)

Uploaded CPython 3.9Windows x86-64

amazon_ion-0.14.5-cp39-cp39-musllinux_1_2_x86_64.whl (581.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

amazon_ion-0.14.5-cp39-cp39-musllinux_1_2_i686.whl (634.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

amazon_ion-0.14.5-cp39-cp39-musllinux_1_2_aarch64.whl (599.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

amazon_ion-0.14.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (573.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

amazon_ion-0.14.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (575.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

amazon_ion-0.14.5-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (623.0 kB view details)

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

amazon_ion-0.14.5-cp39-cp39-macosx_11_0_arm64.whl (497.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

amazon_ion-0.14.5-cp39-cp39-macosx_10_9_x86_64.whl (518.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file amazon_ion-0.14.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: amazon_ion-0.14.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 611.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for amazon_ion-0.14.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fe99872f57aba9001a6657041459380a7da850dca14693091ffeba492a0cbdc4
MD5 3f8c145c05c4903a0cc376066105daa0
BLAKE2b-256 d23c8c624ef8cf2b35b25c5cb2ad549a0cb5a01b70eff4c9f4fbfcf66987f400

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp313-cp313-win_amd64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5b4ef890ea2f8f5617ea931111731752d76d1040b8ba1c7bbb4879f13d669d9
MD5 3c2ddf3a497ccab0318120a783e3a2b9
BLAKE2b-256 d6a565e3738f42f90dab8783b78b803a8d5e154405964ce94281cef9c7eaf918

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 668d43ea86d3930aeb042a0c702f961960c14c29460a5473c2ff1a928aa17677
MD5 2fbd5d7dbd30e77a779b8c1b9bf6d8b3
BLAKE2b-256 643e6bc80559119b41e88fd8400c0c7a72096b3852059fdad3747980e70d6f27

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57f393661b1681b34d450ff3684398f732cf40f942f1239325030e12d9b0ffc3
MD5 4a2fadd5df3bc573eb3f557afbdabe02
BLAKE2b-256 fb9e72ee7413dc1b187fed865f0527747e4c2a7244dd0aae81420a562fd4bfbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 21953ee4d078fc893dcf633ae2bf698ce38d864a90ea4f9130b7844908203c0e
MD5 bbb713debc176457e695da0bcabb3a76
BLAKE2b-256 c96f0be897ec4c68372f876972ab5dfab41379d009d957c8540be541a6ebbf88

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64040c0e4580d47c956c508ca0e568df64869f445effbc2cbffe9748faf81de1
MD5 fff73f186fb81393521b3f153ada7142
BLAKE2b-256 78aa7469fb061d854813774d87aaa787566f8782463674d5247aa768c5402af6

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 e1fdcf07647ceadb795b5b809f506ab08e632d895deda54986f3f654e7bc6d8a
MD5 b9a90d83dba646207270f1c9018bd3be
BLAKE2b-256 d65c24644aa4bdf65b77e467b6131fc0c679ce29a3d752950d255f6efddf0b8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02f7bb95d1cc2814be79f36e474bfb42f5efc2d7574019320232a8945296cce4
MD5 bd298b8bbbd982e9cddea12b18a51b43
BLAKE2b-256 d412643c839fc27d5f0e42b1bdad606bc8a34a5f375398e71c6f6f310a8ae4e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9036590094d29cc69a3065eb7c09b027addccdf6791dd5c72bde70fc1b8c20f4
MD5 0a63b18cd8f0fcfd7e3bea1e70ee6eaa
BLAKE2b-256 61367eab3a1d4df0fc9879516fee5876a314ecde8c936623be9fc2ea8a188d6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: amazon_ion-0.14.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 611.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for amazon_ion-0.14.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9234cdde93cfa95891f4f08bb25f5a56b9200bffad2171c4d410bc7b1510a7e3
MD5 293a5e571b40eaf566123097fd24a8bc
BLAKE2b-256 b660b35f83d296e62759c7ff9f8a21fe8c65e6bdef5671d8fc96a91f03cf5a72

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp312-cp312-win_amd64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5d565216ed7057ded0a0d696d3f8f2aa866b6a8d9850d6b595539230f7b00f4
MD5 7a757ec9acef1459a6066b784328a77a
BLAKE2b-256 5675ea099067f51cd1f05ec16c892dbe1fc056da8b357ca730ca0dab03716779

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5511b68b7d0cb2675792122f8dd12b9f190dd97cbbf9c4982421a892d26ecb93
MD5 204e8c71e12dbaaa7bc6cdfa6711f329
BLAKE2b-256 45397ad160af4316b78e3addb016cb898683eb35f320e211e9fe023e3abca620

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 48b96581403570454c7c2f4852091e4d39dd0d8ee824db47b85720df430329c6
MD5 52183e6414133d86515ffa498292e339
BLAKE2b-256 c68ba851bc94dbf77b2fc613defe3fcc9e363a341a1c160c2657d080014f7770

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f907e1b7f320a80f5049623665c6e96cf4803d2d18065f257d624320f5f003a
MD5 e6e7aed32314b95e6fc077e5edf6de47
BLAKE2b-256 d3f00491e6092d30caf301e292e36987a3c9948362deeb8920aebbce3adf740b

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4e65f78beaf57688271698ea5652fab4348e837fb3f1d9d021bcf0c5d4086f05
MD5 5fa53285cf9bb3b5f3daf37014c7c6d7
BLAKE2b-256 7d030274e81bac0410b3462aa4117ce1ea0a554114c4ee16772bc8d6a82999bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 43c63a7189fd3f1684ffd4ba686e0e59585819bc1684de114a2332277202b6d7
MD5 35b07b8fe81fffcdce9c3af39f211d6f
BLAKE2b-256 375e4c7541982be6a13d04af971e35fe134775b4193bafea294c0c6ac25db82e

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f93b20ffb927f6d5a409939fe6d89b9e7918d6b29504e7a0fae8ab78c35016fd
MD5 cb36f64f107b779ac4aa2ab9e4ba67bc
BLAKE2b-256 de71c5c17d0e0cb8aba88769b8f96ee68312d3ed8fe8f7759b03fd0ed863c5f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cd28cd20ebf3a79e8620cd09a0877a817a754ba200fafa8a928adb6f2b8b4087
MD5 ac23cd2e3f96d500ef62b23c0c35c54f
BLAKE2b-256 74d7eb047c8015b9cb3126016ffbb310dd310aae158a2cd88d9de1ddfa1c5c30

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: amazon_ion-0.14.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 611.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for amazon_ion-0.14.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 62d35e5fe9fbc6a0e577a00eb093bfe93c6ef7abd75c0885f7bbd36086c1014e
MD5 5a82c8c91f4b9d6c9d007d862365733c
BLAKE2b-256 a40cd8dac223438624202ac4bbc5a8f0c61c83522187052064076980ea36f18b

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp311-cp311-win_amd64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68f1d1176ca96f88094704fcbfcc2d79e58e5caf079994ae1b36ae95c0c2b610
MD5 15f33c747a4a5f6331f6108052e1a812
BLAKE2b-256 0b68dc1e9fbac567e600c82ff763d0c8c47e27b53c9efcd572f3ad8beb7ab9d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 566cf196aaa7303c39316a21b52e5d403639661c5f4529eb2b3e0dbacc588ae3
MD5 3c5aa09afd1e729249ccf99340a1938e
BLAKE2b-256 1ed9662ed4d9d0231e83d108a7ee5a245ce9bc127a22a9bbcd052c6fc70c3dfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55acfc947e1f12dcf4115e2fbe3328b67e09e9383ddba73eaec610e35f054964
MD5 5ff291f34f1cdbc970c36dc3bc68a5f6
BLAKE2b-256 bf8ac44730cc258867f436fb8b9d4f4bba7d466fec2d2e80bac1c1fb308165aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cd59a57ded618ac6918b75a06cefd4e7ac8ac0fea5bba480310f96f5b43182fc
MD5 cfe9022ce86fb4e925d13c076593d281
BLAKE2b-256 3e4c8b5653a881f03aa2490457d41e715a6d263f86a2190076d024b8b5a39712

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8cffa1e008e7d059d1dead51828a96cd26a0963be461fd39ab135387566e8870
MD5 626da051aeffdbbca607e3bd53c3a304
BLAKE2b-256 0177b37e7c4b32c96cab216c20b6d1f57676f50599235c51f468190809fd2d01

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c146d7a2eb7937a31f8e5ca2d2510e28e01dde7d368fff8fc618f036d7f1d31e
MD5 7d3c897b9b353151cb14eabf5aba7bca
BLAKE2b-256 95f818635f83ecc2267d62d0d6d123f93e3842b4c4bfba7c2c28c25e501d64a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6932c1a5d22134a12046970f5bb2ae70ababd6ba19dd61dfddeaed14566d4f0
MD5 31dd89a1f0ef13659ff7e6a297968136
BLAKE2b-256 5e083fa533afbdaf72d3bd18b531cd8b549badb9dd85186c727aa66181aa4347

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ddfa27d93276b818949b14c4cdbf380f2f632faf06202ede0c7060914f49f80
MD5 165540133d044b048db270c20fdb2973
BLAKE2b-256 732269e389d6577bed494895781eb6702f7111e10450fa108753a4f05f489a07

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: amazon_ion-0.14.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 611.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for amazon_ion-0.14.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d6ab90b11299cff47753d6536c3753711bd429ab05ea8f828138acbc192fc9cf
MD5 9844b564abec5507d0bdc776661bfbe5
BLAKE2b-256 2bfff53c6b87543092365943a181ae50d5d8d4813284143a14daf12a46ca8e9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp310-cp310-win_amd64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edd9d22a5466015473632aac1736f996e22bb0d321025a71d3d7093a798bf003
MD5 3fb921c1787f1f3a4377e1437af11e19
BLAKE2b-256 ac27506045043da9c1854b3c9047a8faaf6679f8981554e24139418ef38d67ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1bd3e8fe7fccdef033ce2455db5d2b1353ae34569b87f77e3b2901debee2fc7e
MD5 92ef8b89a8a013aec3082f819c26abc5
BLAKE2b-256 85ff9947051e79fb9002909aa4f5b232ec814b5abdc13ccd03021ffd659db340

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1b943b908c0e00e5e3eaaf3ab484702be919fe5da128a936c853ac3beb6d448
MD5 953843763e20fa4a284a324c8c3b1ef4
BLAKE2b-256 afe6bfe94a817f9982e028c01471ec66fbd0ef133c31d3e2740db93188ac01ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad4b60ac46f42b4989c3c33fb9cdbdfe294190bacee96327c5dee35e75fc0bda
MD5 cb08e21af4d0c8d86a70e8fc8b1e0c55
BLAKE2b-256 32f1a1665fcb1c3f28520e949a806685758fc8932e67710eea5c9a30bf334858

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fccb9f5ee37de6e383fafb105491b09b6dc62940bfd789c2bc36877677983196
MD5 4e03976bea82fed2a82313c316a2e7f0
BLAKE2b-256 db43277ee27352eb18253f355af18113e66231073139f7889efe0dab1be52799

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 5ba983e13b5c2e1d23436245134e589dbcdf3db6d5fafe17abfa375b582f8618
MD5 37090a4d3cdb021904ed1dd837e9dbc8
BLAKE2b-256 8a78d53574768b90e7d5dcbb56624afe420843a3e330cc120fdb108f5973f1b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp310-cp310-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc19e6d4ec140936c138a822e41c0fecc5bc715deecaef9ca5ec0c260d45b71a
MD5 d01cd8ed6ee38ef22dada5c2367f359e
BLAKE2b-256 b5f78a77acd527fb96c422794f6036da33005b860e51946f99ffbf53ceae3316

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ab53d84a0d75e86f63f966eba2ff3fff81d1f18a7be4065247f9a8a5c485927e
MD5 23546a5c8ad3ec0f818a9265f55be30d
BLAKE2b-256 c4284418b165ffdb28fde484fcbede7af8d7590ae0cc579fc3b5a03a700c43b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: amazon_ion-0.14.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 611.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for amazon_ion-0.14.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6c180fa519a74488a4ab572519ca6bf2c73a99d0e380de3a12d1d5ef22cd1967
MD5 46787ba1ca9829ea3b09094d77f07cf5
BLAKE2b-256 d62d5e6420dfcf7831fcb3264c0bf4f8b585c99729123197a319a23f451876bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp39-cp39-win_amd64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90a1a3ce536bdec9d02c62cef68431a4901602231b3e20db9ca818a092f9fc8d
MD5 41f307db3e4f5f90dcb46ada57a8044a
BLAKE2b-256 2dc04f8cc809436ea0ebdae368daca089da3fd893444624a679571e107d62763

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0308705de941f8f8ceac3e8f20680fad55f8eaaa49573616005e8a52c9b8be63
MD5 46859e45c972cc2ac1fbdfbe9c6d2aa6
BLAKE2b-256 e4c6eb9ab577e9d480ecde79c2225ae1e313c103452cf8f88968fd2c2917ff79

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6efb97792e8b0eb3531c3086f6636bab4b970bc12f9458bece7d2a5799ae4de3
MD5 8a1cf54c9f39bb9f8ed393030d80ef3d
BLAKE2b-256 83a896dbeec8ec335ad684db0a0ed7ab600eb5e937c591c1d1a8ec0493654252

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0315f6c865b005d27a71fc372c0114962e6a3b3e3537208c0f0873da88de9ea5
MD5 1b6d10fe55c571b4dfdfb8e56479ed9b
BLAKE2b-256 c9fe4b307feae8d09874c40ba88663c3c20ae564841516c09f6419b85c38c8e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d1b2bdb76286b40186b4ff8ed3016a0466eaf3ded8365587607b4527e776a68f
MD5 c12ff043c245627f60102ac4e7515299
BLAKE2b-256 109798d01355286ca2b999d3d2f5f96eeb596fdd7ed437173ef59f0bff085b73

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d01b30ae0c5f9725c2bfe7b8ab6953a2fc47cf24f8bd55b96331a29c00d5197f
MD5 3209db7092fd6516db732c6ffdb44b87
BLAKE2b-256 c21c47949fff88f721466ae8cec5f2a5cf5200bde30037e7b5439f255c27b608

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp39-cp39-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22cec99abf2a0ba491d76bdc8eb5143481b1e3db186693f584694911a0f88f58
MD5 39c1d8c244af04f11c8ee8128eca98fa
BLAKE2b-256 1d9c171b80dbbb50a8ec8385685876d8a5705196498e053f353c78acf7c6b5ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on amazon-ion/ion-python

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

File details

Details for the file amazon_ion-0.14.5-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for amazon_ion-0.14.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4c49f976554a44d32006e0c9df789688bc7dee4ca4d2432eb9944147f0a70ff6
MD5 48e7ef374fd5c95038f2e3f0838ecb0a
BLAKE2b-256 a39a4b67f3aa8939b42936c5c1f20cae4043593b258800da3fc8d91e29b3b0c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for amazon_ion-0.14.5-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on amazon-ion/ion-python

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