## Retrieve Screencast `computers.retrieve_screencast(strid)` **get** `/computers/{id}/screencast` Stream only screencast frames (base64 JPEG images) using Server-Sent Events (SSE) for live browser viewing ### Parameters - `id: str` ### Example ```python import os from tzafon import Lightcone client = Lightcone( api_key=os.environ.get("TZAFON_API_KEY"), # This is the default and can be omitted ) client.computers.retrieve_screencast( "id", ) ```