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.5.0-cp314-cp314-musllinux_1_1_x86_64.whl (20.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tangram_core-0.5.0-cp314-cp314-musllinux_1_1_armv7l.whl (20.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

tangram_core-0.5.0-cp314-cp314-musllinux_1_1_aarch64.whl (20.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tangram_core-0.5.0-cp314-cp314-manylinux_2_28_x86_64.whl (20.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

tangram_core-0.5.0-cp314-cp314-manylinux_2_28_ppc64le.whl (20.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

tangram_core-0.5.0-cp314-cp314-manylinux_2_28_i686.whl (20.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

tangram_core-0.5.0-cp314-cp314-manylinux_2_28_armv7l.whl (19.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

tangram_core-0.5.0-cp314-cp314-manylinux_2_28_aarch64.whl (20.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

tangram_core-0.5.0-cp314-cp314-macosx_11_0_arm64.whl (20.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tangram_core-0.5.0-cp314-cp314-macosx_10_12_x86_64.whl (20.3 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tangram_core-0.5.0-cp313-cp313-win_amd64.whl (19.8 MB view details)

Uploaded CPython 3.13Windows x86-64

tangram_core-0.5.0-cp313-cp313-musllinux_1_1_x86_64.whl (20.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tangram_core-0.5.0-cp313-cp313-musllinux_1_1_armv7l.whl (20.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

tangram_core-0.5.0-cp313-cp313-musllinux_1_1_aarch64.whl (20.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tangram_core-0.5.0-cp313-cp313-manylinux_2_28_x86_64.whl (20.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

tangram_core-0.5.0-cp313-cp313-manylinux_2_28_ppc64le.whl (20.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

tangram_core-0.5.0-cp313-cp313-manylinux_2_28_i686.whl (20.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

tangram_core-0.5.0-cp313-cp313-manylinux_2_28_armv7l.whl (19.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

tangram_core-0.5.0-cp313-cp313-manylinux_2_28_aarch64.whl (20.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

tangram_core-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (20.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tangram_core-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl (20.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tangram_core-0.5.0-cp312-cp312-win_amd64.whl (19.8 MB view details)

Uploaded CPython 3.12Windows x86-64

tangram_core-0.5.0-cp312-cp312-musllinux_1_1_x86_64.whl (20.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tangram_core-0.5.0-cp312-cp312-musllinux_1_1_armv7l.whl (20.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

tangram_core-0.5.0-cp312-cp312-musllinux_1_1_aarch64.whl (20.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tangram_core-0.5.0-cp312-cp312-manylinux_2_28_x86_64.whl (20.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

tangram_core-0.5.0-cp312-cp312-manylinux_2_28_ppc64le.whl (20.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

tangram_core-0.5.0-cp312-cp312-manylinux_2_28_i686.whl (20.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

tangram_core-0.5.0-cp312-cp312-manylinux_2_28_armv7l.whl (19.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

tangram_core-0.5.0-cp312-cp312-manylinux_2_28_aarch64.whl (20.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

tangram_core-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (20.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tangram_core-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl (20.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tangram_core-0.5.0-cp311-cp311-win_amd64.whl (19.8 MB view details)

Uploaded CPython 3.11Windows x86-64

tangram_core-0.5.0-cp311-cp311-musllinux_1_1_x86_64.whl (20.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tangram_core-0.5.0-cp311-cp311-musllinux_1_1_armv7l.whl (20.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

tangram_core-0.5.0-cp311-cp311-musllinux_1_1_aarch64.whl (20.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tangram_core-0.5.0-cp311-cp311-manylinux_2_28_x86_64.whl (20.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

tangram_core-0.5.0-cp311-cp311-manylinux_2_28_ppc64le.whl (20.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

tangram_core-0.5.0-cp311-cp311-manylinux_2_28_i686.whl (20.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

tangram_core-0.5.0-cp311-cp311-manylinux_2_28_armv7l.whl (19.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

tangram_core-0.5.0-cp311-cp311-manylinux_2_28_aarch64.whl (20.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

tangram_core-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (20.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tangram_core-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl (20.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tangram_core-0.5.0-cp310-cp310-win_amd64.whl (19.8 MB view details)

Uploaded CPython 3.10Windows x86-64

tangram_core-0.5.0-cp310-cp310-musllinux_1_1_x86_64.whl (20.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tangram_core-0.5.0-cp310-cp310-musllinux_1_1_armv7l.whl (20.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

tangram_core-0.5.0-cp310-cp310-musllinux_1_1_aarch64.whl (20.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tangram_core-0.5.0-cp310-cp310-manylinux_2_28_x86_64.whl (20.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

tangram_core-0.5.0-cp310-cp310-manylinux_2_28_ppc64le.whl (20.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

tangram_core-0.5.0-cp310-cp310-manylinux_2_28_i686.whl (20.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

tangram_core-0.5.0-cp310-cp310-manylinux_2_28_armv7l.whl (19.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

tangram_core-0.5.0-cp310-cp310-manylinux_2_28_aarch64.whl (20.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

tangram_core-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (20.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tangram_core-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl (20.3 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 41d51cfb42f50fce5781b6664e170ef9d167e2a9de0a247263d6085d08785427
MD5 473e06f10e3531956727b4ba459288fb
BLAKE2b-256 12b1b8f3263c9624f344a8a828782b23e883bebee8a97b3a1c17e45b9b2a57ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp314-cp314-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 de19b9bfb72d1ef1c5023ddd3a755155af27f9a317bf80c9b0b6671ea6c7d4d9
MD5 ef1d846f074a72110a9cff8902a08995
BLAKE2b-256 89c63f76813e6312ed45a5c636a56b431f2743a94d9f20ceea9d673f104cdd36

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ce19ed25d612db422bfad192b7346d911cbef023e740a75faabbc26309af0bdd
MD5 f49df03bb3084d803741bd52412362fc
BLAKE2b-256 5e7bad6cb644339f939c79a14b07dd1ae5bc7992c594eb99a1a1a51aec990849

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3b79d182340291b2dd4e1946a369bdbbadb522cd8680ed4209a6f32f37440c96
MD5 fceef0cf9760e999d3a10b1ecf031d4b
BLAKE2b-256 ea7f92475df115a717664a323240771f8186c0004b820d9cb22251f48983e54e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp314-cp314-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9a94a9255bdc6347c2da260adf807c7b8733c3d523416fd68f54696e5d4a578c
MD5 812fd734e2b5575821458414b44f7197
BLAKE2b-256 240766a1286f700f13778a79050cf9569a10513531488b7d6a43be73802f3872

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 edd2de1fb77b3c5a12eff25df54d6fc9c67403ad133120cf3a1fd1bde9999549
MD5 1e06245ae31406c06555b50828addcdd
BLAKE2b-256 0c8def072fec732dba428870ccba2ad2cef3a5f1d427682207956c22ae0ce25e

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp314-cp314-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 ccb2e4c34d511a9b9cab2369f263f4803f9625ba3ed25f32cc9bd48effee8a8d
MD5 16342967140236bda74069a8ebd48807
BLAKE2b-256 aa14892aee8e935c7b30c47370059cbd083303eb47d11c57a4066caa337669d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f3bb3dd3dcffe0bd8f277412d15465196817a610e60d120e8e328942b4c25a60
MD5 4d63041665621a02ad91c11a80ac4161
BLAKE2b-256 3aa497037d57a43cdc0af1a91d418dbcbcf79a00e7609c8ae5249e988ae53349

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3da85e7a865e0dda786d7d798a44b1480d5f58d861f43c7651cb562e5323ea0f
MD5 87264ba2f0bf53e6ce5c5c8da2ba612e
BLAKE2b-256 c29df1ccdbee01cb255dbfa9011ed37c8ea2f1d00fc98dc4ea808f64e94534ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 85a034c2bf6f706beb9b995cab16504c07c2d7303dee6ce3a79d181a04526a4f
MD5 e40e652f585980bb057b93b6133f0f3d
BLAKE2b-256 04dd3ec967bea2458098cd3ee2c6f80d3c94d98dc3c5c72d409e29644740d36c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 781772505f8ad3c68025c17e91d89bd6a67bab7625ba535eb2b65ba95fd451d3
MD5 02143d074a96adef7ad6a51f07c17376
BLAKE2b-256 0e07986ae65f4ce95ec1824b54de4f4eefc5968fcbe89823961188853506b23c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7345354a438e415ab778c68e44fcffdb0b6341f1d94e87e7608a28cd1b17e5fe
MD5 c894c112ea26c1c40641e8ba2f07ba96
BLAKE2b-256 e69e14a45493e9dcc5c89b321704d98c309d10075b7234bdfc8786d7423778c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp313-cp313-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 9674631ea81ace47da598258c44e2d2f9fbac08c02db904d7a294b1447f1eeff
MD5 09fc2cec231e549873cf20bb6c3e00f7
BLAKE2b-256 e3ba50ae2655f4fa906d8127b887d8cd78de97bcc42ea916e6643feae2735ed5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 897371d641fe05e999fb2b1389883e25802455e3270f73dbb397fe8be512a93a
MD5 b3ed0bf699d235d706b232e36a34848a
BLAKE2b-256 f5c3c00c40af178ebee97db862da59ba80e2c6960e17aa6f7623176bd79324b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f0c5fe28b1df45d9c67ea9ce3bf8327bedcbc9e39f141f9c3607f16c1545d99
MD5 404f7ba0a99191f150f4db15538704fc
BLAKE2b-256 814ffbb6f366c413172a9b30a811aff99b1de9ee608b57d3d1f32450b1e11548

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp313-cp313-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7a87279f9795a775be226b6f596039c04b27497486ab7bac001d7252f905733f
MD5 0f774a74e0c656848e98bdbbf8b98ccd
BLAKE2b-256 bd5d92ff9d8b735e50bf95e5cf57c427e246514e6120551cef502ff8ef0cfe75

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 768d9726296bf2dd08d2851f1fbd009e75898b5c0ee03755a50c44322566c7ef
MD5 37eb9b44ec3a8ac9b474a80d50aa65bd
BLAKE2b-256 5ce3dc0b72507efdbad0003694a19a40b3638397104c7202c9553c5d7faf67d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp313-cp313-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 cc86ac8cfb51b4c36417372abc1e0a9693d42e239a5114ae99fc07de36e0be5a
MD5 b9039c57ea9ffd82330f83711b1b124d
BLAKE2b-256 6d6ef64113313f4f90f57518a82e3fb2675203cc2d1af2187b674fa922fc84a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 182781d128796e848b9ff3c7671be5b926835ac73e6f856eb1730464c05948ca
MD5 b67e3e33370cd48a8946fc94338ed4c6
BLAKE2b-256 91a9d7b4236f0681025e5a9dc34cb40733e3c7d6cc2c57b60b9174c2f53074e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1209d38908de943128069249c971c8f2db1ef912f3e406c4e68c92a8c4f6f2bb
MD5 b778328fa6633e395c64b9a6b7858d70
BLAKE2b-256 96937f380ad1e2f12ddbc98b5961c0640bba5a38548771c0c99e5032000a62e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d162910b47fb5453629deba9bab6844cec85e45ed3b791f709c974c1a36b5c46
MD5 913163d18bba71576c8833cb429e534c
BLAKE2b-256 6f63d7a06732b41b916cdb0f590e5b49fa454ae24cf27906dcb7bd0d17109432

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 679bda458db778eab07470fa7dfc8e802091aede2a6ac3e2fcb7999716fcb0cd
MD5 31076c3437b484550138e02223aacd9f
BLAKE2b-256 c186ee3428c076f36f11e5fa72d3147934bda599fd8b08796f1e45f0ed45f6b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 be99a53572626160ee331892de309452d9019ea8e3924fb3dcc418374be06b8d
MD5 ac60da2d8ed3871db6b52f349bce629c
BLAKE2b-256 08238250a0208eefce93b7d6237cc82ef9e8305e751bc2c25e2ebc13ac99f850

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp312-cp312-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 1574a7fe17a4cacb7421ed8c74f94f57d94d36cec9d32b7d45ae0a27d6a7f540
MD5 b8adf293cf3272b388fbe35e2d002fb0
BLAKE2b-256 a7bc38da7755bf0dd3af6866e2a9eada3d590c53c32670346a0d2f533f0559c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 283879f6e173b099147bb91e82e6f20cefcb27757afc6d9cd0e58114bc8d67a9
MD5 78fa22d85feb44c1b95338ca6123ee3e
BLAKE2b-256 c9e3327ce9047fc2c7646919e10df0aeb4ee90cbdad5a9743a1009038159c480

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0faf50b396bfdea60a825231772d8da7c2a013bf0e359157134eb4ec4ad18bef
MD5 5322fc4f8070f4d4d9559d7f7415b592
BLAKE2b-256 edfec554bb9d5a68e1f8bc55f9bea46a3c3676b963b028950b99ca170c747656

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp312-cp312-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ff9ff8fc18e0a76a4f094c0f6c16d73e819878a62572c96370d9aa5f883c5206
MD5 fb5ad9bdf7fe490653a7daf0ac174d4c
BLAKE2b-256 b624c5e1de17a77d74a8da32c49312d483b755367cdb1647d5557fc0c8055aec

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 42f3537015c89b3a96b4d25c1c6f55d5c464129adc1f6041afa5b444b9cced51
MD5 b1e7fc8c54dca6462e53375ffd5ef311
BLAKE2b-256 8045731f5fc8db4563a478b8bdc0b4e7580d7190766038cc553647a017a3e375

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp312-cp312-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 80a6d25b8e5682efd5870888154c195d13c548bb971d3965bb77fff4838facef
MD5 7802ef04599667507335fbb12046f1f3
BLAKE2b-256 bc577990fff87f4aac0088f278d08776e450e7ffae1efe57fedd5d33fd239bbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 43a22ae211d1525a5fc79a96ac8fb37b62380043cd2a84f0d7d6d3c80a66bcbe
MD5 736915e23b7d1c07af9a153e65186da2
BLAKE2b-256 68d4bcda2e7c5a47e1d46fb3de888d48f2db677c88eec199d4fc8f11a3c04498

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7887d7f06ee0207b49990b2d65e0e415bd1e7e7f2f9e33297c3d65a21b96218b
MD5 35306013638bc2885d92a5966f90269f
BLAKE2b-256 151aa2ac83c81597c1ca7618c796cb564e420d42512b2be06cc5fb3d123d839a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 29721830780399be2ee8b8703c01c60e9b75d8502c084a070c67a28ddaa78ce4
MD5 04c821131d5dced7dc2839a4f5bf8657
BLAKE2b-256 27ee3690de04c69d0d7fe6b0edf7d7b5d089ad80dc6c1f43b8b2685fb3a936d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d44b4b027792b227908995ca83e7baf71168690da66dffe238f5f28ed8c6cf26
MD5 49c6f4cfd5607e964a5cc21a15fcb1e4
BLAKE2b-256 62933df66df42bad30c0bfb008493e30de4f88b65374a9b3052e238ee077f3d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b4fd573b268eac25b6fd04bc535939e7833b1aa860c3d0b2dbd8bab75ec007e1
MD5 9ef9477637d69502f8a5e76495ba39b5
BLAKE2b-256 af878cd9e710277b2c034042a8de946e45679457ae3565c10837b8d9d3a4ff9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp311-cp311-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 14ea2a1a08411ba1abc5b0790b89c5dad7b1dd2d4759a0d18aec3581fa472bbc
MD5 6030c63ac1a6895653068f7feaf30cd7
BLAKE2b-256 f3041aab038404c53ec17207b07eb287a6ac4af5933df1a909490ea96def668a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 963203164233a45f9e82fb54da47e73e090ec429b1dc30879b2277856c79408c
MD5 35d2840589e881522a1d664031fc0c5b
BLAKE2b-256 c0406ad968152cd4f91e5ae0e4b7889fd9104874d231618a06b0b891b6704dd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2b92e583fdfe4aa8963c95b0ed242889e8565344fa6a381ca7127ebe77e07831
MD5 1e15243c9445865457cafcce6584bd98
BLAKE2b-256 ffcce55f82aba0da4c7a9febaf0a8f5faf96346506447a6bb66fa09b67f29ce2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp311-cp311-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4f75b83db94f68d176ba841e5b185f1c90c21e6f3ca0b2cf3f193f0be3e45ac5
MD5 34f9e68d5cdc0afe07ab33788a622aca
BLAKE2b-256 1d44f8465c7baef19a98230f498052a372d6fc3fee1142aef14fbe681d9a10ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 74e794ab559c8964dafc5327ac8324b68f1fbd962c5516c88406aa02d7282cc8
MD5 227b1c4240efe6ba16d78eb5d8afdbf4
BLAKE2b-256 8594e391303c043fc6ed800685b34cfc58388a4e26b1db08ed13841be1d2f364

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp311-cp311-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 befb3c8bab9fd42a98ea9ba300c9878f7376e8e34357ca908502d640507eff56
MD5 3fa85764cd87a18324b740171932489d
BLAKE2b-256 06ac399223615a8887df35c2180e3efaf7124106a25c124492b9396e27bb652b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a16986fbce22cf27fa3266531d17cbf6365e27d3000cfc4bafd7d6babddd8f5
MD5 52dc15c110b85275589a2fe7348e6d60
BLAKE2b-256 adf5ba7d107a54c0de2329ff627b7482422db099fef0d9320ce526969a380626

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12e59784eff8a3f347d798d29c10050b3281992b38a66c63b19c6895e412c6a6
MD5 a38f26d95d19d0d7f44bfb8411687ec5
BLAKE2b-256 896c1e71fd936862dc69b2e164ae917bcc3863e50cf6316068a04206964339ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 efb5bf10d6452abd2e6cac34c219f8873ce0a288a1ad8c64f5fb74b273cbb14f
MD5 9ee6f16090d159ff1564c348ffc84510
BLAKE2b-256 a0729f5e56816c5e20ffe5584dcebeddeffd6754e28767436ff5acadd3ff0632

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 73c72857a15a83c90616ddbd6bde1861b82385b0501530ad759c18d688c2bca8
MD5 9ce930b89e62b26bfc09c67fb4661f09
BLAKE2b-256 939a92de9cd0a904f3da48484eb8557c85ff5b241aa555577cddb5969055cc87

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d9ac47500f5d188aa56153773014f3bf51a8a79f3d10fba342909eadafabfe91
MD5 f732011b1679bfc787662aa96025603f
BLAKE2b-256 5081aac5ebb3f58c1103f67911c0445500f2085f9d2f8446d0c943a2fa0f1559

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp310-cp310-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 c734a16d83363ecd893aa2baa6b36465cc51af2ff51da3022bf4f5c85c7fb187
MD5 2bafbbe01e9ff49702fc0d516a3a327c
BLAKE2b-256 2cc06a57aff12592a544a7e42309d99cdf8807d935dcfacf66e9db2399a66aa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c93358bb2795a4555780bd268cdf07c1014b9eaf1d47a7ab9da3b8b6adfc41c4
MD5 2e3e9fd9859bfa057419ede33f8e197f
BLAKE2b-256 cb61392b3df70571ae4511d397c83fa32fab9c71044ff16e5ed6f65b6a3390b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9d5f318448dff37aa60a29d791ddb3dd08c0f4a2519fb0a0235c3603f5922077
MD5 d9ca0f012a36857a249ced2fb919a1c7
BLAKE2b-256 ab9d047a9d8bd38aa58b05bfb42018f424832618ce3e58e9715600d796ea780c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp310-cp310-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e65aa9c00ab41799d4ede77f9b6967f92cc39ed79f6c6b71c6a7d1b51884710f
MD5 a532f24767799f4a1defa24f64faa9aa
BLAKE2b-256 196aba22fae4bc7ea2d35f044686492940f85f5f6a3d1f47ed029ed61172070f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp310-cp310-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5c7327ec779c2cf76e82eedafaac0799f3d32665d6eb71413a0a709dbbfe9abc
MD5 ca8c103254d093ea0c89ac4ddae1eb50
BLAKE2b-256 49b51d8ff96ccc31ac323de85201a87cb342276d57788f00454ae34057bca45d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp310-cp310-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b8873f58c76ce5bcd4ccb3530740168b652b89150c0be549ead19eacea2dd126
MD5 0f803725c0bdae658b89ca5418286d1b
BLAKE2b-256 45edab13a3e0ee06b4337e9b93864edd906013ee87cfcbf82dd885a761dfbd68

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8e0e65d374731881fe1e74000b2ec53219993194c211bfcd4c3713149f2a9d07
MD5 dd468eaef706bcb083811fb435c2b8e2
BLAKE2b-256 4284414e94cb614d018c9353aee98d0b3c578238c86acbf4cea547556a68b0c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddc144e5eb94ef023ae7bb6cf9cd5dfdc59880d47c19f200e38f25921bdc937f
MD5 ca1e804e37cbef5f988c4777d072be56
BLAKE2b-256 914985276276c765616ba9ba7de0ed2021ea4851387099325785c2c1293c40d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for tangram_core-0.5.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.5.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tangram_core-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6bb15995031b55c4422c0307d018ba69e09ddc39df81fdeaae125909a50f004d
MD5 d29f31dfa62c28e141612784e63739f0
BLAKE2b-256 60e3fc5c8e3fea9f6104144536820e026e70d79b174ea00fbd28e65e5c7034ac

See more details on using hashes here.

Provenance

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