Skip to main content

A framework for real-time air traffic management research

Project description

tangram_core

tangram_core is the foundation of the tangram platform. It provides the essential scaffolding for custom geospatial visualisation tools.

While often used for aviation data, tangram_core itself is domain-agnostic. It handles the infrastructure (displaying maps, managing state, handling connections) so plugins can focus on the domain logic (decoding ADS-B, processing maritime signals, simulating weather).

Components

  • Backend: A Python application (FastAPI) that manages the lifecycle of plugins and background services.
  • Channel: A high-performance Rust service that bridges Redis pub/sub with WebSockets for real-time frontend updates.
  • Frontend: A Vue.js + Deck.gl shell that dynamically loads widgets and layers from installed plugins.

Usage

CLI

This package is rarely used alone. It is typically installed alongside plugins:

# with uv
uv tool install --with tangram-jet1090 --with tangram-system tangram-core
# with pip
pip install tangram-core tangram-jet1090 tangram-system
# launch!
tangram serve --config /path/to/your/tangram.toml

Programmatic

You can also launch tangram from a Python script or a Jupyter notebook using [tangram_core.Runtime][].

This provides direct access to the backend state (e.g. Redis client, HTTP client), enabling you to spawn data or interact with services programmatically.

For scripts, use the async context manager to safely configure the server within the async with block and then explicitly yield control to the server loop until a signal (Ctrl+C) is received.

import tangram_core

async def main() -> None:
    async with tangram_core.Runtime() as runtime:
        await runtime.state.redis_client.set("my_key", "value")
        await runtime.wait()  # required to run the server indefinitely

if __name__ == "__main__":
    import asyncio

    asyncio.run(main())

For interactive environments (Jupyter) where execution spans multiple cells, you must start and stop the server manually:

# %%
import tangram_core

runtime = tangram_core.Runtime()
await runtime.start()
# %%
await runtime.state.redis_client.set("my_key", "value")
# %%
await runtime.stop()
# %%

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.

tangram_core-0.3.0-cp314-cp314-musllinux_1_1_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tangram_core-0.3.0-cp314-cp314-musllinux_1_1_armv7l.whl (7.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

tangram_core-0.3.0-cp314-cp314-musllinux_1_1_aarch64.whl (7.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tangram_core-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

tangram_core-0.3.0-cp314-cp314-manylinux_2_28_ppc64le.whl (7.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

tangram_core-0.3.0-cp314-cp314-manylinux_2_28_i686.whl (6.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

tangram_core-0.3.0-cp314-cp314-manylinux_2_28_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

tangram_core-0.3.0-cp314-cp314-manylinux_2_28_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

tangram_core-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tangram_core-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tangram_core-0.3.0-cp313-cp313-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.13Windows x86-64

tangram_core-0.3.0-cp313-cp313-musllinux_1_1_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tangram_core-0.3.0-cp313-cp313-musllinux_1_1_armv7l.whl (7.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

tangram_core-0.3.0-cp313-cp313-musllinux_1_1_aarch64.whl (7.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tangram_core-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

tangram_core-0.3.0-cp313-cp313-manylinux_2_28_ppc64le.whl (7.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

tangram_core-0.3.0-cp313-cp313-manylinux_2_28_i686.whl (6.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

tangram_core-0.3.0-cp313-cp313-manylinux_2_28_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

tangram_core-0.3.0-cp313-cp313-manylinux_2_28_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

tangram_core-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tangram_core-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tangram_core-0.3.0-cp312-cp312-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.12Windows x86-64

tangram_core-0.3.0-cp312-cp312-musllinux_1_1_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tangram_core-0.3.0-cp312-cp312-musllinux_1_1_armv7l.whl (7.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

tangram_core-0.3.0-cp312-cp312-musllinux_1_1_aarch64.whl (7.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tangram_core-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

tangram_core-0.3.0-cp312-cp312-manylinux_2_28_ppc64le.whl (7.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

tangram_core-0.3.0-cp312-cp312-manylinux_2_28_i686.whl (6.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

tangram_core-0.3.0-cp312-cp312-manylinux_2_28_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

tangram_core-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

tangram_core-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tangram_core-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tangram_core-0.3.0-cp311-cp311-win_amd64.whl (6.7 MB view details)

Uploaded CPython 3.11Windows x86-64

tangram_core-0.3.0-cp311-cp311-musllinux_1_1_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tangram_core-0.3.0-cp311-cp311-musllinux_1_1_armv7l.whl (7.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

tangram_core-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl (7.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tangram_core-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

tangram_core-0.3.0-cp311-cp311-manylinux_2_28_ppc64le.whl (7.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

tangram_core-0.3.0-cp311-cp311-manylinux_2_28_i686.whl (6.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

tangram_core-0.3.0-cp311-cp311-manylinux_2_28_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

tangram_core-0.3.0-cp311-cp311-manylinux_2_28_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

tangram_core-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tangram_core-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tangram_core-0.3.0-cp310-cp310-win_amd64.whl (6.6 MB view details)

Uploaded CPython 3.10Windows x86-64

tangram_core-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tangram_core-0.3.0-cp310-cp310-musllinux_1_1_armv7l.whl (7.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

tangram_core-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl (7.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tangram_core-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

tangram_core-0.3.0-cp310-cp310-manylinux_2_28_ppc64le.whl (7.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

tangram_core-0.3.0-cp310-cp310-manylinux_2_28_i686.whl (6.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

tangram_core-0.3.0-cp310-cp310-manylinux_2_28_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

tangram_core-0.3.0-cp310-cp310-manylinux_2_28_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

tangram_core-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (7.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tangram_core-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file tangram_core-0.3.0-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1fe717bb36d97a6f8587b8fbb6495f842e057dc0603c84c6b45be8d78e14e3cf
MD5 25c41ba86ca6ccf94a81cffd8dece120
BLAKE2b-256 249522794aeb5a7f5858134bcffdd107d37ee32f4077da1bde3ab00a14e24ea3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp314-cp314-musllinux_1_1_x86_64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp314-cp314-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 af1fb99259fe9b1219b490c5d37bedf1d192e548a85d5fd7935daf3bb40840ca
MD5 98edf4d6c80c0efcb5e83f7b070162f1
BLAKE2b-256 d285512411a1323127d26598a931038838f9d8327515a4b68d8a2fdeaa6e68ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp314-cp314-musllinux_1_1_armv7l.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 61537c0978394862108cc36e16ad8ae466dc2d14406509d831e2ebf45e41fcbf
MD5 d3eeb5a4a7b7ca4db60235ef18ad6ce1
BLAKE2b-256 ac32ab9dc6411f5167a470845aaa0e946ea01a1ba5f63fcab1f356804f354083

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp314-cp314-musllinux_1_1_aarch64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 811bf3475a1103335fae19cf7e6de5ef8b256a0ad1975b56ffd7d614986b0cee
MD5 2895a06690f54e0225631f3f9f3bf541
BLAKE2b-256 8bd77aeb84877d4c774009b4a7f25371dd319cf4cd1942fdbbe3e01506172ace

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp314-cp314-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 76078c9e2de3e1021dead9ef03df792a60ff9d6f95ddf10aa13f14e258963ba6
MD5 f512b728df84b0d781f2004a96cd945d
BLAKE2b-256 ebc6c152521b62d3eba8a6bb63494763b90d55a8e92ffd2dcd728079982ccaef

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp314-cp314-manylinux_2_28_ppc64le.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 642bfd6cd2b7365e792a857e5d480c0e37afe566d80b67035c519d52d0d85d4c
MD5 746d93f3e773a68ee9126efd88af5555
BLAKE2b-256 1ecf625a125454d2e11483a2bc50fb91e8c0c79bebc9906d277c5671dbfe1abf

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp314-cp314-manylinux_2_28_i686.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp314-cp314-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b9820dbf2491449114c480e001e172c51c0f395334d778dde74e246c3b60fd28
MD5 669989c841e8b777be1d0d518db85e71
BLAKE2b-256 c4f0733db3941da70c369f6a3353857344b264343e99db376253de16b891be5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp314-cp314-manylinux_2_28_armv7l.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd05d37211652a515ddf8756a976cfefabce5ed031b776a0e8bb831687e1ee54
MD5 027338bd18567b9669e85b7bf8273803
BLAKE2b-256 ba851d819a744c45ba278967140fc11c6f71f0304501a9bc96b4ce4ee066f0a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b31837f2417344626f711f75f994c899c6cb88a450a836c3df8895c65a318212
MD5 cd5ae7feac8b8590245ba98dc52cfbdc
BLAKE2b-256 3026d6d598f3406d2557836992e56531f3fe0b3d5258993ba43482a5a927fc7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6ef06a52696a88040dfca0ae747c094798eb365fa9c4523c89aeda89c3a76bcc
MD5 6a95d4bd08b1e59ffeff508097b3592e
BLAKE2b-256 067ec2a57e7dec8d2e31267529ef1cf3015b6b793dac76745a5d58142d0ce211

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 89eca3e999b3c2e0cc134dc3a5316ff1a4a5ea0b81cbca44d96c958741678f6b
MD5 4b77c1ce5d8b0eb75bcf8f7cfb0011dd
BLAKE2b-256 0805a319d337565e212f585b528a4a58fd9925213c2bc6fafb906224eb5cb4c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 71183235b813b97d0fcd7c107c48345f9c1a04b1d7046c5982fcb0414e0ae513
MD5 69f6b740a6ab4a4463b6f6cd0949ab0f
BLAKE2b-256 08025e7ebe3916f593b0013bf3d5ef967795760685daf66dbe21b3c363b87868

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp313-cp313-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 01a008fc36cf11274f2141c6315d56e114043701f969a73fe3be17a074528e9f
MD5 fa981ef7dbb1abc1f951834861aa15fb
BLAKE2b-256 9cc82bd9d85f68847ac435d833efa56d251ccb7e174b177fb9184101bb421838

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp313-cp313-musllinux_1_1_armv7l.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e9531be2eef98b04a36bd95602cd1e9d2597b0ce4ad34aeee7deccafd12e9519
MD5 67ae897091038919f508abc1d839803d
BLAKE2b-256 0227b2b09a43ce36d75bd42e9bdf432cbcc5f68d085bccb0f5f5a5e3d9a7a4f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp313-cp313-musllinux_1_1_aarch64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 249ef306cbaf442a33f85182df60241740bba57357b3ff1753ef25cacd7e9b80
MD5 531775da329e579a07409a328f46181c
BLAKE2b-256 76c9ba1b701631f74336dc038b7e0b1872135d6450dfcb353491592d1153418a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp313-cp313-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 a9b03d95780365d208a66b0942e63399123edb89fc6bf463f49c05ae563ef319
MD5 04d2e768c2b9b2c584c7486fa0cdb141
BLAKE2b-256 523fb017443b45d0290796991bafd10edfe572f34d7a9cd76d267b0ef3a9808c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp313-cp313-manylinux_2_28_ppc64le.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 00f986d6dbd1480225642a5ca23f09662c268fabf7fd4474f907b5ed5b4ab0ae
MD5 b48dc9369763a628670359829735e0d6
BLAKE2b-256 1a73ef642a35fdde87358aade6d7c138223c086ee58b5c6627dc94da4f48e62e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp313-cp313-manylinux_2_28_i686.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp313-cp313-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 9d39a186567d35b3c1c0c0e59c7f8867348a4d8cc8cb019624a67bcc4c592a66
MD5 109b90f5b08e623332dce84d3ecdd08b
BLAKE2b-256 d6e742885392be305c936adf0f3595923e7fa906d28654d2b0aeacfd13cf6dff

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp313-cp313-manylinux_2_28_armv7l.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e3509c956ab3c209fa8ed4a0394d67a0043d98297ca15ff8706cbfef73d98072
MD5 cfec7213e46f763363be6c2c9131c8c2
BLAKE2b-256 cc147b272cbbd88b007b01f3fd0fd5a4a48ad4627841def6cb1141ea24b85b98

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69a798c1ca0eead125431dd065cef3554e2830d27a3dd0dfae0556dd2b15002d
MD5 debcdfb097d62277aba37be462ddf4a7
BLAKE2b-256 807c322b7eed8b56eb371996a2a1459ce4ee7a625e49fea2643946ecc30e31d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cf32987b7077a062a2deca078a4af395669992a5f9b530676d808dde705be0dd
MD5 88eaad2da8d9235bbfa35e6601c7f60e
BLAKE2b-256 9d916b8936b377144620582cc81476d84e87a3ac0028eb2f364d715c3e970844

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f0285ee3e8a88a4acf1119494570b9f18f2196a032d8acd3a4a6b457ceaf2d87
MD5 1ac02513e7fcf5eb49cbed8487b13914
BLAKE2b-256 bd55a2ec5263c3f6d05f1c87c23d36e65fe294f9027a3ddf5b85e669f3de3bb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 666c9f467744449601bca603d182b1c30fa2aca23e76dac660880f0fa5593c7e
MD5 cc09962cc67dac2f67ecd6a1c00d1286
BLAKE2b-256 18e0424ee56398ccffcd41b89d4bdd6a557435a237ea26a4087899270222a45f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp312-cp312-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 cc715394eec5594e38dac1f62c86d1f6a5dd833c6dc7dd5a5cbbd54015428950
MD5 9713bf436ecd2339a50a51afa137d796
BLAKE2b-256 602bbab50d6260eb8205fb467d4a3fdc8227d2a1dc7ce60d519632ad3e3c7a8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp312-cp312-musllinux_1_1_armv7l.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 16fd210e9097b13d3f5fabf7316580e2dde300d570c78f79cb9ee7fbda60d003
MD5 5ce73f32344c4e81c6b2b5ef6523b11d
BLAKE2b-256 c6f30dfa4233179ca9733968ae69a5a290d747d52819d3693cc99f35c44f5280

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 807371b4866660d7f238c94f37fb2840cb4dacff0581c19826ec2668a387526d
MD5 368302ea4200e5df1d0a058b150dbcdc
BLAKE2b-256 3815e6825817c60c1cc163274c55f694a0cdcfb8dd459ed3f204e4b5d914e256

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp312-cp312-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 318d403c750194d1cf6f42feefd862a428d42dd425fe90deaf3485830095d35d
MD5 e85625fcec02d064ab4e2eeb474a93e8
BLAKE2b-256 447bc87a164650962a5aab1b6cc03443052c19cfb4346347f2d5e04a507262bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp312-cp312-manylinux_2_28_ppc64le.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 efd73a69fd4bb4469589e62027cfc7bb91b51a4ddafef2a231548d3c3a5442cf
MD5 5d7c88c427dc9706e17770c9bc8437e9
BLAKE2b-256 d210578ffb51fedf1f3f237242bd727865eca29959678217d0bc66f1be60b58a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp312-cp312-manylinux_2_28_i686.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp312-cp312-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 a218aa59ac9a0463d4a0ccc41a4999ede68957737c2fb179e2a7990f0674b25c
MD5 5fafac60d9f5fea2f034cc96aeb0b11a
BLAKE2b-256 f8f5677c995b9d5af07b9a7deca053a607a3a0cd8f6fb400fbd91d726ce8c6cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp312-cp312-manylinux_2_28_armv7l.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2b512017b131227747880b2229b92dad1f2a8ffafd464ecc39c58c072e509966
MD5 845b894595c80c376df707b3b0d0cfa1
BLAKE2b-256 fda7c7dee5a92f2b8fe2e5cb1d4fc542d55c6663f2a89206da5eec525db01693

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9fe3021ff2c8f9af12b7ad9f349e1ede8b84fc41349b6940ae55c4ef8c5cbee
MD5 de080a773b4f245622ecbba5cf019d1f
BLAKE2b-256 4799259e3e9b479b1b627b01d13c6f7f9771fb3e802057477408fcddd3fdbcf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1119495b1bee059dbeee49007beecedb5f17105303d9b94afbed791724eaf8ff
MD5 ff4a876e299df2ec6a947a409e6fe3a2
BLAKE2b-256 20418e2203b300438ad1503cf35811aa1ca5045d6b8b52e1b15ad31c177ddea3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cee9a5a01a1aa978e74d971edf44833f2e529af628193412b555ee5d5764502f
MD5 c1a40b74a1aee3ee524e98ef8ee4b5e2
BLAKE2b-256 13fac69c3ff40c761b787ed9f3e60f9939a3d26f72ec90b6d4b6ad3182647bb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ab2735327ba4cbbed08def4fbedd048f831c61bac46a0294400b5cd9846005f8
MD5 8423b48748241723274b5d4b44b5b7ff
BLAKE2b-256 1af4c182547758453aac4fbf17d7d00afdd018da667326e6f6dc321747af6c2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp311-cp311-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 637501da15ae8bf498cfe1fdd75a218ba3c9f3c7f389191aa070896354677925
MD5 f76e721c15064365e4cb95e33521d028
BLAKE2b-256 804e96f53195dd1af39bf040f044e95657e4cc6ddc676e9513689adaec05584a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp311-cp311-musllinux_1_1_armv7l.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d19c97a6ff41f131db62126baa2d40cb9cb99aa51622b6b2cbfd609f4ab68e95
MD5 1bf376acc411e779dbfcfb487878c1f3
BLAKE2b-256 8ae8d5782b009c755757804ed113f71bf19685e90c0f3565a4bca88c1051ee2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 92451a6732f5f108c2f50af4f880a11e3009ddbb2f83f7098368f7a5261ecb37
MD5 3932a8a6417f30c29b21616ed007ebe5
BLAKE2b-256 883b4fd375640ee0a59e281cfcae486039d4efdd206236cad3d4ea6a1be891b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp311-cp311-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 af6572c6209e33ae950ef6e9f6d49ac721bd128e2af2dcdf1711b598145dbc0c
MD5 312b9ff21d46adbcbad6947333d46a6c
BLAKE2b-256 62f6d0b6571dd102277ae221838808870f760456438c3a86546977f040481d48

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp311-cp311-manylinux_2_28_ppc64le.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a1ce2793d27b83a3970cadd740ecbbb6e8139246723ed1dfdf3faffc66bd39a2
MD5 9b6557358f9495f382a9df5d63f1e0f0
BLAKE2b-256 befee470d79e3a5431c7e9b49d5ff0220fcf6afa0b147b19558eec6ec467b478

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp311-cp311-manylinux_2_28_i686.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp311-cp311-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 e70381b202606b4cc92ef6331e8cc5470a188cb8cc528779c9d7eeab50d967da
MD5 12d8068761cd89708eba4c85cfd1e1e4
BLAKE2b-256 49fab8b7f4a6a14775a53c5411d9ee8957d1ab2ddc274f466d9f8992fc077cf3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp311-cp311-manylinux_2_28_armv7l.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ba7cf4fef005ae9ebead22668c1bb8effd9b8b4e5e4f1c43484f48ab04ac287
MD5 6328d7e2dbf0d01e7c1fbaa7f8f8cd02
BLAKE2b-256 703b85cd2e1c3c021804c205dc6d5c93a0e73b6adf3294e8f820247a9392ac66

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93c665a94ac0ca0a9124165e6657a20e7324c2b59a8573779f2616addb9066dd
MD5 d9626e843ac0bdfbdd649395e5e13820
BLAKE2b-256 ac4b61123da9f2a79fe0812e052f98b7792392005761deb737a9959fababe47c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2dceec1c952e926975f11ba864330f9dfef78458a6a803fca227b351cdec0fce
MD5 cebd3bdb4e401344cc7f370689cbec6c
BLAKE2b-256 8262ac2ff04f84d8a0f90bd79ec28a73d92330d3c0e210b52c3b86ae4e819d0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bbe970ebc313caa61b38493e874e72b6bc8696123269032154aa4eb1d8c1111f
MD5 48ae44088ad3f8ccb4494e682d9cc898
BLAKE2b-256 ed7e337ff06b379a6b1f89f29c68106dfb8eb646345e2988343c0d3df006a5e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f6407dbc5b25aa4d92d4f155c5f6fad4e2c6d77ae865b4b3119cabaf751217ea
MD5 5312c7b993bf0b994cbf335fbbb2fa95
BLAKE2b-256 f76be1057c72ca2362b63149ddeacbac9abd876c8fd96192f07c46ad5f00a901

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp310-cp310-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 2010f4facdcc9e55f972ea0fb944ea773f35cd8d472e8b86078ec324ad2fb351
MD5 7f90f67c81817ffdad49f44d5e33cb14
BLAKE2b-256 c7920c97522ea9ca510ec15d2d4df0387e9aa31680788ba1d2edffba0e373d27

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp310-cp310-musllinux_1_1_armv7l.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d0ede707c1798754ca94ee7aec190a81a7451cf73f44fb593b66c24476deb7e7
MD5 4c49800444944b1393a4469ddd5e6635
BLAKE2b-256 a31c1248a27eb64d98a4c95feb1fc9c444083698e47ff5c3a8bd309604ab0274

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c6335e52081cc15a0ad8cb7cef7db8718dd754b15ce0f2450c7962fe531ecf7b
MD5 171ba4b3c09578bae3f70e4f901954cc
BLAKE2b-256 73980b38328eac3561cafcd8c3e87eaa37b88709fcc3126553dca216477623bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp310-cp310-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4e14520017dfd4398185082971e31b74bdc4304295b03fdd04bcf3899c40e117
MD5 0a98a7f40f976b40a751e8d9138f5803
BLAKE2b-256 aff03e05963434f5a0858bfd159c02576d52a3ca4e049f0a432492ce4d767605

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp310-cp310-manylinux_2_28_ppc64le.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp310-cp310-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 83fe96522cb0a8490bfbbedebee2df36e36868a1f201058d7aa700fdef5254b1
MD5 1796d54c9ba7c68fa4049c50de1a7e27
BLAKE2b-256 ecc0e026deba8578eedf6f13e4c34866c6677aba7deda92cf8e27322014926d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp310-cp310-manylinux_2_28_i686.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp310-cp310-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 8a89be714739e4dc2b6a8598c1a723ec3f6c930638e1c2c7640d1e94b09a8f8d
MD5 db1ee2606de15c78ecf7aedf56d2b793
BLAKE2b-256 39bacb2c61966b33215d8c8bbb162b9ddd2aa453da2ba55e9df3723c5dcf2b1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp310-cp310-manylinux_2_28_armv7l.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f246a1109ff7f4bf63012a5f40a49af6ee9d4b264d24ec7381a89031085b0a11
MD5 e30270e581885a3207b83b316ef3088c
BLAKE2b-256 c714d72d6361e6382dc3795fad08a8651bd60e3e1c05a9d11124c36f6aeebe95

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a2461110baf24b4b9e8bf16381cbec6e2f9a87e427f5de6d2a480172746899f
MD5 e23cf189d2d41d96654b84f89c34b252
BLAKE2b-256 c85f584ce58a969615faf4c787c001d06c98abd652ace580b9d602de430a0a4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on open-aviation/tangram

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

File details

Details for the file tangram_core-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6ce7d14e6957f30281bdbc3104a58c403990a9000e8235b14fd31429d374a0a9
MD5 53b32b069185849a0a99632909339d91
BLAKE2b-256 1601bd3ea84fbfd36bb97731ec5622aae4731a01eddf1d622fd65adf84c5e0e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on open-aviation/tangram

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