OuterProduct SDK
outerproduct-sdk is the sole public Python package for OuterProduct. It owns
the Workspace API, runtime serialization, Files, Unity Catalog adaptation,
Flight SQL, and UC-governed object storage. Its client hierarchy has two
levels: OuterProductClient manages Workspaces, and WorkspaceClient owns all
UC and non-UC resource operations for one selected Workspace.
Natural workspace API
The client is an authenticated session, not a workspace. workspace(name)
resolves or provisions a Workspace resource within the authenticated
organization and uses its separate UUID for workspace-owned APIs. Omitting the
name ensures and selects workspaces/default.
from outerproduct_sdk import OuterProductClient, WorkspaceClient
client = OuterProductClient("token")
workspace = client.workspace()
catalogs = workspace.list_catalogs()
created = await workspace.create_environment(
f"workspace/{workspace.id}/containerImages/00000000-0000-0000-0000-000000000001",
cpu=1,
)
environment = workspace.get_runtime_handle(created.name)
async def add(
runtime: WorkspaceClient,
left: int,
right: int,
) -> int:
return left + right
run = await environment.submit(add, 20, 22)
result = await environment.compute(add, 20, 22)
await workspace.write_file("results/answer.txt", str(result).encode())
answer = await workspace.read_file("results/answer.txt")
Environments are immutable snapshots. Their create_environment(),
get_environment(), and list_environments() lifecycle methods live directly
on the Workspace client. submit() returns after the scheduler acknowledges a
durable computation. compute() submits and polls to a terminal state,
yielding to asyncio between polls. Natural computed functions are async and
receive their runtime workspace as the first positional parameter.
Unity Catalog CRUD, temporary table/volume/path/model credentials, Files, Flight SQL, environments, and workflows are all flat Workspace methods. JSON literals, objects implementing the SDK serialization contract, and Pydantic models can cross workflow boundaries.
Storage boundaries
File operations are flat methods on the workspace-scoped client. Environment
volumes map Unity Catalog volumes to container paths and are materialized for
each managed invocation; they are not a provider-native POSIX mount or a
write-back filesystem.
Use store_from_url, store_from_volume, store_from_table, or
store_from_path for refresh-aware UC-governed object stores.
download_s3_prefix(client, prefix, target) securely streams such a prefix
into a local directory with bounded concurrency.
Packaging
The published distribution is one wheel with one native extension. Internal
serialization and UC object-store Python sources are vendored under
outerproduct_sdk._vendor; the wheel has no dependency on separately
published OuterProduct client packages. Third-party runtime dependencies remain
ordinary wheel dependencies.
Release files for outerproduct-sdk 0.1.11
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| outerproduct_sdk-0.1.11.tar.gz | 1.1 MB | Details |
Built distributions (wheels)
| File | Reset | |||
|---|---|---|---|---|
| outerproduct_sdk-0.1.11-cp314-cp314t-manylinux_2_28_x86_64.whl | CPython 3.14 | CPython 3.14 free-threading | Linux glibc 2.28+ x86-64 | Details |
| outerproduct_sdk-0.1.11-cp314-cp314t-manylinux_2_28_aarch64.whl | CPython 3.14 | CPython 3.14 free-threading | Linux glibc 2.28+ ARM64 | Details |
| outerproduct_sdk-0.1.11-cp314-cp314t-macosx_15_0_arm64.whl | CPython 3.14 | CPython 3.14 free-threading | macOS 15.0+ ARM64 | Details |
| outerproduct_sdk-0.1.11-cp312-abi3-manylinux_2_28_x86_64.whl | CPython 3.12 | abi3 | Linux glibc 2.28+ x86-64 | Details |
| outerproduct_sdk-0.1.11-cp312-abi3-manylinux_2_28_aarch64.whl | CPython 3.12 | abi3 | Linux glibc 2.28+ ARM64 | Details |
Total release size: 22.2 MB
Release files / outerproduct_sdk-0.1.11.tar.gz
| Download URL | outerproduct_sdk-0.1.11.tar.gz |
|---|---|
| Size | 1.1 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
8d6b10ef71a1da0a6407f5d487983eae4f7e7477d23a1c9f12177b49d25e83bb
|
|
BLAKE2b-256 checksum How to use checksums |
99aff625f8f06a242c41dd4fe4648242aedfecd44a8ad13ca026ba9d4c508489
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.
Transparency logRelease files / outerproduct_sdk-0.1.11-cp314-cp314t-manylinux_2_28_x86_64.whl
| Download URL | outerproduct_sdk-0.1.11-cp314-cp314t-manylinux_2_28_x86_64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
10795cb14bb225e54fa71b8c521a25561f5ba75154d5581b0ee97e09e2b5b13a
|
|
BLAKE2b-256 checksum How to use checksums |
30dccf58f752244a063947bb7da6e21baeb662ee10b763b6ae18df5018c7332b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.
Transparency logRelease files / outerproduct_sdk-0.1.11-cp314-cp314t-manylinux_2_28_aarch64.whl
| Download URL | outerproduct_sdk-0.1.11-cp314-cp314t-manylinux_2_28_aarch64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
ee5b2fad593176d4530f0b2aa83fd2c4e4a78024e5c66c0d43f23bd8b3c7992e
|
|
BLAKE2b-256 checksum How to use checksums |
57960dbf2614e209493953daeeeadc1dd50de670b543190fc37d5f746ad92337
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.
Transparency logRelease files / outerproduct_sdk-0.1.11-cp314-cp314t-macosx_15_0_arm64.whl
| Download URL | outerproduct_sdk-0.1.11-cp314-cp314t-macosx_15_0_arm64.whl |
|---|---|
| Size | 4.1 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading macOS 15.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
4857f11033a415af0a5e427bcdde89d11e72bf046c51213ea4b347093c904aae
|
|
BLAKE2b-256 checksum How to use checksums |
20e36e9b0e57f40b50c61a7c562c5247917c7354739ef1cd0c9aef34340eb70d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.
Transparency logRelease files / outerproduct_sdk-0.1.11-cp312-abi3-manylinux_2_28_x86_64.whl
| Download URL | outerproduct_sdk-0.1.11-cp312-abi3-manylinux_2_28_x86_64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.12 Linux glibc 2.28+ x86-64 abi3 |
|
SHA-256 checksum How to use checksums |
7ef915ac6e46bdb2bea6a5dd1b4f404856dcd8e0ee6e4c288a9e549e64f159f5
|
|
BLAKE2b-256 checksum How to use checksums |
e417ec25c684b5622b3927a20f75bf8debeaf3236b5209b2de714781e7a417c6
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.
Transparency logRelease files / outerproduct_sdk-0.1.11-cp312-abi3-manylinux_2_28_aarch64.whl
| Download URL | outerproduct_sdk-0.1.11-cp312-abi3-manylinux_2_28_aarch64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.12 Linux glibc 2.28+ ARM64 abi3 |
|
SHA-256 checksum How to use checksums |
27bf949267b0e740967cfa5ab7b5161ae06956cb2774ec116f97547ab325b6b8
|
|
BLAKE2b-256 checksum How to use checksums |
ee4505bd5a53a14c46ceec4cb7078bf8f17cd6ac031164e13b782807992d287e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 28, 2026.
Transparency log