Add per-client Makefiles for C, Python, and Go with: - CLI mode: Tests --help, arg parsing, syntax validation - Library mode: Unit tests, import verification - Integration mode: API contract validation (with credentials) - Functional mode: Real-world scenario tests C client: - 22 library tests (SHA-256, HMAC-SHA256, detect_language) - Full unsandbox.c implementation with examples Python client (sync + async): - Delegates to sync/ and async/ subdirectories - pytest-based test suites with coverage - Examples for concurrent execution, streaming Go client: - Delegates to sync/ and async/ subdirectories - go test integration with vet and fmt Also update detect-changes.sh to detect changes in both root-level un.* files AND clients/ directory.
70 lines
2.1 KiB
Python
70 lines
2.1 KiB
Python
#!/usr/bin/env python3
|
|
"""
|
|
Hello World Client example for unsandbox Python SDK - Synchronous Version
|
|
|
|
This example demonstrates basic synchronous execution using the SDK client.
|
|
Shows how to execute code from a Python program using the sync SDK.
|
|
|
|
To run:
|
|
export UNSANDBOX_PUBLIC_KEY="your-public-key"
|
|
export UNSANDBOX_SECRET_KEY="your-secret-key"
|
|
python3 hello_world_client.py
|
|
|
|
Expected output:
|
|
Executing code synchronously...
|
|
Result status: completed
|
|
Output: Hello from unsandbox!
|
|
"""
|
|
|
|
import sys
|
|
import os
|
|
|
|
# Add the SDK path
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "src"))
|
|
|
|
from un import execute_code, CredentialsError
|
|
|
|
|
|
def main():
|
|
"""Execute hello world code using the SDK."""
|
|
|
|
# The code to execute
|
|
code = 'print("Hello from unsandbox!")'
|
|
|
|
try:
|
|
# Resolve credentials from environment
|
|
public_key = os.environ.get("UNSANDBOX_PUBLIC_KEY")
|
|
secret_key = os.environ.get("UNSANDBOX_SECRET_KEY")
|
|
|
|
if not public_key or not secret_key:
|
|
print("Error: UNSANDBOX_PUBLIC_KEY and UNSANDBOX_SECRET_KEY environment variables required")
|
|
print("Run with: export UNSANDBOX_PUBLIC_KEY=your-key UNSANDBOX_SECRET_KEY=your-key")
|
|
sys.exit(1)
|
|
|
|
# Execute the code synchronously
|
|
print("Executing code synchronously...")
|
|
result = execute_code("python", code, public_key, secret_key)
|
|
|
|
# Check for errors
|
|
if result.get("status") == "completed":
|
|
print(f"Result status: {result.get('status')}")
|
|
print(f"Output: {result.get('stdout', '').strip()}")
|
|
if result.get("stderr"):
|
|
print(f"Errors: {result.get('stderr', '')}")
|
|
else:
|
|
print(f"Execution failed with status: {result.get('status')}")
|
|
print(f"Error: {result.get('error', 'Unknown error')}")
|
|
sys.exit(1)
|
|
|
|
except CredentialsError as e:
|
|
print(f"Credentials error: {e}")
|
|
sys.exit(1)
|
|
except Exception as e:
|
|
print(f"Error: {e}")
|
|
import traceback
|
|
traceback.print_exc()
|
|
sys.exit(1)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|