qat.core.application.RemoteApplication

class qat.core.application.RemoteApplication(port, ip: str = None, ssl_cert: str = None, ssl_key: str = None, check_server_cert: bool = False, connection=None)

RemoteApplications are built from a port and an IP address

Parameters
  • port (int) – port number of the QPU server

  • ip (str, optional) – QPU server IP Default: None

  • ssl_cert (str, optional) – path to the client SSL certificate Default: None

  • ssl_key (str, optional) – path to the client SSL key, use SSL if provided Default: None

  • check_server_cert (bool, optional) – check the server certificate if True and in SSL mode

  • connection (optional Thrift connection) – for internal use