class Client()
The main client for interacting with the Eventual (ev) platform. This client provides access to all ev platform services including compute clusters, job management, deployments, and other platform resources. The client handles authentication, connection management, and provides a high-level interface for platform operations. Notes: Direct instantiation using Client() is not supported. Use the default() class method to create client instances. Example: Create a client instance using the default configuration:
client = Client.default()
print(client)
Raises:
  • ValueError - Always raised as direct instantiation is not supported. Use Client.default() instead.
See Also:
  • Client.default() - Factory method for creating client instances with default settings.

default

@classmethod
def default(cls) -> Client
Creates a default ev client instance. Example: Create a client instance using the default configuration:
client = Client.default()
print(client)
Returns:
  • Client - a default client

__repr__

def __repr__() -> str
Return string representation of the client. Returns:
  • str - String representation of the underlying client.