## Keepalive `computers.keepalive(strid) -> ComputerKeepaliveResponse` **post** `/computers/{id}/keepalive` Extend the timeout for a computer session and verify it is still running ### Parameters - `id: str` ### Returns - `Dict[str, object]` ### 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 ) response = client.computers.keepalive( "id", ) print(response) ```