Python client for the Subnoto Public API
Project description
Subnoto Python SDK
Python client for the Subnoto Public API
Note: the SDK is only available on the linux/amd64 platform for now
Installation
pip install subnoto-api-client
Or with Bazel:
# In your BUILD file
load("@pypi//:requirements.bzl", "requirement")
py_binary(
name = "my_app",
srcs = ["main.py"],
deps = [
"//libs/api-client-py:api_client_py",
],
)
Usage
Basic Example
import asyncio
from subnoto_api_client import SubnotoClient, SubnotoConfig
async def main():
# Create client with configuration
config = SubnotoConfig(
api_base_url="https://enclave.subnoto.com",
access_key="your-access-key",
secret_key="your-secret-key-hex",
unattested=True # Set to False for production with attestation
)
async with SubnotoClient(config) as client:
# List workspaces
response = await client.post("/public/workspace/list", json={})
workspaces = response.json()
print(f"Workspaces: {workspaces}")
# Get current user info
response = await client.post("/public/utils/whoami", json={})
user_info = response.json()
print(f"User: {user_info}")
if __name__ == "__main__":
asyncio.run(main())
Configuration
| Option | Type | Required | Description |
|---|---|---|---|
api_base_url |
str | Yes | API base URL (e.g., https://enclave.subnoto.com) |
access_key |
str | Yes | API access key from your team settings |
secret_key |
str | Yes | API secret key (hex-encoded) from your team settings |
unattested |
bool | No | Use unattested mode for development (default: False) |
attester_key |
bytes | No | Public key for attestation verification (required if attested) |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file subnoto_api_client-1.0.22-py3-none-manylinux2014_x86_64.whl.
File metadata
- Download URL: subnoto_api_client-1.0.22-py3-none-manylinux2014_x86_64.whl
- Upload date:
- Size: 2.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57b30820487d94be0fa3f8e75bec3ee80ea994ecd68e5b2297692d589c82fee3
|
|
| MD5 |
0694618bbba2702a5036322529972b65
|
|
| BLAKE2b-256 |
d6774482430a1184039e921a482e1c818a6f1a20d621f75460c5c71bf0d7c067
|