Skip to main content

Python SDK for the SOMA network

Project description

soma-sdk

Python SDK for interacting with the SOMA network. Built with PyO3 and Maturin, providing native-speed bindings to the Rust SDK.

Install

pip install soma-sdk

Or with uv:

uv add soma-sdk

Requires Python >= 3.10.

Quick Start

import asyncio
from soma_sdk import SomaClient, Keypair

async def main():
    # Connect using a chain preset
    client = await SomaClient(chain="testnet")   # or chain="localnet"

    # Generate a keypair and fund it
    keypair = Keypair.generate()
    await client.request_faucet(keypair.address())

    # Check balance (returned as SOMA float)
    balance = await client.get_balance(keypair.address())
    print(f"Balance: {balance:.2f} SOMA")

    # Query network state
    state = await client.get_latest_system_state()
    print(f"Epoch: {state.epoch}, Validators: {len(state.validators.validators)}")

asyncio.run(main())

Classes

Keypair

Ed25519 keypair for signing SOMA transactions.

# Generate a new random keypair
keypair = Keypair.generate()

# Restore from a secret key (hex string or bytes)
keypair = Keypair.from_secret_key("0x...")

# Restore from a BIP-39 mnemonic
keypair = Keypair.from_mnemonic("word1 word2 ...")

keypair.address()        # SOMA address (hex string — addresses use hex)
keypair.to_secret_key()  # Export secret key (hex string)
keypair.sign(tx_bytes)   # Sign raw transaction data bytes

SomaClient

The main client for querying chain state, building transactions, and executing them via gRPC.

# Named chain presets (recommended)
client = await SomaClient(chain="testnet")    # auto-configures RPC + faucet URLs
client = await SomaClient(chain="localnet")   # auto-configures RPC + faucet + admin + scoring

# Explicit URLs
client = await SomaClient("https://fullnode.testnet.soma.org", faucet_url="https://faucet.testnet.soma.org")

# Override scoring_url with any chain preset
client = await SomaClient(chain="testnet", scoring_url="http://my-scorer:9124")

Chain presets:

  • "testnet"https://fullnode.testnet.soma.org + faucet
  • "localnet"http://127.0.0.1:9000 + faucet, admin, scoring

Note: chain and rpc_url/faucet_url cannot be combined (raises ValueError). scoring_url is always configurable.

Chain & Node Info

Method Returns Description
get_chain_identifier() str Chain identifier string
get_server_version() str Server version string
get_protocol_version() int Current protocol version
get_architecture_version() int Current model architecture version
get_embedding_dim() int Embedding dimension for the current protocol
get_model_min_stake() int Minimum stake required to register a model (shannons)
check_api_version() None Raises if client/server versions mismatch

Objects & State

Method Returns Description
get_object(object_id) ObjectRef Get object by hex ID
get_object_with_version(object_id, version) ObjectRef Get object at a specific version
get_balance(address) float Balance in SOMA
get_latest_system_state() SystemState Current global system state
get_epoch(epoch=None) EpochInfo Epoch info (None for latest)
list_owned_objects(owner, object_type=None, limit=None) list[ObjectRef] Objects owned by an address

object_type can be: "coin", "staked_soma", "target", "submission", "system_state".

Targets

Method Returns Description
list_targets(status=None, claimable=False, epoch=None, limit=None) ListTargetsResponse List targets (defaults to "open"). Pass claimable=True for claimable targets
get_targets(status=None, claimable=False, epoch=None, limit=None) list[Target] Convenience wrapper returning target list directly (defaults to "open")
get_model_manifests(model_ids_or_target) list[ModelManifest] Get model weight manifests by IDs or from a Target

Checkpoints

Method Returns Description
get_latest_checkpoint() CheckpointSummary Latest checkpoint summary
get_checkpoint_summary(sequence_number) CheckpointSummary Checkpoint by sequence number

Transactions

Method Returns Description
execute_transaction(tx_bytes) TransactionEffects Execute a signed transaction (BCS bytes)
simulate_transaction(tx_data_bytes) TransactionEffects Simulate unsigned transaction data (BCS bytes)
get_transaction(digest) TransactionEffects Get transaction effects by digest

Scoring (requires scoring_url)

Method Returns Description
score(data_url, models, target_embedding, ...) ScoreResult Score data against models
scoring_health() bool Check if the scoring service is reachable

Faucet (requires faucet_url)

Method Returns Description
request_faucet(address) FaucetResponse Request test tokens

Proxy Fetch (via fullnode)

Method Returns Description
fetch_model(model_id) bytes Download model weights through the fullnode proxy
fetch_submission_data(target_id) bytes Download submission data through the fullnode proxy

Epoch Helpers

Method Returns Description
wait_for_next_epoch(timeout=120.0) int Block until the next epoch starts; returns new epoch number
advance_epoch() int Force epoch advancement (requires admin_url, localnet only)

Static Utilities

SomaClient.to_shannons(1.5)                # 1_500_000_000
SomaClient.to_soma(1_500_000_000)           # 1.5
SomaClient.commitment(data)                 # Blake2b-256 Base58 digest
SomaClient.encrypt_weights(data)            # (encrypted_bytes, key_base58)
SomaClient.decrypt_weights(data, key)       # decrypted bytes (key: bytes or Base58 string)

High-Level Convenience Methods

These methods handle building, signing, and executing in one call. Amounts are in SOMA (float), not shannons.

# Transfer coins
await client.transfer_coin(signer=keypair, recipient="0xADDR", amount=0.5)

# Multi-recipient payment
await client.pay_coins(signer=keypair, recipients=["0xA", "0xB"], amounts=[0.25, 0.25])

# Stake with a validator
await client.add_stake(signer=keypair, validator="0xVALIDATOR", amount=10.0)

# Register a model (commit step — publishes manifest + commitments)
await client.commit_model(
    signer=keypair,
    weights_url="https://storage.example.com/weights.safetensors",
    encrypted_weights=encrypted_bytes,
    decryption_key=key_base58,
    embedding=[0.1, 0.2, ...],
    commission_rate=1000,          # 10%
    stake_amount=10.0,             # SOMA — optional, defaults to minimum
)

# Reveal model (next epoch — provides decryption key + embedding)
await client.reveal_model(
    signer=keypair,
    model_id=model_id,
    decryption_key=key_base58,
    embedding=[0.1, 0.2, ...],
)

# Submit data to a target
await client.submit_data(
    signer=keypair,
    target_id="0xTARGET",
    data=raw_bytes,
    data_url="https://storage.example.com/data.bin",
    model_id="0xMODEL",
    embedding=[0.1, 0.2, ...],
    distance_score=0.42,
    loss_score=[0.1, 0.2, ...],
)

# Claim rewards
await client.claim_rewards(signer=keypair, target_id="0xTARGET")

WalletContext

Manages keys from a local wallet config file (e.g. ~/.soma/client.yaml). Useful for CLI-style workflows.

wallet = WalletContext("/path/to/client.yaml")
Method Returns Description
get_addresses() list[str] All managed addresses
active_address() str Currently active address
has_addresses() bool Whether any addresses exist
get_gas_objects(address) list[ObjectRef] Gas coin objects for an address
save_config() None Persist wallet config to disk
sign_transaction(tx_data_bytes) bytes Sign BCS TransactionData, returns BCS Transaction
sign_and_execute_transaction(tx_data_bytes) TransactionEffects Sign, execute, and wait for checkpoint inclusion
sign_and_execute_transaction_may_fail(tx_data_bytes) TransactionEffects Same as above but returns effects even on failure

Building from Source

Requires Rust and Python >= 3.10.

# Install maturin
pip install maturin

# Development build (editable install)
cd python-sdk
maturin develop

# Release build
maturin build --release

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

soma_sdk-0.1.14.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

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

soma_sdk-0.1.14-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

soma_sdk-0.1.14-pp311-pypy311_pp73-musllinux_1_2_i686.whl (5.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

soma_sdk-0.1.14-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (5.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

soma_sdk-0.1.14-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

soma_sdk-0.1.14-pp311-pypy311_pp73-manylinux_2_28_i686.whl (5.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

soma_sdk-0.1.14-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (5.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

soma_sdk-0.1.14-cp314-cp314t-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

soma_sdk-0.1.14-cp314-cp314t-musllinux_1_2_i686.whl (5.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

soma_sdk-0.1.14-cp314-cp314t-musllinux_1_2_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

soma_sdk-0.1.14-cp314-cp314t-manylinux_2_28_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

soma_sdk-0.1.14-cp314-cp314-win_arm64.whl (5.4 MB view details)

Uploaded CPython 3.14Windows ARM64

soma_sdk-0.1.14-cp314-cp314-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.14Windows x86-64

soma_sdk-0.1.14-cp314-cp314-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

soma_sdk-0.1.14-cp314-cp314-musllinux_1_2_i686.whl (5.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

soma_sdk-0.1.14-cp314-cp314-musllinux_1_2_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

soma_sdk-0.1.14-cp314-cp314-manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

soma_sdk-0.1.14-cp314-cp314-manylinux_2_28_i686.whl (5.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

soma_sdk-0.1.14-cp314-cp314-manylinux_2_28_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

soma_sdk-0.1.14-cp314-cp314-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

soma_sdk-0.1.14-cp314-cp314-macosx_10_12_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

soma_sdk-0.1.14-cp313-cp313t-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

soma_sdk-0.1.14-cp313-cp313t-musllinux_1_2_i686.whl (5.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

soma_sdk-0.1.14-cp313-cp313t-musllinux_1_2_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

soma_sdk-0.1.14-cp313-cp313t-manylinux_2_28_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

soma_sdk-0.1.14-cp313-cp313-win_arm64.whl (5.4 MB view details)

Uploaded CPython 3.13Windows ARM64

soma_sdk-0.1.14-cp313-cp313-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.13Windows x86-64

soma_sdk-0.1.14-cp313-cp313-win32.whl (5.2 MB view details)

Uploaded CPython 3.13Windows x86

soma_sdk-0.1.14-cp313-cp313-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

soma_sdk-0.1.14-cp313-cp313-musllinux_1_2_i686.whl (5.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

soma_sdk-0.1.14-cp313-cp313-musllinux_1_2_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

soma_sdk-0.1.14-cp313-cp313-manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

soma_sdk-0.1.14-cp313-cp313-manylinux_2_28_i686.whl (5.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

soma_sdk-0.1.14-cp313-cp313-manylinux_2_28_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

soma_sdk-0.1.14-cp313-cp313-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

soma_sdk-0.1.14-cp313-cp313-macosx_10_12_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

soma_sdk-0.1.14-cp312-cp312-win_arm64.whl (5.4 MB view details)

Uploaded CPython 3.12Windows ARM64

soma_sdk-0.1.14-cp312-cp312-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.12Windows x86-64

soma_sdk-0.1.14-cp312-cp312-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

soma_sdk-0.1.14-cp312-cp312-musllinux_1_2_i686.whl (5.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

soma_sdk-0.1.14-cp312-cp312-musllinux_1_2_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

soma_sdk-0.1.14-cp312-cp312-manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

soma_sdk-0.1.14-cp312-cp312-manylinux_2_28_i686.whl (5.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

soma_sdk-0.1.14-cp312-cp312-manylinux_2_28_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

soma_sdk-0.1.14-cp312-cp312-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

soma_sdk-0.1.14-cp312-cp312-macosx_10_12_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

soma_sdk-0.1.14-cp311-cp311-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.11Windows x86-64

soma_sdk-0.1.14-cp311-cp311-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

soma_sdk-0.1.14-cp311-cp311-musllinux_1_2_i686.whl (5.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

soma_sdk-0.1.14-cp311-cp311-musllinux_1_2_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

soma_sdk-0.1.14-cp311-cp311-manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

soma_sdk-0.1.14-cp311-cp311-manylinux_2_28_i686.whl (5.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

soma_sdk-0.1.14-cp311-cp311-manylinux_2_28_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

soma_sdk-0.1.14-cp311-cp311-macosx_11_0_arm64.whl (4.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

soma_sdk-0.1.14-cp311-cp311-macosx_10_12_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

soma_sdk-0.1.14-cp310-cp310-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.10Windows x86-64

soma_sdk-0.1.14-cp310-cp310-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

soma_sdk-0.1.14-cp310-cp310-musllinux_1_2_i686.whl (5.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

soma_sdk-0.1.14-cp310-cp310-musllinux_1_2_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

soma_sdk-0.1.14-cp310-cp310-manylinux_2_28_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

soma_sdk-0.1.14-cp310-cp310-manylinux_2_28_i686.whl (5.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

soma_sdk-0.1.14-cp310-cp310-manylinux_2_28_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

File details

Details for the file soma_sdk-0.1.14.tar.gz.

File metadata

  • Download URL: soma_sdk-0.1.14.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14.tar.gz
Algorithm Hash digest
SHA256 42e929a9e44718c077a3fe41a7542857c9145d0b294087bc3dbb041dadee895b
MD5 d375a8c8e14498ea5f5380b492f86493
BLAKE2b-256 56e971b81f75413dcc0dee89048f9c2cc5b59784144e7e854f1b970e8ab60679

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a02ca59f44773dd0e1407f4b7f782b2cb52c7aa387d10e6e7873d37cbf61733
MD5 35c4ff2860ffc9957f7428fa94579b08
BLAKE2b-256 afbe439b768d68415e762475cb9ebd58e37f485ceed565b365678df0e3ef65a1

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 32780c53b658a149de12918c9c9a6fecce693c5734f8bb099d62af69051c28ee
MD5 e741c1d44e0518df779ff0700c928444
BLAKE2b-256 ddbb69b82cda7a9c2f746af77000786fe53637d3f3e2470674284f5ef9a1108e

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0013394d49d573a1e621544492c13dbba9fcf9d1f0f22cdd7164080c25a4f7c
MD5 813cf1556bbee66314de05a3ec7ab6b5
BLAKE2b-256 1c918977e801e14b67a8d986c01665cd1fabb93900efc7591ddf594712ec447a

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: PyPy, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f43fb7e39b8d1292423219adab9a28c0155b36ac044733c172608941cc816348
MD5 8300e846ed775090ebe74746c94947df
BLAKE2b-256 7628c52b337112990d7cc751ef63879ff638ad23d242083f867dffe0ffc3cd53

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-pp311-pypy311_pp73-manylinux_2_28_i686.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-pp311-pypy311_pp73-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: PyPy, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8b71356fe0867080626ea81bbdaaadb8db52521bf5eaae2732d3b07598db1fca
MD5 ef4fa4c4fe7446645caa68a6bac624da
BLAKE2b-256 ae4ee3212bcbeab643601afec5760418eca37a543bd03178537c1a188d7a2b94

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: PyPy, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 04e0f7627f2e8ac1dd39e16d04fcf723a1ebb0b3583ac76f81b69e0180d2f27d
MD5 437a0c055ce782fa15992b2e0e63fd21
BLAKE2b-256 0aa14ba980c82335081aee9b47b039da7d935001ed235aeb40af791a8c1d2ba1

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c96b6cf519299d0677db00bd30bcf8d4da14cc46ec53c72e261387a3206f45f
MD5 5126fe5c0b3fba3127637e5ae5ec8c2e
BLAKE2b-256 5805159df27b537aa703d0f2607abc7b7c73b46f45c902bf784f67ec7094c17a

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0c011fce77903144aa52aaa7d5df197f2eee4beba3a9877568b334957a59fc75
MD5 5c4fb9cdb05c9dee40b6ed32fc5d3f5a
BLAKE2b-256 5b8fde352f6542ee78c77bfcbf6e9527345940dcf2189161f25c2e3b1bfb016e

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50f389acc0ce82e07ab0314d21d90693104d58759a40220f2a2db8b32f423fba
MD5 52c1e0f1af4d8c695c5b53d703b32cd0
BLAKE2b-256 e46308cb178bb8c87dcae8cf9fed30be94315440986666587fd8a3c7feb56b4b

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp314-cp314t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe5bb8ed1452b76849929a8fb6db0238f595867cbc68cffc18d697f21b2ca0ca
MD5 b9625e5d5eabac572468a4c4927c2fab
BLAKE2b-256 7f8f151e87dd9ea1db010575b410c484441bebe7c328dffef0f7b34de7c53480

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ad09bbea3d51e3d351fa5987127db3292d6859aa07f522284f1467c1e7cc5ed2
MD5 fae2d94623cdd27dc18de45c4c5d592a
BLAKE2b-256 c92706ac99113c6f273d4a193bde5d1abd7d55092cc90a1fa13d06875f157532

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 631b5c3f0f2014481b7542748492536a17e5a49012b7006aeb2c30dae791148f
MD5 9c8ec3ca719ff0f9cd1ea754c4af6bc7
BLAKE2b-256 a842f776a1b2e6c2acd6717971c6432093a95962ca4451ee739a2092eddfe529

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f7f7e07bd7dd2429707a3c032896ce8a020ff548fb1b45f97f203689d2fc8b8
MD5 e0b4d05f344f2a9b5a9f4852905bafb2
BLAKE2b-256 09391426138ec1e8e61d92122ce0f034756024f28731e4bd4aeb5e82cac8e3af

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ce429c3840b33a6e289fced881af4f0682edf9e6a579179a10502f014c1a431
MD5 078d3f33380fe445c785929dc080ade5
BLAKE2b-256 477ccbe26e47f89182cf026150468e2755fac3440b4e750cbfcfa6347d6fe842

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b00bf614317de57331f3b0e89a5e7ed91edf1783a25c68d273125252d7800c38
MD5 ab0571c722e6dd52e5a4201ec9e0c3e3
BLAKE2b-256 d29efd7934aaece1d8c7a5031b9d414b57f9171d398349054beb5624ee480b69

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f10fd3b3d2536c02d71b4d285a6fbcfffbb925d40eec04a30a78e28ca08f5f01
MD5 080e582d06f9972371ef90321502c650
BLAKE2b-256 e12e16c496d7d9eddcd1a8cbd54fce86e784d5188a5c794a879f361f7d7df28f

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp314-cp314-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 66fa7c8d32e7ad31c8b4d610ab5183f16379cd6a8196e2f323a72c7848465444
MD5 a768d2d5214fdfe6f7c048f17eafa6b0
BLAKE2b-256 1406e8679ebb1f955a9cc1b0e2c55113958fe9c5cd5af81ab71a6d3152ae79ba

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp314-cp314-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6deb55e9ea8616c307494036a7f43ab09777add216324e6a7228687a656fa5d8
MD5 efec4b042a788228ed24adf2b64593df
BLAKE2b-256 78e04b3c6484619c293d29e03a1e148c9fbd55ce88d434f8ff0c6ccef2ac6c92

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 998c732812683b5e598728beaffd7a316f270963c8401024f8a0befa43dfecfb
MD5 75cd4acf6aef5d159991cb793bf4c580
BLAKE2b-256 d563714b9698313bbffb6a5aece66ade71a1f5443b4d0788c4af930bfc47afab

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 130521b419549cdacc28a02493424db63ba117a8f810e1a63383d481c7ef57f0
MD5 50f39da0627484f3ce836d638c2acbdb
BLAKE2b-256 e67cc3c8b46f23ff761251356dc85bdb7534488535013d184750c60977640c61

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6468b3b654ccd361d57e78d46a4b54d769dd328b2eaa5797eaddf519c2354dd5
MD5 80f439650c8b3edaa4adaba6c8eac11b
BLAKE2b-256 12ebcea43ce7de06df5d2f335561d3d81d917df2cc14c9a69900c8285564a6e2

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 28f04b99d7cd4bdc05510ff482791bea53c133267c890e8c979be89b4d1e57c7
MD5 b89cd824e9e08c94e1726b0f1e9cae98
BLAKE2b-256 ab33a7e67d8018cf7267eee970a90cb496108fb39146ad43f0a132fdd9e9288e

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 180f110c92308496316bcdb5c72669957a4641ad6ada2fbd140062531eee7e56
MD5 defeaa1cf231a026163817c89bd99d97
BLAKE2b-256 dbfb3bd80bc897fabd2a5b3b581a01586b4602bb9cc616c3de0dbe9fdcf92cab

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp313-cp313t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 03db769b1fd0782d47f7b74546225188c7696877c108417ba5111c40218c5bb4
MD5 9a30de27736ae13d253207af40f06ec1
BLAKE2b-256 3a36250eac7a1e94a4ced8b9f9b5468af85b56db64371ef78cbb8a54bf08a69e

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 c50bc626e015dbe4614f06f26979a2da7c84ccb8c75a089e4e10721edae85c74
MD5 0d621719c907dff66c7fb0ee640d35bd
BLAKE2b-256 74423b03f069f5977aa5fcf8d12da392e133745ddb25efba6dfa91ece3b07916

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 85023db7b507f638ccd41b79631c1b318bc5c39da69722657492606437d84ff7
MD5 34b83eab27cc26194d8e934c8c0990ee
BLAKE2b-256 e4a17c096cea13a271a695392a7598f6bddd9af92b4ae0a1e5a272dd882ea008

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp313-cp313-win32.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp313-cp313-win32.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0856458091c102f0676f7fc5f34f9cbb41176c0e6a8abc7b9a7d8033f2430db1
MD5 8d203dabe55623c8df98504bda92a5df
BLAKE2b-256 f6bbba769a8a1ea63ec0d3c7e4fa15120b90db14aa34c23cac3c70a1a80ea42e

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce8183d9f5e7c6ced4d38444c9720053e851dd4cdfac45134277bf986014e855
MD5 6d1dc53c1c05b2a3e2b1203e1a8fee12
BLAKE2b-256 6774fdd171f97abc45d7d87c2c3cbbe351738baddf379879dfda15005bc9670b

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 20a3209e7797377ca83e6adfee57d93eec571d9eb6a6dc0f031dd58caa2edf56
MD5 e540d0686071f3836ca257ed8d6f4e35
BLAKE2b-256 15ccfced167020a017861d1113a6fde4fcd3594249b61c0c6bed2aae844904f6

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc96ae933c96eb02849ae9590c0adde344921f9c75396aaf32fcf630401175b2
MD5 61266b174789609a22df8ff517dcba42
BLAKE2b-256 ec7d921a4ed2bcd353fd2444ea432ecdcb30182f9f28d58aae599a72d81a1262

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f5f67a110ffbc81386cd68f12b46b18decf8683eb1cdc39edc62cd84fc68a0d8
MD5 2abab5a16d00e83bc826264711e8240d
BLAKE2b-256 d8a1e7359811c8ca643da9ceb02731d23d468046e8b594302f1f0e53ce77fda0

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp313-cp313-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 70f95089bbc3eb9b29a2fab85cbacfe104acd273b41d0ad386af5e06ad1c8b30
MD5 ab6f87f7de44b64f8ac6404574e0500f
BLAKE2b-256 b27a3ea915734576b1162ebaa06c14a96a84d52524df5f731895683880d28c47

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 27d8cefaafa496700bdab3df1a851cf86634a3cf097dfe553d0294a82cd2732f
MD5 f7858b7c6e99b01ef9440c38229d50ab
BLAKE2b-256 0fb33ff29318e929fe9423748cce938304e28948483f5a2904f4fddd5696ba5b

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c23215c516fdb6c996d229351267555dfdbf5d9e427297c04f241561d9a60897
MD5 5be138770c5e1efaf97f00b89f05210e
BLAKE2b-256 aaae18feae2885d32a4482fca9b9b4953a3e56e155ccc4b5ac61e0db955a4253

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2e3d824b4281c01f867b98f5b21d3dfa9c3213d9c6cdaa2deb572afaf8aad7ba
MD5 89864c4a31916d69b334ad97fa0ff948
BLAKE2b-256 706eaee5faa954eed936f74ea851543f17ca7545b54ec235dde2c49e684c167f

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 205f7e2112c68fdc68d792288030866db0a1d9a32728c132d0bc94a3192cbb2f
MD5 8e4fa1cd8891d2e6bba4822655f74bf7
BLAKE2b-256 f3ac4b88427f328196421146d3c604c24aad1490012505f884a312506aa93b50

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f243d225ccb1adef86b42a38ae9ccdc0434934f118c0c321bbb6c6d744ae3376
MD5 4e712ca0b29088223cf179130f2d231f
BLAKE2b-256 987ed664acb3516a7ca5cac47cbd4755de17bb34dfa3a9b821c1260054beacc3

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8bc1adcc6adf8cdb0090bf9628874bf23824e5bfa08e11efd256fccd77b8a27c
MD5 b89c0e2794e23892ecfe0980343eeba5
BLAKE2b-256 641ff889c0d9673f3cb5f9665dc0fdbd13521eb820d165a520d3768ca00777bf

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe9af94d850728f50b72d836a4c3275cb13dba6615e8e965974868504ff5b2f4
MD5 13fffc1be99d00feee1996c011dcfcb8
BLAKE2b-256 d307de2ea4784643c18de4dfec9d702ab2dc7d89c452b126e17f3f44881b107b

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e7ea7f90769efbef7a913962aa297164c1d4371c57d4416135d55671696971ef
MD5 00461ca2830d61a173e5be439a89bf16
BLAKE2b-256 0fc42a04c6b09c1a9101806b23793b68a4fa2755f2d13448e1766ed9d7e4d647

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3a1474582e716f0b6a7efcb7a97e4aadf0bd82989debb7c1b7b65e321043f1ea
MD5 a00c401953c8e6f6189a49fbc387d7ac
BLAKE2b-256 b4d6736091357ac7fecc093f70023a5df7516689563b80113240a9c3393df698

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp312-cp312-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3711898369126680380f14fb995cf47747856fa28f65d93da7376091c3c3713e
MD5 6611b6742577cfa38b6a92a46a3adfe6
BLAKE2b-256 60eb180892c38d78fa3c92539ca934e10141481c292a0cb364aaf63007bd4c41

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 75c63c58dc099c1e8384df662c378ef914814bac0d65c998887b3617c41ad0c5
MD5 f2bfa82dee707c42d7888b99f9882ae0
BLAKE2b-256 f5a7dbafe07dbe16ef987ac29a9073d9d14105b2618baa74ccddb99ec366acc7

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53cc38a24e0cea628197fe34849953dc9fec0a1ce16a99c9dd3699246a3f1393
MD5 1a695adc321c8a89d0db2ebcbaa89800
BLAKE2b-256 a73f5c258081c17931949ebc60f6b545d5187944b22d96b2e806389250dd19ef

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 abe624d7f55f1a0ab79b965eb521c9e7441266a1a1a48652a37d9e45d9ecb29a
MD5 bdfae03c7562ed2de432c0c09093da2b
BLAKE2b-256 f364e91c25d25fc6e03cbefdf18e0cde773234a196296d06fc1df3096b0b6b07

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7f66ebf350349e599eac7f57510d5935f19e76fe459672b339ddd1f3ba3d9abd
MD5 63e68e763e470d6adfd4b0af3c7950de
BLAKE2b-256 c2a21c770a5fbd5a126f6ab1fc6063b77cd9f5e2c93bd54f96d0dccb669d4eaa

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3922a6e751065fbb4d09f8c550c7f58c202fcbdd14be5d7eb4ee1438ad84e96b
MD5 56b1bcc7cac73043492e29d7fa84a486
BLAKE2b-256 726e641a4dae5c8f9b9d7251cc1c8d6edad5904bf2d3088b6412c28e9ee38425

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 086f08e16d6276718367ade2fe20b8af2467da6e6cd4856dc5a56fe878d0eb63
MD5 9c3292b44c14b894a0527768bb6fd2a2
BLAKE2b-256 027c92eb9f37dbc62a665892c55c90594397fdee3da853f3a21233b18d03ea2e

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e79b3e93e43c41c123c9a0e30068660bd19bfc3559476fda1b0a35210a52509
MD5 ff19af0a45e39ff8feec0a226a724d9e
BLAKE2b-256 aa5d986066f71f8713a43b6dfb00ebe2832bcae2121b0efa96be91539160d537

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f4bf2abf7896d48be6a01c1febc6cfe48682be2dd1169039de7c4044b6037189
MD5 2e94e4ecdb49db7d7727f97b389f1feb
BLAKE2b-256 86b1d9ec898e7cbf82a63abc10772c4ceae53ce62d359f7491342e2c37b5eaa8

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp311-cp311-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 62e5c06e029f7ec6f468d6bc86901f5d7ffd517d1984cc056ebbe2f524933609
MD5 300e79c00be1b89a25ba81ec30ccbc12
BLAKE2b-256 e32a380b412982f060c5b9135363b1fde472d9e153ac7e53fa666d7e9cb242bf

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp311-cp311-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b3cf3ba8a76d1032252c900c3d85e286145cfa1cd657862cc85f1a67d71443c9
MD5 4714e018dd0d33a15bf856a2088e6904
BLAKE2b-256 af2a9de85f537c01957c5424821ad6282c0c3912fb7c971f94701c4fa38cdb4c

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c31b5112bc5aad9818339559341ec9cd9b2fc28716d20e63ab2fb8b1c0c0e342
MD5 3b356ae7c1d9703960c1e3ad6f44ca75
BLAKE2b-256 4b62455071a2d3d12b2cc8b18dd5b7de3811afc36be3f690ed8a1672726f8c32

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5943353a816c6c8a4d587c6119a609ee20145f56a3d21f3f4d0634386b3cc4fe
MD5 eb71620d081ba5dd08c5e0654057f407
BLAKE2b-256 ef82b260617e8fa7a3c76d1525b8db515caa11c3a8c6320acaf97957938182af

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 5.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ddfc589622312f0be9b42e54e812d6a5a35b3fcb94516fcf0df3a57f17652823
MD5 96d162a5b421223cd878addc1229a52e
BLAKE2b-256 5ced7d0f62eba52969f478637cf6fc0b88e97ed5e591e81cb04df307cf5613f3

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33c6fb8b8724dc9dd138cba46d84a03a254498d41e94a2a69b29acb6475752e8
MD5 f76245beadffd68277cf4f1134fa7e45
BLAKE2b-256 b57834a6ffd667fc41a0997352aa8773fc595e1c10375cb53d5fbdf4028b8ffa

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7bc0fdc4df5f938bab5df739bf30188aca631569b3bfc51d7ba95e0945989755
MD5 755d5532b696f0f61af5a5c35d231e55
BLAKE2b-256 2c9bc085db2063a5feb7eb1060b28f60a968174d59c96e0410d9414e73a23ab3

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b28970e718f0bb97f218e7b94d3e005e1a094bd1bf84e1ff5a1cdb915d9715d
MD5 26fdbe58855a030f2b8dadd0d0edd464
BLAKE2b-256 17dac10410b9ebde6f914e588c18d4b5407fa8356725cd8daac2f4ff017acf12

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b50efa8f917b685260a2bb72ce2fa38038d0d9f9b58a8dc53972083ecaa20e2f
MD5 1517a703500feda815345e3fced5d9f4
BLAKE2b-256 64b5041a5b704d84751c10d8b17d24dd81f754c7fae964d67a4f9a33e1ad1dd4

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp310-cp310-manylinux_2_28_i686.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp310-cp310-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d05318de7c5294f6c97eb5787f37d3d655ac59a9d23a106bbf9ca3666e938cb8
MD5 27f359d3ab2d26fd18e7c7e85e9dd3e9
BLAKE2b-256 fb878ef5e48a75b64e730fb684dc32edcf5c873fa647763df436407b454fbd5d

See more details on using hashes here.

File details

Details for the file soma_sdk-0.1.14-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: soma_sdk-0.1.14-cp310-cp310-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for soma_sdk-0.1.14-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 005030c90fa79c6f20839b7c813305afb5c3681cf56ef4dcad74d20531ee84bc
MD5 5c43bb03bcb182763334691b1323e777
BLAKE2b-256 0143d52380e2e8fc484b4e9fa4c7c63ca5ad5b4e8b3329e24c113c34e98c6240

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