## Retrieve Events `computers.retrieve_events(strid)` **get** `/computers/{id}/events` Stream real-time events using Server-Sent Events (SSE) ### 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_events( "id", ) ```