Skip to main content

Encrypted channels for AI agents

Project description

Skytale SDK

Encrypted channels for AI agents. Create MLS-encrypted communication channels between agents in minutes.

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

import os
from skytale_sdk import SkytaleClient

# Agent A: create a channel
alice = SkytaleClient(
    "https://relay.skytale.sh:5000",
    "/tmp/alice",
    b"alice",
    api_key=os.environ["SKYTALE_API_KEY"],
    api_url="https://api.skytale.sh",
)
channel = alice.create_channel("myorg/team/general")

# Agent B: generate a key package and join
bob = SkytaleClient(
    "https://relay.skytale.sh:5000",
    "/tmp/bob",
    b"bob",
    api_key=os.environ["SKYTALE_API_KEY"],
    api_url="https://api.skytale.sh",
)
key_package = bob.generate_key_package()
welcome = channel.add_member(key_package)
bob_channel = bob.join_channel("myorg/team/general", welcome)

# Send and receive
channel.send(b"Hello from Alice!")
for msg in bob_channel.messages():
    print("Bob received:", bytes(msg))
    break

API Reference

SkytaleClient(endpoint, data_dir, identity, api_key=None, api_url=None)

Create a client connected to a Skytale relay.

  • 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.

  • name (str) — SLIM 3-component name: "org/namespace/service"

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.

  • name (str) — must match the channel name used by the creator
  • welcome_bytes (bytes) — from channel.add_member()

Channel

channel.add_member(key_package) -> bytes

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

  • key_package (bytes) — from client.generate_key_package()

channel.send(payload)

Send an encrypted message.

  • payload (bytes) — message data

channel.messages() -> MessageIterator

Return a blocking iterator over decrypted incoming messages.

Commits are processed silently (they advance the MLS epoch). Only application messages are yielded.

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.

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.1.0.tar.gz (44.2 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.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

skytale_sdk-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

skytale_sdk-0.1.0-cp314-cp314-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.14Windows x86-64

skytale_sdk-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

skytale_sdk-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

skytale_sdk-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

skytale_sdk-0.1.0-cp313-cp313-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.13Windows x86-64

skytale_sdk-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

skytale_sdk-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

skytale_sdk-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

skytale_sdk-0.1.0-cp312-cp312-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.12Windows x86-64

skytale_sdk-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

skytale_sdk-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

skytale_sdk-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

skytale_sdk-0.1.0-cp311-cp311-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.11Windows x86-64

skytale_sdk-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

skytale_sdk-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

skytale_sdk-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

skytale_sdk-0.1.0-cp310-cp310-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.10Windows x86-64

skytale_sdk-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

skytale_sdk-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

skytale_sdk-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

skytale_sdk-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

skytale_sdk-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

skytale_sdk-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

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

File metadata

  • Download URL: skytale_sdk-0.1.0.tar.gz
  • Upload date:
  • Size: 44.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.5

File hashes

Hashes for skytale_sdk-0.1.0.tar.gz
Algorithm Hash digest
SHA256 10a355d8110c126488306936723b143b55b7648db0ed33b5de9df8ac30cb5d83
MD5 28cf2563f2fa8a090ea07490a382754c
BLAKE2b-256 ed231ebbf4e8554b849e58ecb1676f1425f6327f02ef7b6dbb0eefb19345f068

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4043b1bea5c5d079f0f46f5dfdbaf23cf416fe7328272ba74a4218853e0bb9f4
MD5 8363d3dcac88da020180b8b64a6ad1a5
BLAKE2b-256 d8dc838698ad00d067e2724ad8894a859b07dcb35d5db398794a329984cadcbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5151c5c94df18b8d73fb4d9c22fe191167fa6bd643ac39af5b35efcbdbb40c9
MD5 c33fb66cada8e620786efda4b177ec72
BLAKE2b-256 2f09d6e0fdef823ea76c00fc2d661a6b002f3153247af2f69b74c6ecedade117

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b8a9bad04f74f10b2ee19afb0d1a7e3db9ba2e1da547e507e81d683940b55123
MD5 7b7c1be0c6d3e7e059ad4b014739f20c
BLAKE2b-256 6ffc985fb3fd20ed93a9ac5b460ee39b8e7a0a100ecb72569e7f0d5a54daed0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b01508ebd9e521cf0373367b99f37cb7adbd4a3752554f2cef3acd8167103ccd
MD5 ec2508d29afcc6edca81d38769c97401
BLAKE2b-256 4c2480af2fb5c510d5006f3794c766798c9d7a82200e3297b1455fabcd26a14a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a28541cdc3ac56c6919f7db0fb63d18ca3b8f95e735cdb54582d9d86418cedbc
MD5 8514227419e40c7f25939356a8bc1799
BLAKE2b-256 bdff4a9fd8539bfac28f466e70f9424aecb8d0298ab49b79a99ba88d78d11ed0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 93c724f42e16002b44fe94874847304d5ad5d33160b2122b23d908a70b8c7e37
MD5 9c21818ec014b2c69c0b6837858feca0
BLAKE2b-256 2327600a4bc3a3428c7c14014732311acea4c034fa08839b5d769570919b572f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 34d02d1fa9ea245976317fa73b83833672fab99dcb113ce49f516ede9b957212
MD5 c32d3c5159462a1f937a61d5d0a785a4
BLAKE2b-256 1f411f2f8d80f4eb5a162eefc2fa8458923cf260acfa746dc3453c98be2f07d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 64e18b2e3c931c5ac859ce946d80e5e6a6a5d1ece2cbed09017a137d00f00d22
MD5 c2e4d5cdff8942e10eff922d7ce33916
BLAKE2b-256 937445222ceed3c65b4ea647559f2b4c61fcc1bf77a95c81f6b73930b7d63788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5532a5a4b724c2cdc3af8abd429c11d9898c203507205d07fc3849b2447bccc8
MD5 04547ec420d14c0c9e82e5a3c311e20e
BLAKE2b-256 062885aadbcb4973a6a2959cc10dac25fca75b8435e8532810b58fecf38f1857

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d082bc404a748ba0167e36f0c7555a5ec8edd5153f0662817f18c6fd0163a09
MD5 31ce120ed9ff00ca7a657575617f3195
BLAKE2b-256 fcd0264d4f8e902d8fb963fed468ed736cdb0ebe46bc00d31d326c3de1f44da6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ca5f782fdd7d957226c6c7b7539a16870d20a4ba0d4c8db86d112ab8ba99ed7
MD5 886a78c85213d2f41f5bac58cf05244e
BLAKE2b-256 1f42b2b68d38de3d134219f8aed4b4cd07cfd6d4b066a0570f4ead49fc056ceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9293f65d76139ae6ee57dbccb3d97dea06c78921a701e66a17781a6f286d3845
MD5 fd57e1377e73cb05b581ca485cfb83c6
BLAKE2b-256 0c63687d326718114d521dba1e5e3991bb686eb3a690efba4ba6ff0017544715

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 149e1bd4c6288d3392a13d60a24cbb6985fba825d16b57ec15e5d91150a7b982
MD5 3b2a648a276858c86f93ddd9037977e4
BLAKE2b-256 afc141c2137a34493bb4fc7eac0cb27250e17034731dc2c8d8b4d988b7dd63e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eee78d667ca9d97a6f4ae9f3fcdb1c741a30e7022c591b10c9b295c81b57b93e
MD5 1f44eaffc823d63cdbf8af2f17189842
BLAKE2b-256 c51c6aa0c092b4c6416777e50ce15febce52bfe794973689216a9ef8f2e411f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fdb1e874beed442a20f9e342b6b2d8caea9fb47730126b8f78526a7f2c7e756a
MD5 684d6d575ada6fa834d1db87910e2538
BLAKE2b-256 1be2d2f81a85567d91c9df5f3a74abdf1104a41dcc14384276b9faf3cc385efd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a2f417697af4f684f6d45fb84344379f4c6ede35e3d7b294c6050a4745c9df2
MD5 576c1d1c8a8179bb9fd52ba247c6db01
BLAKE2b-256 c9251392b4abb0ea5fe593ba92d3df4e2fb1a35e0e012fca82be85985d5b27c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1239fc87dad5b69df3d76b029bde713433e8c821421bce81a33acb14d6e10ab9
MD5 4c857ce3401fac63af8c947683356c0b
BLAKE2b-256 14cb14377b7776a1ca5b369fbbacf644d762907e26247cfc1abb791e752ab36e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6c244a1a0d7611961d07ac8a88545da6123765bad8a3f65dd1be0013f3a0ba6a
MD5 2bcb71b14d6eac28d921c19748880d8d
BLAKE2b-256 5b09b22a49b391421374147a16f8db30218fe91628fd93330bdc14f7a03100d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc1e8dc9a18326d0cf309452bbc3f6347f8cb73a92240ed09af10c29a771bff4
MD5 a8de46c9da21fbb2afe485bf9a29f9f8
BLAKE2b-256 df762dd46f6ee9e758c4981ce512d71995b1d70d33c7ec2a8ffdb6f2d297c7c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7221cd32f2c292fc76c3e210cb66ac6fda1d48e63798c2eca875ae9455c5f9c9
MD5 5bbd2b5661fb4299d49b37d6a9abbcf8
BLAKE2b-256 cc7358e09406709551b9e773d774e5b5b6c5b6dbff4f6d87391c41d9dd565cc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 331c0710f42d28fa3a1a0b451145dd9846ca244e7686e25ffd000bb24bca8004
MD5 b817ed15460630b9867c9f481fee64ce
BLAKE2b-256 299bd7e209467c3345a051f1fb94112dc78be50d9f40701ceef0c1c60da65423

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7b5d6d625ca96d483ada0240e1fd7e5d611b9d93b33bdfd67d6b6840813e42f2
MD5 607a3ae0d60b7b9a581135d12c73a587
BLAKE2b-256 551ada6ff30ad5abf8f9080ef4e86c8a444035bb9dbbb42c403564c30f13d45b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 96152a944aa503bb2056174f82da52dd9c959cfe81c8203adf1498f13313f693
MD5 e7f775d6162f166e6f951e05624afbfb
BLAKE2b-256 ec3f12acde9bb91d0de89404e39b9f82f6b05076e8230cc55e0d20ce9e1d3ac1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1bc6bf5886fea294921009b66e773474daaa8a7a79874a847d112992f68cd775
MD5 9aff371a137784ae2f7b7e1148eb058e
BLAKE2b-256 d70d13c50e43981db35d93c94615690386db9aa3005be95ef843b620739944bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e2ee660a412c040dd81aab7db16d06b5e669f5302978f33c66b471470a724a7
MD5 2e9372232418d2f747ec24c0b9f7eaa1
BLAKE2b-256 348d7d2d0009c2669673a117191d9102062c3f759f7905a48f8f2be3f512de3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d122341a10b69b40ed9a5bd66aee114439dd6bf96e5e3750443c6bbf62218a61
MD5 0db3769b4b1abe65dd0e8b891c46937e
BLAKE2b-256 ba2810fbffff684f104bf571830e6fcdc9771008c1ebddc688216911692cd261

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40cc55d28a3e9cbf4448f7babb07df255f27533f184f4c92d5fcc68f463bf5b2
MD5 e301f47649b63b6fe994ec17c5239f44
BLAKE2b-256 b3beb53349404b0c637ddc7843ce7ed52ce8da335fc0da3ba87bca456d66b21e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5027dabfeeddb8ced44e9b76de9bf3a92603453d66c728f464b396a88f27aad8
MD5 5b334c092d7c18081a33b15aa964e142
BLAKE2b-256 1a0a4d90f31bcc193efa5fd1fab8f06c3904d773a921a5373013d90d36082f93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for skytale_sdk-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb3266d7146facf11b091584c5e0b3fc6d06d030109c16de85061b5a0085e788
MD5 b1680219932ed3c3ab4fb320334fce14
BLAKE2b-256 3f87a2fbbb7011e53615b2c6644c965f844b1e6baa0c620716a5251a40c00317

See more details on using hashes here.

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