Python
import os from skylight_sdk import Skylight with Skylight( apikey=os.getenv("SKYLIGHT_APIKEY", ""), ) as skylight: res = skylight.interact.type(instance_id="<id>", text="Hello, world!", interval=0.05) # Handle response print(res)
{ "message": "<string>", "status": "<string>" }
Type the specified text with optional delay between keystrokes
Requires API key authentication.
API key authentication
0.01 <= x <= 0.5
Successfully typed text
Status of the operation
"success"
Human-readable status message