Skip to content

Skaha Client

The skaha.client module provides a client for the Skaha server. The client is based of the httpx library and provides a simple interface to the Skaha server. The client configures the authorization headers for user authentication and container registry access.

Bases: BaseModel

Skaha Client.

Parameters:

Name Type Description Default
server str

Server URL.

required
version str

Skaha API version.

required
certificate str

Certificate file.

required
timeout int

HTTP Timeout.

required
verify bool

Verify SSL certificate.

required
registry ContainerRegistry

Credentials for a private registry.

required
client Client

HTTPx Client.

required
asynclient AsyncClient

HTTPx Async Client.

required
concurrency int

Number of concurrent requests.

required
token str

Authentication token.

required
loglevel int

Logging level. Default is 20 (INFO).

required

Raises:

Type Description
ValidationError

If the client is misconfigured.

FileNotFoundError

If the cert file does not exist or is not readable.

Examples:

Python Console Session
>>> from skaha.client import SkahaClient
Text Only
class Sample(SkahaClient):
    pass