Skip to main content

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()
# %%

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

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

tangram_core-0.6.0-cp314-cp314-musllinux_1_1_armv7l.whl (10.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

tangram_core-0.6.0-cp314-cp314-musllinux_1_1_aarch64.whl (11.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tangram_core-0.6.0-cp314-cp314-manylinux_2_28_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

tangram_core-0.6.0-cp314-cp314-manylinux_2_28_ppc64le.whl (11.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

tangram_core-0.6.0-cp314-cp314-manylinux_2_28_i686.whl (10.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

tangram_core-0.6.0-cp314-cp314-manylinux_2_28_armv7l.whl (10.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

tangram_core-0.6.0-cp314-cp314-manylinux_2_28_aarch64.whl (10.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

tangram_core-0.6.0-cp314-cp314-macosx_11_0_arm64.whl (10.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tangram_core-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tangram_core-0.6.0-cp313-cp313-win_amd64.whl (10.4 MB view details)

Uploaded CPython 3.13Windows x86-64

tangram_core-0.6.0-cp313-cp313-musllinux_1_1_x86_64.whl (11.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

tangram_core-0.6.0-cp313-cp313-musllinux_1_1_armv7l.whl (10.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

tangram_core-0.6.0-cp313-cp313-musllinux_1_1_aarch64.whl (11.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tangram_core-0.6.0-cp313-cp313-manylinux_2_28_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

tangram_core-0.6.0-cp313-cp313-manylinux_2_28_ppc64le.whl (11.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

tangram_core-0.6.0-cp313-cp313-manylinux_2_28_i686.whl (10.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

tangram_core-0.6.0-cp313-cp313-manylinux_2_28_armv7l.whl (10.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

tangram_core-0.6.0-cp313-cp313-manylinux_2_28_aarch64.whl (10.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

tangram_core-0.6.0-cp313-cp313-macosx_11_0_arm64.whl (10.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tangram_core-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tangram_core-0.6.0-cp312-cp312-win_amd64.whl (10.4 MB view details)

Uploaded CPython 3.12Windows x86-64

tangram_core-0.6.0-cp312-cp312-musllinux_1_1_x86_64.whl (11.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

tangram_core-0.6.0-cp312-cp312-musllinux_1_1_armv7l.whl (10.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

tangram_core-0.6.0-cp312-cp312-musllinux_1_1_aarch64.whl (11.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tangram_core-0.6.0-cp312-cp312-manylinux_2_28_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

tangram_core-0.6.0-cp312-cp312-manylinux_2_28_ppc64le.whl (11.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

tangram_core-0.6.0-cp312-cp312-manylinux_2_28_i686.whl (10.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

tangram_core-0.6.0-cp312-cp312-manylinux_2_28_armv7l.whl (10.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

tangram_core-0.6.0-cp312-cp312-manylinux_2_28_aarch64.whl (10.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

tangram_core-0.6.0-cp312-cp312-macosx_11_0_arm64.whl (10.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tangram_core-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tangram_core-0.6.0-cp311-cp311-win_amd64.whl (10.4 MB view details)

Uploaded CPython 3.11Windows x86-64

tangram_core-0.6.0-cp311-cp311-musllinux_1_1_x86_64.whl (11.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

tangram_core-0.6.0-cp311-cp311-musllinux_1_1_armv7l.whl (10.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

tangram_core-0.6.0-cp311-cp311-musllinux_1_1_aarch64.whl (11.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tangram_core-0.6.0-cp311-cp311-manylinux_2_28_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

tangram_core-0.6.0-cp311-cp311-manylinux_2_28_ppc64le.whl (11.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

tangram_core-0.6.0-cp311-cp311-manylinux_2_28_i686.whl (10.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

tangram_core-0.6.0-cp311-cp311-manylinux_2_28_armv7l.whl (10.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

tangram_core-0.6.0-cp311-cp311-manylinux_2_28_aarch64.whl (10.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

tangram_core-0.6.0-cp311-cp311-macosx_11_0_arm64.whl (10.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tangram_core-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tangram_core-0.6.0-cp310-cp310-win_amd64.whl (10.4 MB view details)

Uploaded CPython 3.10Windows x86-64

tangram_core-0.6.0-cp310-cp310-musllinux_1_1_x86_64.whl (11.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

tangram_core-0.6.0-cp310-cp310-musllinux_1_1_armv7l.whl (10.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

tangram_core-0.6.0-cp310-cp310-musllinux_1_1_aarch64.whl (11.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tangram_core-0.6.0-cp310-cp310-manylinux_2_28_x86_64.whl (11.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

tangram_core-0.6.0-cp310-cp310-manylinux_2_28_ppc64le.whl (11.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

tangram_core-0.6.0-cp310-cp310-manylinux_2_28_i686.whl (10.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

tangram_core-0.6.0-cp310-cp310-manylinux_2_28_armv7l.whl (10.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

tangram_core-0.6.0-cp310-cp310-manylinux_2_28_aarch64.whl (10.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

tangram_core-0.6.0-cp310-cp310-macosx_11_0_arm64.whl (10.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tangram_core-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b73052c0006359843fe701263d74d48ed6f1e902854fcedab9920cedcd19cf5c
MD5 586786d356091fb2ed6e9b43357e5638
BLAKE2b-256 3a82009b1ea3d6336efb3337fab57632623bf66bd42697271ce639599d1bb329

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 af8bdfbc629cde6d4bab3c871b66259311900024a847aaab4699782acc924a58
MD5 914b8b784d93ee7a2d0049188b2397c4
BLAKE2b-256 d5adefa8c17c2bebc20a33438c0073d1d0e5f906311344452f7a99600ab16117

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1158ceae673fe4e53e58e2544e1baf461b407adecbec7a9183dfad8bb1141feb
MD5 cc0798c98cc3c13f185cfa2db207093c
BLAKE2b-256 af704f22b9266b633fb2c4230b72eaa73eb1189107f26b428ac0a36a7e99c35e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cc16dc0926460a894a3e94422f710d76b670c15d77f45265b837146878c9faa5
MD5 843adc5dd7ef5abb4ade08a7ed019448
BLAKE2b-256 566f211a7a9bfb6cc47f7cbbc734d39387adfb0d51ccada2e26e14f2f7bead7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 377cbf84c1bf1a35c058e4f4b9918f8da59eefff7a113c2ef94774641bb82b58
MD5 613bca2e850d910417ddf25525a9ef2e
BLAKE2b-256 5956efa23ef5418d26aa3eddfb4cb78f253e80d50790f0fbc69b589a2b5a8b73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 c166fd6fb4a739ca66cd2e699d96c917ded804915b29c17f5f3b640370550548
MD5 ea20e7923f578b91e420625fc2421c98
BLAKE2b-256 5d1661107378e50ce827e01253ebd7874ae7381addf29d3fadf10366711968f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b7de1f34ced8ecff4305b4298ad47809e6799f721d879fbe654341f75426c5f7
MD5 16d3f533939f8f1dd1d858d71674287e
BLAKE2b-256 6112295ee6677129ffcaae88e9ace6e7be7203cfbeb299709d7f0a52d16e953d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d4db4f7fa85eb6b013f8a3342cead2ea122c26fdaeb64fa79761c8173effb51c
MD5 6885cdcb95dd0236485297b501d97978
BLAKE2b-256 4b2083d319211e733272557cddb9178bb9dc33ee076c1ab02e83f6585d2b01e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d1d931e6c80b34804603ba76b1ece067283dbac9b9dd938121df66c4e4533db
MD5 38918fd965ca471d112c1fa747ea8fa0
BLAKE2b-256 5aa6210296022695666ed3a1db4cee9554adc046b544e5d8623d24e639a01ff9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4f70b6fb064cbb80b738d7e74f5b6b11d7794f01fcdc4f36f4f4a258ce534373
MD5 b629bf05df2924ec37e2422a638ee968
BLAKE2b-256 31b1c1a20b3ef2fefc6b973b0b2a66b72151d090200f50a7d95a8699d0074443

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a86adda4300ac37f5b38967a56eaf9f8e92a55eca2e95307f547efbed37e2eba
MD5 f76c81805d2cdc2166861606d8336ff2
BLAKE2b-256 65d40752be634e6e0b161a7c8e0fc650834396954df03ae7988ead61e55f23f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d8d5338dcd8b4921f83d6daa74d930865a958f61168cab73f6bcc47531e7e498
MD5 e34b967384194a7c2d95203a6bcaea68
BLAKE2b-256 6be5a70529265c62729ed042e98523d5fc65e8f6c19bf9e1848ff811e3c43255

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 b034f9731d1b4a0be6ce30cc0d08614024376869d91c0d676c27e8a3a4c51b1d
MD5 22a040e047dceb53913fd150fa629a09
BLAKE2b-256 0717480c0a02d90622809a2525dec0ed2414d6863a5fffceba2f409a8dccd90a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 373904d4616a85eb329d8d656a2df0e6e236c8c7cb76d48884182ed9816b40e8
MD5 1a86097dece5f27fe59662a052fa9a4a
BLAKE2b-256 26aeb5251b2f1450a5581ee825bf01cfb3e6f13904993a86ea5c5d7524a7180f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a284d5a332b70e35fd99052bcf8cdc68f93cc68720d11aab37b72c68cb99e4f8
MD5 555cec52570d50e79ab70a23e476fbc2
BLAKE2b-256 ee989a5d8e29b1294d1f3a5fd27f4b944c0909f290bc1ad5c6b081adb5f8d298

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8bb9014541a4368b542f80fd3c4eedf179846f82320574a5d7b35c5ab8e8dcba
MD5 8de1277ceddc43b52f5cb3e1ff49ec1e
BLAKE2b-256 223fef803ada44769d5586d34d76a0733104f85706072a7369815ac8853f2391

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 4cd111bf36d472c7d88fe9e2058857b495db46fcb027a9d3e9b5187610a3a0e9
MD5 4b41d6b8d04f6d65e98c0c5b6c804773
BLAKE2b-256 eca45430a3d8fbe20127738b984c5d73a405c26aa779394869e3abe27e9ea2a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 ad7588437cb43303293bcd422d4a86678d7755eed026c0cb0a09ca03ff99c500
MD5 4d1c947a953c3c36828a219dfd49ce4f
BLAKE2b-256 4601f42430062061855991c9b2a712624c7cb07eb5b064b8282725797d12941c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c84f4342e654e3f0e146009a0fb7ccb9b597ade857437cf72fa6c094471a114c
MD5 18a0b2996ec62a2dd96cd151c2577784
BLAKE2b-256 a9b43657339077f015516203c6b06b6a864b9c8e57da1f850a508d3c0a01dcc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4080867df46ed5c518ec21de29b03c6cf628683d2d460acde864421d2cdc5e22
MD5 e3a63eea1cc03dac095a07fead24fd9d
BLAKE2b-256 eaa65e95c95a21b1550c5342b7fce15089ed52b735cf3c463c6688b4bedb9c74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d1c13d4a5c529ee15541f186f3154d3ed746ca387b62ecb69136c36861ef9ad8
MD5 3929fafe7a296dd50bb9ee8f3aa54ed2
BLAKE2b-256 79c0d9d835ccbc2f2a89072883191d3fa1c8d543c4c871baba46ecf9ef9f79e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 233f4902c04af39f7f62ccbb596a0a2e70ff6b389fa98aca8e9520fde19240aa
MD5 70f39d74738fcc4090217802a79da715
BLAKE2b-256 2686a6832729ed01b0e4bad95ec6591e45328b677ac5bb6cb3fbbb6c01941a81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2fee563b05280d1c846e66439fd4d6df9db934628dbe658dabcbde5720e9cea5
MD5 dfd984bbaf02513b1787e61e1548b27e
BLAKE2b-256 81ba009cb2478a4bfe0f88ab20eedb006d8950c7bc12675c7e765865d1449594

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 4e67f638e0397e06268ea303385f3f754327326f92b1b796510c6fbc25d650d4
MD5 9c280f931c54a30b942e0a21ed8afc6d
BLAKE2b-256 8c6a581c4acf726eba33c3c80b48d052fbcec1d462ab1d67fe7a3a5707e4b30d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9bc61117d4540f0b61f34dd0c5e72c7aaa369341f13f53b7b2af7db0d4ed3246
MD5 f1329e50a27903d08715b5d52f11c1e4
BLAKE2b-256 810c966441ffe48b9e5f0a55b2987517bd1807e3cde38b8b5d80ef348ffef20e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 47d84f8ee45043d233779811ad5dd2cb4e9b4957331e398e15b7a5d1a8592062
MD5 fcbba164953c82c1167f1dd2f666ea61
BLAKE2b-256 587eb262c7ad39fa9aca011664935be902e68bba7dcd11af0153cd9261c57602

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fd76a9462dc9a165be6a8606ca7dc4242a5be81576f64093ff3ee0d2c16a5904
MD5 40dbf5b78c810283e0b04f7e5b30572c
BLAKE2b-256 9fbe030b5efea8069e9da90273ba02c6bed34c09ddd7e7e8854b52dbd6a4a1d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 13885a9e83e08110631f74c03b02217cbf6cba6d2bca1af6ce114d297a8e791d
MD5 617e6eee4aaa8d0e09e98b40090cbdec
BLAKE2b-256 20b5463e62c01d2bd5e28f84802e61e7b0b11719b89ecab6753036568b1e89e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 51b587f062e812fc28b731aafc98faacaeb736672eb0fc448639e7a03abc4b1c
MD5 9a75b47d42414388c568a05c5446d398
BLAKE2b-256 78fb7c0617676d90212f200c649b23a3983846efcb48a8e2eb01be206a015dc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 125db9085ab80b46bde2d59015db2eda173a2ea6691cc515ad04db030119affe
MD5 46e1b4d46a8f47385ad23191de292ac5
BLAKE2b-256 abf18f49fdc822634eda4b9bc7e0b457caf38a3ae86c58d168f276e11e9bc2cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb4de374184abe9130e8c97125ff5966e017201bc7699c80393e932085c3ffc7
MD5 fb7aee56d450618eab94716a4cd8083d
BLAKE2b-256 1dc38b8fdf74ef4a8fcc89b3a998210500fb60e557e067a902616cb9e60d7427

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c5e416a4a11bdfda594c86e1e486e1bd19eabe08f2afb1e2281e73a19a65fef1
MD5 1652d3c643f07b2ef384bd0dfef07b18
BLAKE2b-256 ccb85252fded8a36c0d8a63c3361d812392956d9b8ea37bb5abb9afea79dafff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 18732c603ea54b61525b5aeecbe39b1e785adf4d495bc02196a8561af8e234a2
MD5 9533d802ee660c3c781f55f3b54fc28d
BLAKE2b-256 3d51524ccf5dcd5e4627577c507356bd3926d81316d1e042434cf327954fb983

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e362a32d345bd88fdb2087fbbf9ef447f8c934a4f22ecd18f285039bbaa99609
MD5 0b3beac3157b08e97d85869b5992690b
BLAKE2b-256 758fa79f7d3503d65813d6de0e86b77eeca69d3e9fd0044022b68e72b397cce5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 198cb06ac3fc5ff72d92d0db8538bb3367e10ff2123bfdf1a01ad3f4806dcecd
MD5 104b888348300faa885b6d349abf8c2c
BLAKE2b-256 08835b1ab4f056bbb2ff029b7d848153fb9aca5512854a4120c34cfe8b3ddc9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9d3596b17fe7702f86308d2afdb7f353c6363247f446e7d0ee6be4f5cb52a927
MD5 6c3ecc6da187bbdcd6c7de7af0001d6d
BLAKE2b-256 643a30fad5095b68b45de22603b7c7b997e39465b0dcaa31e5e5b506c7ad34ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a96059fce7f0bb3158a26d1449f0dfe10c8bfcbc15e895731a4fe55db4043210
MD5 e69f8943904473f99225061bd824be48
BLAKE2b-256 8d93249219233c743c6b9aa6c66786fb2eb79c25c48e6ef7121bf1f4dc333359

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c1ce2a09a74f9b6b91135711bb3b561cbef145551e502f2a4c0951c9f9ca6ead
MD5 f140192e2b833bfc799855b3fb44a041
BLAKE2b-256 dc3b809387de271d89cdfe5e046fd841623604b58a46c9d3f9bc0adebc358ab4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a336bd579d05da74375198507092e9997eb22e5f0dbad2d2043de937dfb9c7fe
MD5 1a56a92f2be7d38f5cea012ff2ab4dd2
BLAKE2b-256 08845cf7a1fb95647e19c0fabe47b0fa01e7b83b12496934cf6477febac2c61b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 43ae9e64a208fbe60cc195ffa35ff76114138b7beb6f89619d0f8374407d8d17
MD5 4a2b9721f2aa410c50d8c4ef88a7acc6
BLAKE2b-256 2485ae087c13dcc53833368687b519131c965c09bc56398421a5274ace6cfa95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 93b3f77851e95b0366e3422c807c3dae0dfa5c271a4b0b2958f0bb5d1375cab6
MD5 698a8fe127b7db46ceb8b4889af24516
BLAKE2b-256 7a0f5932d00a848737f7b5abbb0cc3d54073b4ecff1d98bf56de58a38bee69a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74d851850c4a2af0c5913297ffd809046d49c0d6eac8ae7e67f4d7043430ec76
MD5 aaa798fafd8c0f7295307e2c27dbc1f3
BLAKE2b-256 1a2091c8f736c8d4be3c7a1b52ee5d47bd32536597707dc61c0bd5fa45e7f048

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3afd8b688c24c972007b9a2929316f256d4d7fbdcf004f84802b642efe0d227e
MD5 b04b91cc42248b268e0e04ac6cdea4b8
BLAKE2b-256 e3420efae0b34ead34ca99fa487ef0172a3ea22bcddf25a6b97fc8ebc2c3ae3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f089bc994fcef760ac996e02f6c01bcbcee9434e41a55c12875a0d7081314f04
MD5 a2a4462715f6a40e07c4876d8dc22d2d
BLAKE2b-256 61febeb3e5022159fe0ff72c2c486ef22163f028f680cd72d876129d8b0b0d90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7fdf45a44e18cd384f24ff58f3924c3884873ba42b451d8f2ce2499dfad9a58e
MD5 1871116cd40adb5170612bd6bdb5b785
BLAKE2b-256 c355603a23d0b861ccb7ddb556c211cfe6faa7b68d600a5562f0bcc32a6c8f77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 0cdb052503f21b7b97f6f18ed00d0053a5052a2902dc5934843fe471406e0cf3
MD5 523ff5b2d063530e9abf525775782e0b
BLAKE2b-256 541ee958c995147c58d5b5a65ac2f2e2990170078d44725b43958ca8ae1e5800

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f9ec4e9b2c2d7153b37e43397e41b5a93e53adc55935df7d9d14be9330f4b43a
MD5 d17d724eccf8f59355fef048413a6f78
BLAKE2b-256 c29c180ddf9be15d06e79b35e529b8b993d37b9ec33b59c3cd01f825a7703d16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c4af7950366b37c3505c9a27c6f1e2ae9dd69e91ffdd70c75b74ced8adf36a53
MD5 c1d49a37baa0e349439b8279cb8054d2
BLAKE2b-256 ba90b500c70b7026be9208d02a2107b61a7d7520a1f80d3a4ee9e4e22077198a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 511a37a7a8ef0ff689220b1ecd24de9c59634eaa619fe52b4b233d1bf538f4f2
MD5 17217e6f096e53f99e7757be2b0dce35
BLAKE2b-256 b9877ed2f25a6bc0230f4685625a930add98f3a6c59f8f75452996404012fe38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 971c1c2b5bc6cec4f1500cd846bf5f8b74f9841d30fc054836e799b05d4eda6e
MD5 3d87e1c994e835b67af4c37427a6001f
BLAKE2b-256 26fabf17c05002e8dfe9387361ebb887a5baf159e74dc79e4b1e7cc94011a3b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 43d7e3cc008214a62d3a57974d325691946c54960faa907a91581b979c8e68e6
MD5 420de9de844d853d02d5d0a6c8213562
BLAKE2b-256 5e488f657d45c6473e645131fff7a9540208ed14bb0268c5c4ec77095cca79c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6f2b6ef058ea162d3ed35164a548402736f9fca3505001b4f5c26a18d485b614
MD5 dcf8a2a9f3e8429d565ce2eab0c38455
BLAKE2b-256 b88ed8bd4bf7ee7af2d62d84139f33f665c3936b2aeab91aee62edf2521c19b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ed4cd4bb85659717beda70df717916e56fcd929e62dbf9b6b055ee7fe35e8cb
MD5 7cec46e03f17812acb941348adc2a33a
BLAKE2b-256 a5836860d481b42c5cde7a519f8bddcc9beec94e317e68df85f69525d476244e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 60f0d45655307e169d8490b7d1d3e016f611f9106a751be9af1c568e6bd9d9a0
MD5 7d7d073ed282ed466de832302a0ad9c6
BLAKE2b-256 c9c2089fe3d516e94cb27ff72b3a57100a295692389a7e4d80969ad819bff402

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

This release

0.6.0 This release

54 files

0.5.0

54 files

0.4.1

54 files

0.4.0

54 files

0.3.0

54 files

0.2.1

54 files

0.2.0

54 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page