Skip to main content

Official Python SDK for OpenApp — Physical Security as a Service (PSaaS): API-first access control for doors, gates, intercom, invitations, and audit.

Project description

openapp-sdk

PyPI version Python versions

Official Python SDK for OpenAppPhysical Security as a Service (PSaaS): API-first access control for doors, gates, intercom, invitations, policies, and audit across buildings, hotels, campuses, and homes.

The SDK wraps a shared Rust core (openapp-sdk-core): Rust handles HTTP, auth, retries, and telemetry; Python gives you a typed, ergonomic surface.

Supported Python versions are 3.10 and above (see requires-python in pyproject.toml).

Install

pip install openapp-sdk

Quick start

Docs: The canonical reference and tutorials live in the Python SDK documentation; for the onboarding quick start (same flow as the HTTP API guide), see Getting started — The same call from the SDK.

from openapp_sdk import Client

client = Client.connect(
    api_key="YOUR_API_KEY",  # from the OpenApp dashboard
)

# List orgs
orgs = client.orgs.list()

# Create an org and user
org = client.orgs.create(name="Acme")
user = client.users.create(email="alice@example.com", org_id=org["id"])

# Invoke entity actions via a fluent entity handle
entity = client.entities.by_id("01J00000000000000000000000")
entity.open()

# Fallback for any action id (including custom/new ones)
entity.action("switchable.open", reason="visitor buzzed in")

Async variant:

import asyncio
from openapp_sdk import AsyncClient

async def main():
    async with await AsyncClient.connect(api_key="...") as client:
        print(await client.status.get())

asyncio.run(main())

Authentication

Create API keys from the OpenApp dashboard or via POST /api-keys. Paste the key into Client.connect(api_key=...).

Never commit API keys. The SDK never logs them, and repr(ApiKey(...)) elides the secret.

Sub-clients

The full OpenAPI surface is available under client.<tag>:

Attribute OpenAPI tag
client.api_keys API Keys
client.users Users
client.orgs Orgs
client.devices Devices
client.entities Entities
client.integrations Integrations
client.zones Zones
client.lan_agent LAN agent
client.scripting Scripting
client.apartment_residents Apartment Residents
client.public_access Public Access
client.auth Auth
client.me Me
client.eula EULA
client.status Status

Error handling

from openapp_sdk.errors import ApiError, AuthError, TransportError

try:
    client.orgs.create(name="")
except ApiError as err:
    print(err.status, err.code, err.message)
except AuthError:
    print("API key revoked — re-issue from the dashboard.")
except TransportError:
    print("Network hiccup — retry or check connectivity.")

Pydantic typing (optional)

Install the extra and parse payloads into Pydantic v2 models:

pip install openapp-sdk[pydantic]
from pydantic import BaseModel
from openapp_sdk.contrib.pydantic import parse_as

class Org(BaseModel):
    id: str
    name: str

raw = client.orgs.get("org_123")
org = parse_as(Org, raw)

Logging / observability

The SDK emits structured tracing events from Rust and standard logging records from Python. Enable via OPENAPP_SDK_LOG=info (Rust) or the usual logging.basicConfig(level=logging.DEBUG) for Python.

License

MIT

Documentation

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

openapp_sdk-0.1.61.tar.gz (243.8 kB view details)

Uploaded Source

Built Distributions

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

openapp_sdk-0.1.61-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

openapp_sdk-0.1.61-cp313-cp313-manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

openapp_sdk-0.1.61-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

openapp_sdk-0.1.61-cp313-cp313-macosx_11_0_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ x86-64

openapp_sdk-0.1.61-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

openapp_sdk-0.1.61-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

openapp_sdk-0.1.61-cp312-cp312-manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

openapp_sdk-0.1.61-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

openapp_sdk-0.1.61-cp312-cp312-macosx_11_0_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ x86-64

openapp_sdk-0.1.61-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

openapp_sdk-0.1.61-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

openapp_sdk-0.1.61-cp311-cp311-manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

openapp_sdk-0.1.61-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

openapp_sdk-0.1.61-cp311-cp311-macosx_11_0_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ x86-64

openapp_sdk-0.1.61-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

openapp_sdk-0.1.61-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86-64

openapp_sdk-0.1.61-cp310-cp310-manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

openapp_sdk-0.1.61-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

openapp_sdk-0.1.61-cp310-cp310-macosx_11_0_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ x86-64

openapp_sdk-0.1.61-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file openapp_sdk-0.1.61.tar.gz.

File metadata

  • Download URL: openapp_sdk-0.1.61.tar.gz
  • Upload date:
  • Size: 243.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for openapp_sdk-0.1.61.tar.gz
Algorithm Hash digest
SHA256 9a7f63ac131c86c105ea59bdc6a9a5a88c86c9551b56585b1541cb70a615bfcd
MD5 b1ce3636c4f70adda0794ef6919efc89
BLAKE2b-256 96f34b78b3311a842fbd6703d8a6b0e86ad6d51f57375635698cc9fffedf87a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for openapp_sdk-0.1.61.tar.gz:

Publisher: sdk-unified-release.yml on tomers/openapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openapp_sdk-0.1.61-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for openapp_sdk-0.1.61-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6ea340b3a33655ec4beccf0519509b1224f48aed43d6ebb5aab446bf3865b905
MD5 5b12c09d46d49095db09f72fe29576d4
BLAKE2b-256 79cff6f1564a795f307e22048720e3c7f1596182f6f7fbf7a227ebdeefb8c3af

See more details on using hashes here.

Provenance

The following attestation bundles were made for openapp_sdk-0.1.61-cp313-cp313-win_amd64.whl:

Publisher: sdk-unified-release.yml on tomers/openapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openapp_sdk-0.1.61-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openapp_sdk-0.1.61-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d0c638c5c47a244a731441c276bed69329d42b64b0012e67c46e1ef0693e0e18
MD5 25393d43b3a6e3f116a8284838de68c3
BLAKE2b-256 04c0a6e0ff5a4ff5adb64048d378a9a6eed1cd51fd1a595664431a0911fccb8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for openapp_sdk-0.1.61-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: sdk-unified-release.yml on tomers/openapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openapp_sdk-0.1.61-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openapp_sdk-0.1.61-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae5f2c3edf3f5884711f2e1afccf2b2658531cf9fa3b6f4d51d041a5fe89eb8a
MD5 b48435afd747f6c94ecd9a623d136079
BLAKE2b-256 f3b10c58b64120022d7a71051230aa227427a54d10bef5d2b4c3760c6e06b7e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for openapp_sdk-0.1.61-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: sdk-unified-release.yml on tomers/openapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openapp_sdk-0.1.61-cp313-cp313-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for openapp_sdk-0.1.61-cp313-cp313-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 7ae89d7b7c2dc6c66823358772f5cda0fa98b3db2aed6818c9b92a23ca75c851
MD5 222bbbe1216346285e23fc91fd1de031
BLAKE2b-256 e24b1ba0e26db9352b1070b191e71d346a1f72b4ac48a861a10f3323207de94c

See more details on using hashes here.

Provenance

The following attestation bundles were made for openapp_sdk-0.1.61-cp313-cp313-macosx_11_0_x86_64.whl:

Publisher: sdk-unified-release.yml on tomers/openapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openapp_sdk-0.1.61-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openapp_sdk-0.1.61-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32fb50e0940bcd5c36a35536400de48ba170ac8d63c8424f18da13a89eac073b
MD5 c621376d17f2dbbfd63593a62f86d852
BLAKE2b-256 67077736568f8d0ac1f0d7fab41ffc461a4ca22834e9804c097125abe7afc035

See more details on using hashes here.

Provenance

The following attestation bundles were made for openapp_sdk-0.1.61-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: sdk-unified-release.yml on tomers/openapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openapp_sdk-0.1.61-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for openapp_sdk-0.1.61-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 64f0a1e8f369c3d00cf394cfe6a8d35319e6ec0ce4701832ebda435bc6cd33ad
MD5 23d2b507e652c7ea1e4f489b892858d2
BLAKE2b-256 6ff381892ea49ac8ee4ce5601bd8c22e4909600dd3153402f48dc97ab6a1770d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openapp_sdk-0.1.61-cp312-cp312-win_amd64.whl:

Publisher: sdk-unified-release.yml on tomers/openapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openapp_sdk-0.1.61-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openapp_sdk-0.1.61-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d8442501d5c9cfb972d0277368831dc1fe997b7b44e34c9a9cbf64ed62ed1b83
MD5 b7127a6aeb8ccc118f0c9d860c4d16a6
BLAKE2b-256 e3fb21ed7b1d0bbc443656b83b0b62b5431915d5c81e40966d8034a640553332

See more details on using hashes here.

Provenance

The following attestation bundles were made for openapp_sdk-0.1.61-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: sdk-unified-release.yml on tomers/openapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openapp_sdk-0.1.61-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openapp_sdk-0.1.61-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ab79b0c3882cefc6cc304ceba0bbd6046bb8651f20034a57bff1bb0b8c4be78
MD5 5dbc379d5e8e5796efe6663e0e41f237
BLAKE2b-256 9032011aebb7ac654f163f2d6d60554bd1792c10b9cbfebeb917dc1f78784b19

See more details on using hashes here.

Provenance

The following attestation bundles were made for openapp_sdk-0.1.61-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: sdk-unified-release.yml on tomers/openapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openapp_sdk-0.1.61-cp312-cp312-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for openapp_sdk-0.1.61-cp312-cp312-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 908cb05af5620ef72a8e9d596770ce2269b6a869fdaca528b4b69c56799b547a
MD5 eb5a617ff8a1afd8ad53137b73140fdd
BLAKE2b-256 4f60134fa4d22e0827ff085503802b4320ae47dfd87990f7d041b9e8ca031bea

See more details on using hashes here.

Provenance

The following attestation bundles were made for openapp_sdk-0.1.61-cp312-cp312-macosx_11_0_x86_64.whl:

Publisher: sdk-unified-release.yml on tomers/openapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openapp_sdk-0.1.61-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openapp_sdk-0.1.61-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bdf5858df7e6fb646a128843a28c40c65be927f63980e97331e33f5aa3dcd532
MD5 612bea89aed56566956316a5a3e6cd84
BLAKE2b-256 d04f2a2477a0aa021cccd7a8dc5c3eb640b77703170efd6324f28b6a00734a37

See more details on using hashes here.

Provenance

The following attestation bundles were made for openapp_sdk-0.1.61-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: sdk-unified-release.yml on tomers/openapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openapp_sdk-0.1.61-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for openapp_sdk-0.1.61-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1d3cff1e2386358ab3459a310cc5e152a70aee13fc7f4451ae63854c6f2de820
MD5 2c273e73b14dc473b7632a280268c19c
BLAKE2b-256 ed0367504b95b4d2716df68ad99c2d66bf3879a444d9e50904fb9be5fa5a8bdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for openapp_sdk-0.1.61-cp311-cp311-win_amd64.whl:

Publisher: sdk-unified-release.yml on tomers/openapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openapp_sdk-0.1.61-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openapp_sdk-0.1.61-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 82a9cb4f6ed8e0f83bd93cd27e83c3e107a032411e557b3fcef0beda7e3d55a6
MD5 b1725522b30ca5bb5c0508c3e10bb80a
BLAKE2b-256 7a7131643c50a974e8b7361c82dd8fddcfb0674496f56525b7fad5cbe02b9e3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for openapp_sdk-0.1.61-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: sdk-unified-release.yml on tomers/openapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openapp_sdk-0.1.61-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openapp_sdk-0.1.61-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08d97c5c8204c9bb15bb40f2a031836633d32c4ad2de30abdce941e2988a7f7c
MD5 c02bcd0e6115a25c8be0e27e39514d32
BLAKE2b-256 21f0c238873c93650f6cd3bfb28758d899871fc24c0a1e7474c6e92cd5800029

See more details on using hashes here.

Provenance

The following attestation bundles were made for openapp_sdk-0.1.61-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: sdk-unified-release.yml on tomers/openapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openapp_sdk-0.1.61-cp311-cp311-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for openapp_sdk-0.1.61-cp311-cp311-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 a53f3ad6554268b525ba20b03080c37ed1a89a3a86ba99539db25ee1553a61f9
MD5 671d6ac5e6e949d5c41aafb562807796
BLAKE2b-256 61f78da5e21ef7dc132398dee062b82d7ed3c64889b280d91b6ebf2da58e5572

See more details on using hashes here.

Provenance

The following attestation bundles were made for openapp_sdk-0.1.61-cp311-cp311-macosx_11_0_x86_64.whl:

Publisher: sdk-unified-release.yml on tomers/openapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openapp_sdk-0.1.61-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openapp_sdk-0.1.61-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a867a2eab8f0175eaf00febb6bdb0c788ab608f64137c1d3e12927816623fec
MD5 56e063f11626bdfe17ee408449da4c91
BLAKE2b-256 5d624a1114c642bfbaa7222d812808a347511be9940f9942f21134b5056597ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for openapp_sdk-0.1.61-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: sdk-unified-release.yml on tomers/openapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openapp_sdk-0.1.61-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for openapp_sdk-0.1.61-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 43da0d58a43b9abd84f3aef741380ed2d3cf8660658162217ce09576c7bb9c84
MD5 f75980013773e53c839c9d7b0b256ff3
BLAKE2b-256 9e34ab88a4b83b616d0882908aa2f0a94b2f0b329f9b0c9c2d95929f96d73bdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for openapp_sdk-0.1.61-cp310-cp310-win_amd64.whl:

Publisher: sdk-unified-release.yml on tomers/openapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openapp_sdk-0.1.61-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for openapp_sdk-0.1.61-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea576617a0428f1441a1ec967304dfaa38eaf8aecb96b4b4af17c70e8cbe7ceb
MD5 9d767a754737b593364c6908eca89aad
BLAKE2b-256 1f9109b0b9f35bc63a5d7fa397e3a4949c0bf3029a99eb2323d2184a34a492f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for openapp_sdk-0.1.61-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: sdk-unified-release.yml on tomers/openapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openapp_sdk-0.1.61-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for openapp_sdk-0.1.61-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40099e5606d64928f065df9e3ff0d29c2a0c4f8aeb8cb63226ee5fcd707ff075
MD5 95749fa06b82ca174b762b4c79c1bccf
BLAKE2b-256 606acc098c46bc7fc3926e7ef6f889489df8af15709cb50f61c52e856b666abf

See more details on using hashes here.

Provenance

The following attestation bundles were made for openapp_sdk-0.1.61-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: sdk-unified-release.yml on tomers/openapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openapp_sdk-0.1.61-cp310-cp310-macosx_11_0_x86_64.whl.

File metadata

File hashes

Hashes for openapp_sdk-0.1.61-cp310-cp310-macosx_11_0_x86_64.whl
Algorithm Hash digest
SHA256 48f8c56843ea9a131c34a3c4073a3099a2acad6e1f3801f3e1d4dd3c468bdc22
MD5 652dcf096a562b5e2c581050d6ce0a28
BLAKE2b-256 be3efd1428a7664e56b99985dc14a9f275f1f5a4a1218a575bf62f7c8b5cde02

See more details on using hashes here.

Provenance

The following attestation bundles were made for openapp_sdk-0.1.61-cp310-cp310-macosx_11_0_x86_64.whl:

Publisher: sdk-unified-release.yml on tomers/openapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file openapp_sdk-0.1.61-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for openapp_sdk-0.1.61-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b6ee0c8c7ba50633b7d77f1fb4c28f6701360be66f9e6555d91c187f9ffba73
MD5 afad0ca2550bf26c03ae3be8bd4b0e64
BLAKE2b-256 5e5869a25ca30a85712af7f7aa31778c9eeedb7da425604114bb46800e69a058

See more details on using hashes here.

Provenance

The following attestation bundles were made for openapp_sdk-0.1.61-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: sdk-unified-release.yml on tomers/openapp

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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