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)
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", "challenge", "system_state".

Targets & Challenges

Method Returns Description
list_targets(status=None, epoch=None, limit=None) ListTargetsResponse List targets with optional filters
get_targets(status=None, epoch=None, limit=None) list[Target] Convenience wrapper returning target list directly
get_model_manifests(model_ids_or_target) list[ModelManifest] Get model weight manifests by IDs or from a Target
get_challenge(challenge_id) ChallengeInfo Get challenge by ID
list_challenges(target_id=None, status=None, ...) ListChallengesResponse List challenges with optional filters

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 hex digest
SomaClient.encrypt_weights(data)            # (encrypted_bytes, key_hex)
SomaClient.decrypt_weights(data, key_hex)   # decrypted bytes

Transaction Builders

All builders are methods on SomaClient and return bytes (BCS-encoded TransactionData). Sign with Keypair.sign() and execute with client.execute_transaction().

The gas parameter is always optional — when None, a gas coin is auto-selected from the sender's owned coins.

Coin & Object Transfers

# Transfer a coin (optionally a partial amount)
tx = await client.build_transfer_coin(sender, recipient, coin, amount=None, gas=None)

# Transfer arbitrary objects
tx = await client.build_transfer_objects(sender, recipient, [obj1, obj2], gas=None)

# Multi-recipient payment
tx = await client.build_pay_coins(sender, recipients, amounts, coins, gas=None)

Staking

# Stake with a validator
tx = await client.build_add_stake(sender, validator, coin, amount=None, gas=None)

# Withdraw stake
tx = await client.build_withdraw_stake(sender, staked_soma, gas=None)

# Stake with a model
tx = await client.build_add_stake_to_model(sender, model_id, coin, amount=None, gas=None)

Model Management

# Register a model (commit-reveal pattern)
tx = await client.build_commit_model(
    sender, model_id,
    weights_url_commitment,    # Blake2b-256 hex of the weights URL
    weights_commitment,        # Blake2b-256 hex of the encrypted weights
    stake_amount,              # int (shannons)
    commission_rate,           # int (BPS, 10000 = 100%)
    staking_pool_id,           # hex object ID
    gas=None,
)

# Reveal model weights (must be called the epoch after commit)
tx = await client.build_reveal_model(
    sender, model_id,
    weights_url,               # URL string
    weights_checksum,          # Blake2b-256 hex of raw weights
    weights_size,              # int (bytes)
    decryption_key,            # AES-256 hex key
    embedding,                 # list[float] — model embedding vector
    gas=None,
)

# Update model weights (commit-reveal)
tx = await client.build_commit_model_update(sender, model_id, weights_url_commitment, weights_commitment, gas=None)
tx = await client.build_reveal_model_update(sender, model_id, weights_url, weights_checksum, weights_size, decryption_key, embedding, gas=None)

# Other model operations
tx = await client.build_deactivate_model(sender, model_id, gas=None)
tx = await client.build_set_model_commission_rate(sender, model_id, new_rate, gas=None)
tx = await client.build_report_model(sender, model_id, gas=None)
tx = await client.build_undo_report_model(sender, model_id, gas=None)

Data Submissions

# Submit data to fill a target
tx = await client.build_submit_data(
    sender, target_id,
    data_commitment,           # Blake2b-256 hex
    data_url,                  # URL string
    data_checksum,             # Blake2b-256 hex
    data_size,                 # int (bytes)
    model_id,                  # hex object ID
    embedding,                 # list[float]
    distance_score,            # float
    bond_coin,                 # ObjectRef
    gas=None,
)

# Claim rewards from a filled/expired target
tx = await client.build_claim_rewards(sender, target_id, gas=None)

# Report a fraudulent submission
tx = await client.build_report_submission(sender, target_id, challenger=None, gas=None)
tx = await client.build_undo_report_submission(sender, target_id, gas=None)

Challenges

# Initiate a challenge against a filled target
tx = await client.build_initiate_challenge(sender, target_id, bond_coin, gas=None)

# Report/undo challenge
tx = await client.build_report_challenge(sender, challenge_id, gas=None)
tx = await client.build_undo_report_challenge(sender, challenge_id, gas=None)

# Resolve and claim challenge bond
tx = await client.build_claim_challenge_bond(sender, challenge_id, gas=None)

Validator Management

tx = await client.build_add_validator(sender, pubkey_bytes, network_pubkey_bytes, worker_pubkey_bytes, proof_of_possession, net_address, p2p_address, primary_address, proxy_address, gas=None)
tx = await client.build_remove_validator(sender, pubkey_bytes, gas=None)
tx = await client.build_update_validator_metadata(sender, gas=None, next_epoch_network_address=None, ...)
tx = await client.build_set_commission_rate(sender, new_rate, gas=None)
tx = await client.build_report_validator(sender, reportee, gas=None)
tx = await client.build_undo_report_validator(sender, reportee, gas=None)

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)
model_id = await client.commit_model(
    signer=keypair,
    weights_url="https://storage.example.com/weights.safetensors",
    encrypted_weights=encrypted_bytes,
    commission_rate=1000,          # 10%
    stake_amount=10.0,             # SOMA — optional, defaults to minimum
)

# Reveal model weights (next epoch)
await client.reveal_model(
    signer=keypair,
    model_id=model_id,
    weights_url="https://storage.example.com/weights.safetensors",
    encrypted_weights=encrypted_bytes,
    decryption_key=key_hex,
    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,
)

# 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.6.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.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (5.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

soma_sdk-0.1.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl (5.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

soma_sdk-0.1.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

soma_sdk-0.1.6-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

soma_sdk-0.1.6-pp311-pypy311_pp73-manylinux_2_28_i686.whl (5.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

soma_sdk-0.1.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (5.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

soma_sdk-0.1.6-cp314-cp314t-musllinux_1_2_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

soma_sdk-0.1.6-cp314-cp314t-musllinux_1_2_i686.whl (5.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

soma_sdk-0.1.6-cp314-cp314t-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

soma_sdk-0.1.6-cp314-cp314t-manylinux_2_28_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

soma_sdk-0.1.6-cp314-cp314-win_arm64.whl (5.5 MB view details)

Uploaded CPython 3.14Windows ARM64

soma_sdk-0.1.6-cp314-cp314-win_amd64.whl (5.9 MB view details)

Uploaded CPython 3.14Windows x86-64

soma_sdk-0.1.6-cp314-cp314-musllinux_1_2_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

soma_sdk-0.1.6-cp314-cp314-musllinux_1_2_i686.whl (5.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

soma_sdk-0.1.6-cp314-cp314-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

soma_sdk-0.1.6-cp314-cp314-manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

soma_sdk-0.1.6-cp314-cp314-manylinux_2_28_i686.whl (5.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

soma_sdk-0.1.6-cp314-cp314-manylinux_2_28_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

soma_sdk-0.1.6-cp314-cp314-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

soma_sdk-0.1.6-cp314-cp314-macosx_10_12_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

soma_sdk-0.1.6-cp313-cp313t-musllinux_1_2_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

soma_sdk-0.1.6-cp313-cp313t-musllinux_1_2_i686.whl (5.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

soma_sdk-0.1.6-cp313-cp313t-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

soma_sdk-0.1.6-cp313-cp313t-manylinux_2_28_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

soma_sdk-0.1.6-cp313-cp313-win_arm64.whl (5.5 MB view details)

Uploaded CPython 3.13Windows ARM64

soma_sdk-0.1.6-cp313-cp313-win_amd64.whl (5.9 MB view details)

Uploaded CPython 3.13Windows x86-64

soma_sdk-0.1.6-cp313-cp313-win32.whl (5.3 MB view details)

Uploaded CPython 3.13Windows x86

soma_sdk-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

soma_sdk-0.1.6-cp313-cp313-musllinux_1_2_i686.whl (5.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

soma_sdk-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

soma_sdk-0.1.6-cp313-cp313-manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

soma_sdk-0.1.6-cp313-cp313-manylinux_2_28_i686.whl (5.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

soma_sdk-0.1.6-cp313-cp313-manylinux_2_28_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

soma_sdk-0.1.6-cp313-cp313-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

soma_sdk-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

soma_sdk-0.1.6-cp312-cp312-win_arm64.whl (5.5 MB view details)

Uploaded CPython 3.12Windows ARM64

soma_sdk-0.1.6-cp312-cp312-win_amd64.whl (5.9 MB view details)

Uploaded CPython 3.12Windows x86-64

soma_sdk-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

soma_sdk-0.1.6-cp312-cp312-musllinux_1_2_i686.whl (5.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

soma_sdk-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

soma_sdk-0.1.6-cp312-cp312-manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

soma_sdk-0.1.6-cp312-cp312-manylinux_2_28_i686.whl (5.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

soma_sdk-0.1.6-cp312-cp312-manylinux_2_28_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

soma_sdk-0.1.6-cp312-cp312-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

soma_sdk-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

soma_sdk-0.1.6-cp311-cp311-win_amd64.whl (5.9 MB view details)

Uploaded CPython 3.11Windows x86-64

soma_sdk-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

soma_sdk-0.1.6-cp311-cp311-musllinux_1_2_i686.whl (5.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

soma_sdk-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

soma_sdk-0.1.6-cp311-cp311-manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

soma_sdk-0.1.6-cp311-cp311-manylinux_2_28_i686.whl (5.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

soma_sdk-0.1.6-cp311-cp311-manylinux_2_28_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

soma_sdk-0.1.6-cp311-cp311-macosx_11_0_arm64.whl (4.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

soma_sdk-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

soma_sdk-0.1.6-cp310-cp310-win_amd64.whl (5.9 MB view details)

Uploaded CPython 3.10Windows x86-64

soma_sdk-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

soma_sdk-0.1.6-cp310-cp310-musllinux_1_2_i686.whl (5.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

soma_sdk-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

soma_sdk-0.1.6-cp310-cp310-manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

soma_sdk-0.1.6-cp310-cp310-manylinux_2_28_i686.whl (5.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

soma_sdk-0.1.6-cp310-cp310-manylinux_2_28_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6.tar.gz
Algorithm Hash digest
SHA256 cd366abdbc25be70b037d19deb354272368b97f50a32f3571df9f04af949c63d
MD5 e8135ec89fcd8f953539e06722050154
BLAKE2b-256 3456f66cac38283e12f9c6bfa99a65ff200e2161124aae577f652d55394c11c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 629129896d19eadf08012ee50bdf4d8b9a48d555d4e27bced74fdfa0fab5c03c
MD5 a4141d3c1ff55c791b89b9f31d1091b3
BLAKE2b-256 57c516af8503fab98c7eb250aa94f17d30a9837935a57373182320c8fda14e76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 534102ad9c6822b68187b0076abfc913c2dce72964ec40020aafe76ea1fb265d
MD5 d22ff3c776a6e336aea122f2a0d9b485
BLAKE2b-256 39cef716160fdedd0c518df4f9046df6c1a7dd1fe6b9ea3f65d22d576f7c19fa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7cd72a31b44e7f38b97f3d555e55d67486555c8199a73a18ae318471fddcaa41
MD5 ffad7a61728a408ed47e881a0addbf2b
BLAKE2b-256 4d8973157f76eabd859132968950a52c85d43e38d6ee8f8a2ba9cbc690711de4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: PyPy, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6262740b21309f74e77a08ecb19c718720de79697653446f91b1696acabe1799
MD5 7fec9c9e00cb6d5dad6e953c7d7ec876
BLAKE2b-256 73f6d74fab6c66ba6afb085615de23ca75aafd3edd005b47fb78e45fe5b84001

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-pp311-pypy311_pp73-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: PyPy, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 37b67bc9eab2672b77101738525e0df50e2ca5b7a0b69fa061ec4a8412de01ed
MD5 3a1a488200831d8658aaf321209d2964
BLAKE2b-256 9e07ec089849b7cf09f72be0b61e10849278b409c045ec994790502b6699e4fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: PyPy, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 87789e8e188048c92c7b847a9e12dba2bc216d03a2e23c1cb05b0418d84829db
MD5 00bb4e8af94f40a0b504e38e91b7681d
BLAKE2b-256 31801d33d3595cffcd7c299cd12d825aac2a914a94534fcd1f13905aa5c58491

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6decdcac94184d402a706bbe7a7678673cd90f06fc7351df15e0e8978707de14
MD5 38212b2f9df27c5f6fae5f2476a2eae7
BLAKE2b-256 67da6c525e436d4daa13fec435d409a1b046f2b729c6f7c91f0b90516840b72e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 703ccd5f9098446b68226f7fd52d27eeb4a923ace673e748b3e7925b9ad5d7e5
MD5 669e514d39e4bac0be799bf92d0db4ec
BLAKE2b-256 e07b63b0ac87ce65732bd9340a06ecb2e4adc67bbc67d4affb6c3f58f709bf83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49000aedf56c2114ea8cb20ea3cd65a191bfb64733f98ddd8d4139feee9649d9
MD5 7694ed58d03cc4653a1a1e2c44537aad
BLAKE2b-256 1bc34f7db9a3121f41dd03b99391b343202a5db6a4ebc4dae163eb68deb5c206

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp314-cp314t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b11e14a379458c031e89c4d0f72a0fd6ef2a6d595179b0cf7b91844e2e54bbd6
MD5 91d300f40afccdd028465f0e4a7847b4
BLAKE2b-256 81ce8392435fc3d1b2729a573100720f10559846f025dca3e58d35f935d60aa0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4fa0c06921b03a27e7058772344f5166dcb4ab71db04b645796ee2734514ee19
MD5 45f5813c0a965c952e6ad9689cfc75c9
BLAKE2b-256 ce7cc8a9287a220984d749d761a43b7e1af5f27147689bc842020ac02cea268f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3a161b382a3f0789160386485669ce26f0bf310f77354b5eb3b518a0b344a425
MD5 66701bd9e30422e70c851fe94a5ecb63
BLAKE2b-256 d2fdad51b3a61259a4c571637d7ef2a6d86968a69b034ed0a883a4ca8d47c5bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19a20d34fcacace46269242d6f449a53189d22c6834517e22e19dca0720100c1
MD5 6094619bed4f83ba3c9adf7e0504f8b9
BLAKE2b-256 ac2f718e482bb0b598be4ef3cbabd5ba129fa02c3da83e85550ee020d3cbcccd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a12a6c753cfdb89d0a3e27890d5afd2f8af7ddcfb5b5f7a1832e29c95e541f4d
MD5 d3f3a9afc0b48d5bd606a1b2be63cdb0
BLAKE2b-256 bbec57bdf1e61ea8d645d3c24ff6efe31383d6871a407005acb6b4695aa66d73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 779eb34ea19bb2b40bcc91c0677a3712a858130638a68f16ae66aaacd042d9b7
MD5 93c72c8f1de9826a821db2bcf740691e
BLAKE2b-256 a6299f04994fb6559caf0a9544df42013daeb13a17a9753c0c3c0a67f113564e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 14ecf130ab15bbeaa183eeca067b6e7bf3bae313ba8168b48bf19093c71bde05
MD5 013fa3a99121ce1bdcc13d84e3751073
BLAKE2b-256 6a08d1b95c5a3bce5ffc15e81a320e573dc80861bdf9eaac4bee400669e7f938

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp314-cp314-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 886eb7c502f8fd9e6bcd8baf542ec4f90c108f58d233f427e316ca106a125a77
MD5 396bbc60e306d66bc0960c8b938cfebc
BLAKE2b-256 fc5deae0a938de7b2314c4a4f85b36868b737dde9131df9721fa94a2fedd705a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp314-cp314-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6585e5f978b2567403da5b82ab3b3317c4b07d152dc5b6da9acc4b6c11cd9857
MD5 cb74b10fbbade7c12d098e75f8e954b3
BLAKE2b-256 c8751035857a1bb6812160570387c20e22d2e1e2f035eec823665e021023e36f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6b267914c388d5f69f2672d7a152d613fd29a733c1d1513b493bb9263e5bdce
MD5 7cae3536b60ae98049038fe5a6560b83
BLAKE2b-256 31d4738e801925455159ebb3e16dd9eb77c95df284c93a3357347826b19948d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b9a3f28343983752069f9ce484d07538ad4318995eec89be35ff65ec6692e30c
MD5 6f4d432f598026e02de3831baf9936d3
BLAKE2b-256 2ad476df556a7aa6ec55954ec6ac9b30a814edcf8a6f84a5ebad9066ffbeed33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp313-cp313t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d22eb23149b3f61d11d68c1a02a762e38159561887700afd4f8f5e87ab3b4e7
MD5 5f2bac82f587df820df56f8c38dbcd96
BLAKE2b-256 25dad87cfd196ef1d3d965af5cfd5afc9dd4dde10cd0ccb60d3ab9eff8410977

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp313-cp313t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 23a83e3ddde259eeffe2356adea54ecb2b47fa12b1d3e95bd7dcd65588e09ef0
MD5 c9b74f5101cff5663f2080bf60a5a648
BLAKE2b-256 d70bf1f3a45c13aa3e106b6226ea1f554c5e4fde4d4051210441efe1420ddd18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp313-cp313t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a71a497be8ad4b88b0783fc51ea3a18ba53351c5995d82f1fad28c28eb16e576
MD5 02fd6fffc780836c16949ca6109f8ec9
BLAKE2b-256 029e3ddc26be2f12046607722356ca5b01ded625edcf02b04c7e14cbb379fd92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp313-cp313t-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.13t, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 73b0c84466b5067c586220758310da326e2d758bc07c1c7ba67e0fc0c52be1ed
MD5 f2c22c18abe0f0b15151e7638e656b42
BLAKE2b-256 9a85ed1205bd1d3b0a65d2d878373ae9554bb39e8fa168051c50879600165447

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 001a439b98ad5271d3540e9edb10fb08f080bb5d13338cf73c924a998a9046c6
MD5 7da7c94d1c6744f34cb0d7dd6ebfa93b
BLAKE2b-256 74f3eec3818ccd3f96ecf3490a20a8842391899fdc0f45c6ce579564f1006806

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 94faa5e5eb48fd90aaa033104c9c3066e214397024cec115866461408edbf654
MD5 819b2e70b8721d5da2e212f0d6ea7704
BLAKE2b-256 bbf9faaa35736eeb9f21238b8262bef8df45536be3309addbc53a243b4cfd65a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5b6ece34441472f4591280427a77d400c34048dadb111c86590a28413dc5da4c
MD5 32a5cf9f27a437cf00d80f3a5a3696a6
BLAKE2b-256 afef5b4b9e0337c7644d0623a8c21d76fb45e25fa22f39e98bffaacf98aeb8d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f78ab17ac374af1d6e8c32b4ed3544d3370e123286337feb62b80a3f5d9eb393
MD5 a0a74923814c1759b5f72052fc3f66a8
BLAKE2b-256 ef99abbadf3d6b83cc81beb6403a4d367b1319f32d22e3ece8c0c24798aa1f62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 00e5a26c1917dc9ce8cee160631aeee3467ce91968175e4c233637e9cf642408
MD5 dd6172eb73eebab8732c1548be5ced33
BLAKE2b-256 4d173b2a7e515657e93ab870a4e85c431950c57775b9af3cc135f371a8ad030b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 026ce8609d4c7897ec3c3cb3f6f5adf902e8b215551072328124f612574a8804
MD5 6b2330ebbf94a2fbdf126f7954568a5b
BLAKE2b-256 ec7f58d6b1f1f8c53647e30f5baa549bb732b0de2b57acf54c3b574244bcd2d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d8fdf450388d01ab530f64ff5cfa068d6bfd3cfa73380a6d9d2c0aae995c2030
MD5 9dd575054c2a41d422f8de4420fc5364
BLAKE2b-256 5ab162d22cd87dfaeb68112b043a5f439e57ba6ff0c5ae14c9cdd6123bd69134

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp313-cp313-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d7e422e90827f5752c517a3dc66bbc7b77121ab1cc06bf593ed28ff77735bac7
MD5 66cf47c86b34e6208a1b6f344fa049c1
BLAKE2b-256 70135b2712055985108494fb36b76c63dc076486e870ad1cadd566f89b53ad67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1c983b09f710dc8b6dfe0cacc3b6d6372133b16d047d7c926ae3a9158d75cbd7
MD5 52b74813afbd733a255a9c9a0095aa9a
BLAKE2b-256 0b0e1b5780809059245ebe6138888a2811481bff5f126f453546a9eb458ee234

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 615f8821fa4ec99ea219a93c3ce34f6570c9a54a3dd723da3aebf7a814368f84
MD5 40b1445f504a16b357c4c2493178254c
BLAKE2b-256 52a1dc39749ad0a23cc16611833232e4fec8824459fd560a0d85ce7294bee3d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fd1181196b6d8586582484cff5a7a999ccb27d79cadf147fcdba7b3c0c496e32
MD5 56e8e8bb4b1bfe9bc0c038c555608e55
BLAKE2b-256 eac10edd4c8db89e48577930c1f476c3fc3370db46128a11bc8eb1c012c044b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f3a843e9b4910383d75ef59b86246f8dee80ccf1e8277fcfef6fccbeb7debeeb
MD5 4a1ee03f2fcb4cd11311215d854715d7
BLAKE2b-256 9cd5827bf2aea37e70176f21da70009d7abf6b12eb5af9c70d699ad573578432

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d343fad4c8b18198d1f6a61e6dc48c423bfc768a3c335d5ff2b36dcc8ff0c072
MD5 ed3b966f685659feb7a5143a442287fc
BLAKE2b-256 c46464d97e46ed2781addb759e839f8a2cf13dd5ad3a61f7a7da660b43fbe6c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bff639310cc326a0fdcf6fe9dfdaf717c8c0a01c7ecf1d79ff1f0ddfbd6fb6ad
MD5 839418bd860dc0cead3b06ef1b9a7b32
BLAKE2b-256 926d065f9807de29a544fd5972c2d0a0af856f0b8d79b2d59384aa6a698d74de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1fdb008b100bed115609be01b0f8619a311a9ba317a21446442d8022a8582950
MD5 18dabe50d9d1a9b3f93e9ff5eeb4b643
BLAKE2b-256 d5fda1ef83c38805e86878935ccd749ec8230d03cc051d4a5dc903395fdfe748

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb8c8cc41bfbad8d61ec3b857fa4ebaa244dabf413f3bbbb6558e6d2cd07c594
MD5 a6387d8bac286ddf19cb7f3dc10624d5
BLAKE2b-256 7663ea3a46832263d6f5b8a14d9aaee5c5bb22757f3bbd4212bc5c68d48c43ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 26e33949eab10c7fbbb94c95661b7883bb7167c33ccf4d5810a2e13e63726f5f
MD5 1d63ec94259c1d37b29a9e39eaf76f2c
BLAKE2b-256 5c700d525f698b85e96fc4d13fc38df3792ac3661440332371aa7f95fe117d10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp312-cp312-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3e999695c6a5622ca4c34fa9e9da3668b223bdf44926186b77a3548d30f4fc4a
MD5 71c7d96c0c652ba58d8c4dbd7a98f7ae
BLAKE2b-256 b4bcaa1a5b28ca32b6b6e3ec76031b33552b7cd37efad205948bb67cc7986491

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b18460aa64e13e21e582e382a0ab1b09eeafa2b574fa1c97f8c18709480eec42
MD5 68af9661d4c4de15cd8f8e3f5458d9e3
BLAKE2b-256 c7cd517c1d65d5efde5b7fb189bff390d4d9b28f3b8aa9e26ae5107eb1f43179

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3445a3324eb7fa7a6781df310cb14affe968455ddfaa884b285bbb7f731f4d07
MD5 d8b83fe5cd8b2b440f24aeae4ee0fdfd
BLAKE2b-256 d65f9a10899ab72f210422b1cd612b670ba692bb5f54a73375751098277e8ebe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1e3831a032d5217439425345d8402968515966b663eb2b410542f070ef58cc77
MD5 1686009ade6b91cab5ca06428fadc07f
BLAKE2b-256 2f00ed17805041be52a018cf9579329d0c7a53a7a8ceee48b240e0198c8cf3ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 364dec79b34101b379b3a861b7e75c760c7499d2483f5ffd6d3af7ff916f35cb
MD5 c0626243cb6eae457b52f90888246649
BLAKE2b-256 3e1b7cc8efce5453ac189c3b00a906b6629d7583dca68674e12b7595b9d91783

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7cc275b44c7bf91894cd2297d9adadc8145248623ddd8d6e2f6244e37d0a48cb
MD5 b68c8b50b8629ba13bcaaf790e0a6573
BLAKE2b-256 43e5c0ab1b826a05bb357b730cd44f0882df964c7578e413878acbd50d3488f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3d1ae5d4718b76e112d2684ef669108f317cd2681a4e155252edf5b58cf7e3d0
MD5 2f81bc103039a2296ff6afd6374b7776
BLAKE2b-256 df075b349a6c25343f8e70a992eead9546030abb38454d59ee697705d3c0923f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6986d0591c10c556e58e04116036098626af83b08b1ef43cbfee996f3d6b9f0c
MD5 a1057d0d80de511c94513ae5ab027631
BLAKE2b-256 f80d136e2f95fed3e97cba9bb1b3c190f9d08a7cf42f93c098313e190b26f6ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d67fb28d07f0c704f7ccd525613eb3e1f4cb1662b1422c75c21a0cee000b8a7
MD5 a024fbffcf3a9c4bb483482cab0e5ce2
BLAKE2b-256 e3bee33754ba7898384daf8527b8504799ed26ab9cf54947579414de3a67e88a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp311-cp311-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a0d032bb4e29edd8000d03a33084285071d0cbb135ac5643a6795187e754f6ac
MD5 90497226abdc2bab99d8ff4b98aac5ea
BLAKE2b-256 151e2e063774125ce6041643194473f4219a31c8ba925828a37f4cbeb88bc573

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp311-cp311-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8a2835331b0b57eaf420f19050544c7f2bb5d16125491646549ad92116cdc332
MD5 8d44a3b415af9f8ad1b8e8c861d7e25e
BLAKE2b-256 cad00d66524585eba2de752e979b279083791d4d60fd22732005386c12b8f181

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db46fa89aab0f6be52049959cb65db4165d95dfda279b7b6492af79bc7f36735
MD5 b546fa619f0eeeefdbda8d5c55d83ec5
BLAKE2b-256 5232ad5bce3f7d137e31ef60d8e54bab6328f042c6890d47ed6a4bc0b842faa6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 73f2332c6c609b8dffe15f4eb5da53d23176b76e96cb19a4909a4fe8aca24c42
MD5 cc66e5aca5f30bf42266619223b19fbb
BLAKE2b-256 306dca47e20f560d04d98e3d779c4bbc81394a44d82a30c7658f94847e05402e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 5.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 20731786901373cfd014d8bd130742584b047ed3d942d03ec955392629ed57e0
MD5 2c87346187349a9564ce2472f5e61947
BLAKE2b-256 9e7cabf8cc4de3d64e194a7df004d8ab744d42e2646978ec7e5ab9069e59ca94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 5.7 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a7f0981d8ffff6f3204997443b916c5e6211e0871efbf1c226841ad820b6348
MD5 c6db9c9e4c71a11b1840f37779985ac1
BLAKE2b-256 12befcad1e7aec15861554b4b15261d6f48501d6741d2b88fbc48094e5c11ee4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5fdc5e64883b6164c225d3d459b1bc5843cf57bd42ac95c199624b3885cf1600
MD5 eaa9391c56c549f55214532e3d252fd1
BLAKE2b-256 67b59a873c82f38add79296ce5287f6547b5574f2dbf7173c287674eab6dfc53

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 081c7919831eabd8968da539dfd18fe7107b048c84202bf7e914deeb64d34beb
MD5 0b641c5f39caebb431cee351b01618af
BLAKE2b-256 43f745988bb76ef19b99dd26f358f283cf66fc32084b8ab3d2f5a6294c15df52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a88d4a73971756415d94d2b8116871bafa268df3b706d3ccdcd05c06f4428b1d
MD5 7b9e7354eb72a3e93e5d385ff6cefa38
BLAKE2b-256 c5858e30fbb9de2d1138265f0b3de4f40d0edc1b6e5e39064fd367174a539a04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp310-cp310-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 5.6 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 3ed241cb8eddd3fbc7d841921d0e6f86da8999de64f3b656a106d5a44886ceba
MD5 bbbe0cc1c165589f0e5ff6fa92f689b7
BLAKE2b-256 0295510c53aca876d11f17e204fde09171dbbf3cc75cd2aa587e42928179db0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: soma_sdk-0.1.6-cp310-cp310-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","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.6-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 71c25983fa2e3482e3190301de85251631bd1c0d3d5933a4678127c755b674bc
MD5 bf5cd22a2e1fab2277888278b48f98be
BLAKE2b-256 a4f52465f8a9ee8a2e28589baceaf6c89db2e4cbd250d1eaf0eb08519dc73e84

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