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

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

tangram_core-0.4.0-cp314-cp314-manylinux_2_28_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

tangram_core-0.4.0-cp314-cp314-manylinux_2_28_ppc64le.whl (7.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

tangram_core-0.4.0-cp314-cp314-manylinux_2_28_i686.whl (7.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

tangram_core-0.4.0-cp313-cp313-win_amd64.whl (6.7 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

tangram_core-0.4.0-cp313-cp313-manylinux_2_28_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

tangram_core-0.4.0-cp313-cp313-manylinux_2_28_ppc64le.whl (7.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

tangram_core-0.4.0-cp313-cp313-manylinux_2_28_i686.whl (7.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

tangram_core-0.4.0-cp312-cp312-win_amd64.whl (6.7 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

tangram_core-0.4.0-cp312-cp312-manylinux_2_28_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

tangram_core-0.4.0-cp312-cp312-manylinux_2_28_ppc64le.whl (7.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

tangram_core-0.4.0-cp312-cp312-manylinux_2_28_i686.whl (7.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

tangram_core-0.4.0-cp311-cp311-manylinux_2_28_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

tangram_core-0.4.0-cp311-cp311-manylinux_2_28_ppc64le.whl (7.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

tangram_core-0.4.0-cp311-cp311-manylinux_2_28_i686.whl (7.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

tangram_core-0.4.0-cp310-cp310-win_amd64.whl (6.7 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

tangram_core-0.4.0-cp310-cp310-manylinux_2_28_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

tangram_core-0.4.0-cp310-cp310-manylinux_2_28_ppc64le.whl (7.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

tangram_core-0.4.0-cp310-cp310-manylinux_2_28_i686.whl (7.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c2e5c4fbee0e95375cfcfb3166edb9310bfb326cab44c6310b9692254825150c
MD5 87e45dc2145a8005dc73db06f44916ac
BLAKE2b-256 1b2bdba8bc7a0815ac97c352a394aae560204a6897850146e7e0f595184ab284

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 bf50e53c8b20e990b9b2bd9ff14b9930dfd3a2aa085162afe9444f8bf8322492
MD5 0a034748d27c0c07608cfe12ea37272b
BLAKE2b-256 974da6e417e4bdb0594ae21dd1eaf885ba191c8ea2a182eb11267c709aa8fa84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 64dbef0e2e890ec81bff3cd2637a0081f286d8ae64c811a88b47c0e1f87f5dd3
MD5 ba50d86015add60a9f0892ca25b75517
BLAKE2b-256 5677caff04121d0b39cc05ec11b7d8464241b427b850e748f55fbe82d87dc2d6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4f3bfa706386a0bb06d722d5039b39b5c04b33d6942193eefb5146c1a110eac6
MD5 86bcf772669143b0c0c4e8a5c0da3a0e
BLAKE2b-256 108439585f5e1950909156ab36aed8a5ce81534fe97073cb0841022db8ee5661

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 26fafa5d8cef298c2998999b18fb6b0a96bc521ed3bc9ead820f93474c752c38
MD5 2acb0baf8e4402de01a934ea95ec39b5
BLAKE2b-256 53e19ab9f8ee7bc35afcb9931e3df581d1eb722c3bea20a32cda20fdc20a15a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3cdd3f5e02a7083dd7c9699701082c4d7d767610a9ca5cf631c5b2b6fdbf3439
MD5 6925e498384f937fcddb7c0136833ff0
BLAKE2b-256 0a46401b24483d3e1c47fa14b1e6e8d85ba0056b4f311f0c539e021456d1ef61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 2c36bdc6a79001ee9ac1ecb86b4ca1bb6a479d8183f7ff0c0083305e00f79beb
MD5 f234f423e2813ebd53b013d01ca28e06
BLAKE2b-256 7746c3c564f4493c34df44055d94be8f681475b17af415418f2da9a3b1f5d844

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b1a098539e7d9dee74878a5ce03804050cb85110f17da543266bb2f7d2c7d052
MD5 4ffa44a7a8d71e96ec862440fdf032d4
BLAKE2b-256 64ee9d9c73cba84331b94126bab50d223a06be202fedaf3672b9ffa2129153c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ceb2b919a5fad3a9633e67ba7930cb29a3966f979921213e39b45cb073e8aec
MD5 1bb10a327f83dd05c4c4517775480b47
BLAKE2b-256 f73ec061a3fe2a89b02cf8aacc9a54e9f8d7e7159af1b6f243bb404ddbeb0e43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1661a15137686651e8b72f2ce20f23ebb97e90f8eec5b76a72dd89b3ab812985
MD5 713ad3e909095a0610cc8ecabfc1a160
BLAKE2b-256 7b5310b1b70d89fde84828fa3757d7f34a2f40f9fccc31f999ef49fd66ba7c52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b37d3e7f2757ffdff2c28578ecc0e8736baf0f02d6ac7a30b821cc19e3e8ee0c
MD5 e8c1c29605029cd203fb27dba81c5c2b
BLAKE2b-256 7ebef455e71869cdb6bad01eb37638705717a7851b4179625a10c6e6014af954

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6bca7c2e43d988266605bf9f39e6dc35b115474445c956b98389ea8639321f40
MD5 cc9152f8612b52e83dc180ad51810429
BLAKE2b-256 dca0971679e8669d8201a87d11aa4f15a0f0067bd38aaa4ae26c8566740a6d0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 a072652e1f77d31a8113cfa0ec815d29eeb699ac9f2bdf238cf2fe6c8283eccd
MD5 7430f0f2c62f244db275d598187c8344
BLAKE2b-256 4436e6a76f5856c522bd1fe77032c73f9a1c11fe0dbfe7b5078c19c4b492fa19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 63463b326d231613223026f70b0083e223f41014205461397676a61f378744cf
MD5 8acda6e7795e534ccc3cae62e446d8fa
BLAKE2b-256 585a8167ffa3e4e299e4afe17a320fbb0da53abaf0bb27d0e7b5d434adf87cfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d7de3028739fe37d4d22331317e4ad053db0032766d21b2dff0082a8457e51ec
MD5 c5a2d8c0de3fbdafd9baf818d779e944
BLAKE2b-256 19f9ce0b2976122cc47657056f5e524e6e0f7f7e09e0917feac250f8da2c6bed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 62c2ebe73b82c0a9d9f364a7a95284f39c0bf648219313343d766cfe127f2666
MD5 49b76d6b19d68d560a483ecddbce04dc
BLAKE2b-256 8f5c158d90f74d69ab1323ac4ff84392b0d171608f430960d25f281c12ffad4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d2ac6ef5cca1f468ea623d5105e22d5c1fa91490a67fa9344631e2b6ae144d9e
MD5 55f637554ccfddcf22bb26081900975c
BLAKE2b-256 2051f25684f9159b68a3186ee6a3fa8f3e63b510ca800ddecdf4e7afefa6738e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 855481c7284d27ee6770838db966a43cdbc85cbde862974b49033e8754a79540
MD5 1d6314ca53574273ef9199c56a9e5db9
BLAKE2b-256 25d6ddcb2a54435c54bebb876c6f954ff69f9486f37b57e331a6e5831e84df9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4ebab89d34c462f078156f0af6c797d0ed9f6f2829c27555ab59ab8b0b7c9db
MD5 f1f48708251cdc8df139161b0c033208
BLAKE2b-256 cf24cb06188dfa639cf9ba0f0d0556adc08b3dca86224fb22b6fb6c0b3d4569d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b7758bbef8f07942e9a4ce4c5be691924869709056c4faa27c6cced71928477
MD5 25c3f6fc3eb605f5c4bbcb12a19f2bc7
BLAKE2b-256 6b8739dc6cbb61a983a1e745740899d05aa4bbe5edb75b15cca0c0b05b8c79c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8e6e870e740187f009f31e52d47bb285f4907ead986a81cd4fed40a2174599cc
MD5 55d52d4db2de202da0f22191d49bf7d9
BLAKE2b-256 04d7739815a14662b2d5ca315b8440573e77b605bec8cf421d7f3e6752285a2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 df1649bc715964e0e9e3cc01f08ed3a24865b4b95ad811324bda8721c5d67bb4
MD5 0c89c5229aa4510393ed02a1e82fe263
BLAKE2b-256 a16abd0124d0d2b45ff9015da853ea27ba745e4ff77ae6938b3ac30f8ab599ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e05a0e558432b17cffc3de00038c85ee42c3780ed7d51d3ec0308fdb83721b90
MD5 7350bbc29220f1b2c0371b12e3aa4545
BLAKE2b-256 d2ab8cf43a1a75b7a976c392d233ef74394baec1870d9120fead6c221f9834a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 e076df964ef1f57fe93b957763b90564be5b4402888154673437099e198960d0
MD5 a67e0f051b91271965449c8b11f703e7
BLAKE2b-256 8a72273296aeef258961c73303aaf327466139b168dfbae938eeda174cca1509

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a7f817d7acf0c8790a192d6ec011c9f198c96a24a025a491562d5fff6e9ef2d3
MD5 1f692ceba3e35d527a01d747dab5eb11
BLAKE2b-256 6f743daf38e63866246fdc2afef6f5e616a7536fab3fef23311304b90bb860fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 851471ed567f49a319ba564a5556552907ac40e4c717d34870569f2d782eb8ef
MD5 d2d896483cbf187cf0b4611ebca8a5f8
BLAKE2b-256 b6508be8754252b73fe07ec9098650308608b71c62d59b218e395d24b49152b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3842d5ef096c8507bd84023c840bbfa72f5d89b82108a8b08bbdbc20f9c5a450
MD5 58f82be509d4f435288932c705410004
BLAKE2b-256 6be34151f40ea8d5858f33e8cf724c553e28ef4d0f2cd7af486473cc1b09af61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 e363afb4660e2bc24b8613ea86cc15d33f0ad01e83aca371405ed91995f65e88
MD5 13e9e163e77f271e5df49df5dc26cc57
BLAKE2b-256 af99902c81bcf23df4792d66682f6e8398d4aecff203f740d5b055f39c28c46a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 6d7585470814e7757accc399bde70972ca498d66d23b8012fa384331b7ad6f2b
MD5 7f01b780231634bb382278182ba47c4b
BLAKE2b-256 22426b5368fd780d652f30d299363811f519d66cb19cd1d27cc85b9e6c0c75bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2a6efd601f52a6c61c9398bfc4cd6d28e4d5a03e0ab7a13ce4ddc22540c0b934
MD5 45b8750bc1d56e74c083bec8f54dce4c
BLAKE2b-256 b40de197beb018022c30b20da584a11112ee9723e49a203007bb905cd1d6c821

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00a4fe801ef8a840645985219307c0b72a51ff604f8dcd0a93d4873d765fa234
MD5 09f26ef840144b2eead75736ed23128e
BLAKE2b-256 01f9fc9957ab50fde26f05956c49f195583b244504998fc2fe0cb815be439d4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bddf9add0441fb05b616403c1f9d21527d42978492f3aed50a59f3cc996061da
MD5 1bdd007fc8a44ad64dbeafab7b75a6e8
BLAKE2b-256 1d2a24f0cf3f2c59cce1215931da0e02f9a6e8184c991078d72d221c20383e23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 07212b04f482d6e781c71b3f18e8c51c2899cf2ef2823a0ebefa5cbff01ee156
MD5 115307d90129b37ef1096d48d2999619
BLAKE2b-256 3173d3215370d4df877da9bdf944ee949032129e9a655df0bb152aa00dc093e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 74c2854405ac034b5e5694ea35fc9b489fa7854ab3b0d639d4e59c845b0db142
MD5 63692f6f76fd75fe66e08092e665a41d
BLAKE2b-256 62ec7aff6ea5648e30d3f264ca12ef4f1433fb781dbd8467ad47a67af15caf56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 8431cf4e7b74e34ca7e7f52e3d2311cf54ce2f7e91766c3b7135b2c48f96235c
MD5 d00d774077645d419238f3475f428204
BLAKE2b-256 97d372b9ce7f0d36ea3f297ca9d2d05eb84a2526cfa86aec3a92ec0e6934734a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1a13d3f7cc069ff3cdaff42b2b987fc7b2705e13cdbcc6e0f0319aff4b6b6f8d
MD5 c014509031446476ae28f8f88b6fdc06
BLAKE2b-256 e3ae1d5cd4b520bec6fb888fc66ccdf31f7847add2c051b43cf8537e96c6b9fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9ce7b702b248701bc217d9fe25fddd956a194f13883e02a34db3faea93422d86
MD5 3a891b7bb362dc6c75730ccb3563aff8
BLAKE2b-256 2f3768582819d295df2792929e5e5c01be1a254effce61e0ca59eb16c63daad7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 370dbd9da548245f89f9551c1b60863aaebddf80e34684ae90722d222499e27a
MD5 3a7592fbbbcffac5c2102ad7a7e971d7
BLAKE2b-256 380d694d90d961aabbbf3c3527ed527ba09f479a4b32db94350f8b5530094f26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0d8ab36d29ecb561feefd57bc49b16077ee67bcdca353dcdcdb7a704b60d4148
MD5 728fa27b5cce7f49c22c5cb689c82ec0
BLAKE2b-256 43f83dec7186912a9986efb35fd1a4e3cecef82855dc95523b694399951a2606

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 33e9139f33f07057b04f2f70a560d66c6e7da90c699a511d5db5b095b704f7da
MD5 092ebe8aa9eff903d4d0731e0115ef59
BLAKE2b-256 e874aa3eb7d35a991c4993deeddca98e96cfde40f2ef87c0db1e651b877dde8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a82e5587f103a3acfe579d356005086ad352d8a3fd9cfbf5ab2069049b4ee637
MD5 fab33a5d3c3673d74e0430b7332852c8
BLAKE2b-256 7967a38b4b0173aa650909a29ea8152a52ccd35685e92af488a18d73cbf85a69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39ab57737425190e2ba7f07631c6ac46215b225d056a89d8aef06dbe93024bc0
MD5 b45fe5dbf16033b44ba304b736135392
BLAKE2b-256 489e7f4762a2d902714200c73deea36692acee4c066646511ba795849f7fa5a8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5fa756f2bcb951c918e1f5ea6e93f2ae8221871b1e01da03f609823ff56d95c9
MD5 04108024007dbd4b00f3fc9008cc28f9
BLAKE2b-256 f04f88c0c19463ddcc2fda1c0049c9427a6f965f28c41c26e4f27570016b53f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 446b08c9d887a37575485907504cb6586b0d9c847a5e98726b3ff669c679d5e6
MD5 28be8e0b7cfb20369ffed64205011076
BLAKE2b-256 25ea406f097770ddae16f6d0287c73fd8a64baf3d0165d5a88e2d73cb2af7e8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 44214a7127be36eacca2d23122dfa7e3201df132debdc4db10433820bdd4b441
MD5 85e3134c261718cbae9adf6aa0023f2e
BLAKE2b-256 9edb0068e1dabf0f6e97465ef2472c7b5b7d849fcab04204aef845ee58a5071b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 90cccbf69c8f3a795a9cb494eb5fe862cd4097472ae51fb5888456b3aa268862
MD5 72865593d20f6e7c7d359f384c8c801c
BLAKE2b-256 9ce3546f25e7f8ce1d5591e6bb230ca7efab76f737d5884f3fb6b4f60c1040ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e804fbf1268e5e6f3e2bb272d6eb13c4351b115b53a3b9357841f75e09009848
MD5 23b83d6e3f433384bdc4d32550ec4364
BLAKE2b-256 eda7cd85d2449ddcc5bfebde23820a38746a5c5f26f1230b20eb20d2978d3e0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ee4b0269e8f2ce3fc1e73dd360103fdce15111a8978b500aa26e8f32ce9c124
MD5 75a40504c287949198d912a37595319b
BLAKE2b-256 d01a196342ca199bd648772c539ed4105d3ec7a99c4b0b5d5d0e16289290ec1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2624cd06f5ba0ffe6d40e174bd96c047b3f63811d714090e38982045657a1e09
MD5 29c2b2fafd4f7e43e07005d6ac4eac09
BLAKE2b-256 e44de3b0c32b4e3b643dda9dfa2a3d2325301641e33700a6095ee64ded263f03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 03fc1c6aae7495bc89df3dbd500adf05bd0d08d3240dfb93fa051e84218aafd0
MD5 73a8f811ecce9449a046781b841c3d0a
BLAKE2b-256 77ad35b2acd73956ee246a582cc68680c044081274be931ae1b015227848d260

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 dafdacebf5ead7db0e7c9d2bd859b690a10d6583591079287b975d8ce26923b9
MD5 ad392917c47e9a3c9cb1b642692e1d8c
BLAKE2b-256 7c305f97c12d2e1a33eaaa2fcf398e2d4e10702e4a322efd90ebc02c7a9218db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f52fa50e86cf7234d1b9fc24ca675c26bbd829bac2c6664c0f164c2d53a3e20e
MD5 3c1ec8ade80b856e4bf132affced5887
BLAKE2b-256 feffece38e69908e2e9d45a68ce77d607ba61741d5a999a0d937dd697e86bb45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a4a93b114ad0d0c516ee94ec64e2fec2c77e61fe1a7754ec39dd0d2c904da5b
MD5 f4b3b278316158d9be992d380d0d375c
BLAKE2b-256 f9f3545e4882c991b545ff7b334c076102df2c603e198fc2aa3d846096e38083

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for tangram_core-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5859c1e3116c3aa9cfb076d8f90ac06aa55d9735084ccdb59c85b2719e8a04dd
MD5 781a7dc49376ca628100c97de9bc455e
BLAKE2b-256 8a57fb5c9556a5529f0f4885d2ff6c40b846dfaf60a34783ffb1df9f7d0057be

See more details on using hashes here.

Provenance

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