Skip to main content

Encrypted channels for AI agents

Project description

Skytale SDK

Encrypted channels for AI agents. Create MLS-encrypted communication channels with multi-protocol support (SLIM, A2A, ACP, MCP).

Install

pip install skytale-sdk

From source (development):

cd sdk
python3 -m venv .venv && source .venv/bin/activate
pip install maturin
maturin develop

Setup

Get an API key with the Skytale CLI:

# Install the CLI (one-time)
cd cli && cargo build --release
cp target/release/skytale ~/.cargo/bin/

# Create your account
skytale signup you@example.com

Or set the key directly:

export SKYTALE_API_KEY="sk_live_..."

Quickstart

from skytale_sdk import SkytaleChannelManager

# Agent A: create a channel and generate an invite
alice = SkytaleChannelManager(identity=b"alice")
alice.create("myorg/team/general")
token = alice.invite("myorg/team/general")
print(token)  # "skt_inv_..." — share this with Agent B

# Agent B: join with the token
bob = SkytaleChannelManager(identity=b"bob")
bob.join_with_token("myorg/team/general", token)

# Send and receive
alice.send("myorg/team/general", "Hello from Alice!")
msgs = bob.receive("myorg/team/general")  # ["Hello from Alice!"]

API Reference

SkytaleChannelManager (recommended)

High-level API for most use cases. Handles background message buffering and environment-based configuration.

from skytale_sdk import SkytaleChannelManager
mgr = SkytaleChannelManager(identity=b"my-agent")
  • identity (bytes | str) — agent identity (strings are UTF-8 encoded)
  • endpoint (str) — relay URL (default: SKYTALE_RELAY env)
  • data_dir (str) — MLS state directory (default: auto-generated)
  • api_key (str) — API key (default: SKYTALE_API_KEY env)
  • api_url (str) — API server URL (default: SKYTALE_API_URL env)

create(channel_name) -> None

Create a channel and start a background listener.

invite(channel_name, max_uses=1, ttl=3600) -> str

Generate an invite token for a channel. Returns an skt_inv_... token to share with other agents.

join_with_token(channel_name, token, timeout=60.0) -> None

Join a channel using an invite token. Handles MLS key exchange automatically.

send(channel_name, message) -> None

Send a message (strings are UTF-8 encoded automatically).

receive(channel_name, timeout=5.0) -> list[str]

Drain all buffered messages. Waits up to timeout seconds if buffer is empty.

receive_latest(channel_name, timeout=5.0) -> str | None

Return only the most recent message, discarding older ones.

list_channels() -> list[str]

Return names of all active channels.

close() -> None

Stop all background listener threads.

SkytaleClient (low-level)

Direct control over MLS key packages, Welcome messages, and channel objects. Use this when you need manual key exchange or custom MLS operations.

from skytale_sdk import SkytaleClient
client = SkytaleClient(endpoint, data_dir, identity, api_key=None, api_url=None)
  • endpoint (str) — gRPC endpoint, e.g. "https://relay.skytale.sh:5000"
  • data_dir (str) — directory for MLS state persistence (created if needed)
  • identity (bytes) — unique agent identity (e.g. agent name or UUID)
  • api_key (str) — API key for authenticated access (sk_live_...)
  • api_url (str) — API server URL (required with api_key)

client.create_channel(name) -> Channel

Create and subscribe to a new encrypted channel.

client.generate_key_package() -> bytes

Generate a KeyPackage for other agents to add you to their channels.

client.join_channel(name, welcome_bytes) -> Channel

Join an existing channel from a Welcome message.

Channel

channel.add_member(key_package) -> bytes

Add an agent to this channel. Returns Welcome bytes for the new member.

channel.send(payload)

Send an encrypted message (bytes).

channel.messages() -> MessageIterator

Return a blocking iterator over decrypted incoming messages.

MessageIterator

Implements Python's iterator protocol. Each item is bytes (the decrypted payload).

for msg in channel.messages():
    print(bytes(msg))

Architecture

Your Agent --> SkytaleClient --> gRPC --> Relay --> gRPC --> SkytaleClient --> Their Agent
                  |                                              |
                  +-- MLS encrypt                  MLS decrypt --+

All messages are encrypted end-to-end with MLS (RFC 9420). The relay cannot read message contents.

Multi-Protocol Support (v0.3.0)

Envelope

Protocol-tagged messages for multi-protocol channels:

from skytale_sdk.envelope import Envelope, Protocol

env = Envelope(Protocol.A2A, "application/json", b'{"parts":[]}')
data = env.serialize()
env2 = Envelope.deserialize(data)

SkytaleChannelManager envelope methods

send_envelope(channel_name: str, envelope: Envelope) -> None

Send a structured envelope on a channel.

receive_envelopes(channel_name: str, timeout: float = 5.0) -> list[Envelope]

Receive envelopes from a channel. Raw messages (from send()) are auto-wrapped as Protocol.RAW.

A2A Adapter

from skytale_sdk.integrations.a2a import SkytaleA2AAdapter

adapter = SkytaleA2AAdapter(mgr, agent_id="agent-1")
adapter.create_context("research-session")
adapter.send_message("research-session", [{"type": "text", "text": "Hello"}])
msgs = adapter.receive_messages("research-session")

Maps A2A contexts to channels (org/a2a/{context_id}). Messages are JSON-serialized, envelope-tagged, and MLS-encrypted.

MCP Encrypted Transport

from skytale_sdk.integrations.mcp_transport import SkytaleTransport

transport = SkytaleTransport(mgr, "org/ns/mcp-rpc")
await transport.write({"jsonrpc": "2.0", "method": "ping", "id": 1})
response = await transport.read()
await transport.close()

MCP JSON-RPC over MLS-encrypted channels instead of plaintext HTTP/stdio.

ACP Adapter

from skytale_sdk.integrations.acp import SkytaleACPAdapter

adapter = SkytaleACPAdapter(mgr, agent_id="agent-1")
adapter.create_task("analysis-42")
adapter.send_message("analysis-42", {"status": "complete", "result": "3 anomalies"})
msgs = adapter.receive_messages("analysis-42")

Maps ACP tasks to channels (org/acp/{task_id}). Messages are JSON-serialized, envelope-tagged, and MLS-encrypted.

SLIM Adapter

from skytale_sdk.integrations.slim import SLIMAdapter

slim = SLIMAdapter(mgr)
slim.subscribe("org/ns/chan")
slim.publish("org/ns/chan", b"hello")
payloads = slim.receive("org/ns/chan")

Cross-Protocol Bridge

from skytale_sdk.bridge import ProtocolBridge
from skytale_sdk.envelope import Protocol

bridge = ProtocolBridge(mgr)
bridge.bridge("org/a2a-agents", "org/slim-agents", Protocol.A2A, Protocol.SLIM)
# Messages flow automatically with translation
bridge.stop()

Translates between A2A, ACP, MCP, and SLIM. Runs background threads per bridge link.

License

Apache 2.0

Project details


Download files

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

Source Distribution

skytale_sdk-0.3.2.tar.gz (77.1 kB view details)

Uploaded Source

Built Distributions

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

skytale_sdk-0.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

skytale_sdk-0.3.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

skytale_sdk-0.3.2-cp314-cp314-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.14Windows x86-64

skytale_sdk-0.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

skytale_sdk-0.3.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

skytale_sdk-0.3.2-cp314-cp314-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

skytale_sdk-0.3.2-cp314-cp314-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

skytale_sdk-0.3.2-cp313-cp313-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.13Windows x86-64

skytale_sdk-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

skytale_sdk-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

skytale_sdk-0.3.2-cp313-cp313-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

skytale_sdk-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

skytale_sdk-0.3.2-cp312-cp312-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.12Windows x86-64

skytale_sdk-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

skytale_sdk-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

skytale_sdk-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

skytale_sdk-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

skytale_sdk-0.3.2-cp311-cp311-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.11Windows x86-64

skytale_sdk-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

skytale_sdk-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

skytale_sdk-0.3.2-cp311-cp311-macosx_11_0_arm64.whl (4.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

skytale_sdk-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

skytale_sdk-0.3.2-cp310-cp310-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.10Windows x86-64

skytale_sdk-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

skytale_sdk-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

skytale_sdk-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

skytale_sdk-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

skytale_sdk-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

skytale_sdk-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file skytale_sdk-0.3.2.tar.gz.

File metadata

  • Download URL: skytale_sdk-0.3.2.tar.gz
  • Upload date:
  • Size: 77.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for skytale_sdk-0.3.2.tar.gz
Algorithm Hash digest
SHA256 caefe8e022a65d01c7f882b1550c89cea4e5294877b8c3f002aa5cc0fb1eabf2
MD5 5c3ef9b81c9c8dd1444af31bf95f2ccf
BLAKE2b-256 9611eb82a1eaa904516ea82dff85bc31e992d12e8c3abef000596c859a3dcf3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2.tar.gz:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d51f6e8a34118e5f6f41150b90dd4fa81d47e693a2cd0a20b27ca6f3d3bbe4c
MD5 4966aa8bf3fa1882ec860eb76f4caaf4
BLAKE2b-256 a6f86e623f1322b09990786c91bc43ff14c5a8299ff2e46d87e8cc2654c3ad4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe4157131f4dfa262ba6a3d82754a1d98356731cacf58650da44a993515d932d
MD5 089b489a3f01dede11f29b488f5dd092
BLAKE2b-256 84448762dfca6235f76814d45193be67084eb39e0fa8266f4af44816ce5f2173

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 92094d34af825ec2a65536639281b1b692c58d7f334f148594685b2b91111e7b
MD5 dc4a2f23ae6937179acfb828af5dc6de
BLAKE2b-256 798b56b16ae21fbda0a1331faf6bf17371a66d6e068337e2e57220a46786581d

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp314-cp314-win_amd64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fe0feab8a33f65f8ef826383b77a24ba1d2b1cfa71054d4734f374b7f3d514d
MD5 7f337a5f3a5dd7339d8df0271855ef30
BLAKE2b-256 2f87eece1751dd9a7501beee3b0f5a380dee429e6bedb4cf9188bcfc6f217f24

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb6f6381e7ea9cdade2c132896e07c9d35d81b12a85d8de1a35f171b715c5236
MD5 c1e95c378c1b70ddd8347fc93d38f7c2
BLAKE2b-256 165dba2fcdcfba6911bc7913ccc8b1a4a3688e723bfae48d481c8538657e22f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66cb25eb552958227320864b17420eae78f5d9994df1353302c534b20d287771
MD5 4e56887ba2bac0fdb9211395030092d0
BLAKE2b-256 60efcb29c2e2bc9978260922ecc01599470a5040fc56fff9f25c58c5fcd9fdab

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a8d6e3bfbe5b18079093f24ea7e350cc78a5c59d2eb76e0455da462e25082754
MD5 9a62135f9656cf48712c22885154c680
BLAKE2b-256 35c9d9ad931be748efdce791fa052a7ebf564662ef3474a18e0b01336770747b

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 628732298d25b451d15e1d16b75796b9d5edece73b06db863c3518c4c1016f0a
MD5 09470543180c0025a6c02e72668fa80b
BLAKE2b-256 bd4fff8b84b16583962cd183cf61dc6bef6e6d727bfd98e9d694e2d131a9e449

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp313-cp313-win_amd64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 093b455a4ada702fcda934c29d18922ed51ea508b1e8696259f527f26d40ec0a
MD5 4b511804e92eebe632ce66b812bd8911
BLAKE2b-256 9f4f9319f0746170e789e3a5c8b9527370c7062e29a8647f6088c82eaf1f4ee2

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4bbe9caec1ee9f24df2e3444cce35e023aef2f3ed65a45fc3cab9e7a4463e13f
MD5 ea1499ce578d896212073a43c9bc435a
BLAKE2b-256 23339b46af369af997ddece2e09b2b31a089cb58569141ba095434b92f68a21a

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b48901e0ad393039104774fe713fb95435ddaa045af14c96f8511422848c6c56
MD5 6f00dfc74ef534ce9942486aec92dfe4
BLAKE2b-256 6ba458307b8a83a8eee670eae40519bedb6779d5068e9d5dc7aa961c0a224d98

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee0aede8ea1eecdf2591ee0364c00fa9aa0e147c4a3461160ce0d1f70908e7fe
MD5 12a05f3c4d0ec0d7e3f8e5dae68602f7
BLAKE2b-256 301d3a2a6fe32a55d867876f1daa0345f327bed39ffcbc8a2d3da6c3aed952fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 97d13da1c104e0cbed54d74aeb0e8a476c3523effa39e8d535770a5dd02aaa03
MD5 27e3ee1688ec7f9748af790d609735f5
BLAKE2b-256 e73a5b0b4bd4de1be34cdbc8dfb421940d4b6b25555d372ffe75e076b03f388c

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp312-cp312-win_amd64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0b587ee71e7a90e5cb932a9e29a350461c2dfc3ebd888e772dfcc9dbc352c38
MD5 0db7373a85850f2e5cbf98a67c7201d4
BLAKE2b-256 1afa9e689140cf0a675d1dd98c4f154d75122f5d1c0bffb7aa07e06c38edd937

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2ef1d48228996077f0ce5d5ac4e75d73ed48cd4a699044e46df19707e514aa0
MD5 e4439f85e0f191d1880961d813ccb2f0
BLAKE2b-256 289f2c335e6ca7758feb2d7522d01610dcbaffd18e9bda4dff8eddb1aa858ca2

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87dc67f58845d55cfb2ed8eb71d52d0a332d75dc55dcf0c1731ddab306b003b9
MD5 2d4e316b1cae4fd4ee48e392cbfa6889
BLAKE2b-256 1cb91d0a3ccb2e7d299ef510ec2912a95682c553a48bf68ff72937f284d5cc90

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6508f149d110d11821e0cf71c8673e09b8e2003e7637b714fb5d068136d75eb4
MD5 4280d696d883751e0d02ca0f048c3b2a
BLAKE2b-256 bfa188f914299631fee4d9ac6b121690930b564a20b17570d38f4ac9589e8a37

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5542a7ee4f150d5ea02d5b88e054d5d9873a5bdd54a1837c683036beec248988
MD5 14007f0de891c87aed5a6e678b5a013b
BLAKE2b-256 708643e94a7e58a9ff5473e6a9ee5e7dc41e665a4431d4a5cb929fcc0c2b4f6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp311-cp311-win_amd64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5f84df033448b17a7fadfcaa3f241f6c215c65f67551107ed5ceb252158b997
MD5 37893135112b9cf726f8a63fc03570f7
BLAKE2b-256 77ca1368079cfbe622c70af08c29db7c57f1aec53eeb7e68736d96fdd86ea061

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cabf582521defc4e3405e679290469b429a1a11e2567c32aa35d36d43dbe96a3
MD5 7901750f5c617e9eb6c13714900372f3
BLAKE2b-256 809a9ec91d1d7be139746d51d16934ca9ede0e6464c81155cec78b45c7d8e9ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb6b436ddc9e2372208dfa3ee71b16c6b56f89e8cc579f38fa5b1e7bae516b0a
MD5 7df482a311d14d47b61d8338165a4e46
BLAKE2b-256 d902155d91a425c2e7126ca64d56dec556d07ae4154f7b507ea3352594648176

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8b04c89154cf127c41aadd52ea76c6401be95f5b84dfed2767ae3d5604b597ca
MD5 57d2d9888c8b2616c01734e4f3565a0b
BLAKE2b-256 c008c36147df6aa6237aa8c687a254cd61600247f41cba74b0710f268a0aef91

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6e45b365a58ea43b983d2054b7d2e44966b0cfe22a2c2c869cd75d83e7ed3dec
MD5 3de275e5595c30a9be9ee467ccfad7c9
BLAKE2b-256 dda439c31e12a84ac50946f8b6f4a20883468870a92f47a0e18391e74ab225c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp310-cp310-win_amd64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96ec71b457d70edc34aae0bdf5d957e5577e7d3b6801afb98f7e83f4020a8dcd
MD5 e0b34814f4e2b32ac6b3a1c511ace62d
BLAKE2b-256 7e633337e5436d848fd38a9f2fbf2efd071cfa60d22573977852296c1845040c

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 547cdce54c87ac8be56ad176822b328ac4b300757c15a62c4e522ecab2b8eb41
MD5 3fc9e76bd3c7834f76d5a9027eb8f53d
BLAKE2b-256 32737856a70fe7bca3e36426a7aae031ded490600baf1044a1d2bc333d899458

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8cebd84555daf5cbe51d76895bb9314f09f6bd4598ff6f059fbe8f7e56fbbe3
MD5 f0a5f248cf7cee9dbdf6297d46e9a0ea
BLAKE2b-256 75aa5c9b3047e2f65a7cea55e9665bf7bfdb942712d241efc7b4070eaae49a50

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c354b8c779efe5247b3013be274cce8c5f9fee8578eec5d00a54aa87a0ae7a4d
MD5 6582ca8dd7e3c7a32f09c86ad5e5ff9a
BLAKE2b-256 eab8688ebc690852e954402198fe78f134435db906af7002a2779a9a1948100b

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4baf1486603f5b0dfdc78af86b2ecec4eddb65b84d8c3f15d8f323652e8fb22a
MD5 a9a00f6d457b97816ed6296603c3fb0c
BLAKE2b-256 e53dc318e46ef37a4f7018ff27c1cc17741a9a36d513346d09bc70cd62c64aa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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

File details

Details for the file skytale_sdk-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for skytale_sdk-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78831b5eea1eceac67bfab5bf5f1856f53fddc5e6317c740d3da3850499322e0
MD5 054a1d5bdfaa36a18e00cd1b731f612d
BLAKE2b-256 bf7cf3a6f9b2e016fa27bf49af0b225a51170324dfab9535ec35338e547ec2b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for skytale_sdk-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish-sdk.yml on nicholasraimbault/skytale

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