Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Start a desktop machine and open a managed viewer URL.
uv pip install "${NULLSPACE_SDK_INSTALL_SPEC:-nullspace-sdk==1.0.0}" export NULLSPACE_API_KEY=ns_live_... export NULLSPACE_API_URL=https://api.your-nullspace-domain
from nullspace import Machine with Machine.create(template="desktop", timeout=300) as machine: width, height = machine.desktop.screen_size() print(f"desktop: {width}x{height}") machine.desktop.open("https://example.com") stream = machine.desktop.stream.start(view_only=False) print(f"viewer: {stream.viewer_url}") png = machine.desktop.screenshot() print(f"screenshot bytes: {len(png)}") machine.desktop.stream.stop()