Skip to content

Overview

Bases: SkahaClient

Overview of the Skaha Server.

Parameters:

Name Type Description Default
SkahaClient Object

Skaha Client.

required

availability

Python
availability() -> bool

Check if the server backend is available.

Returns:

Name Type Description
bool bool

True if the server is available, False otherwise.

Source code in skaha/overview.py
Python
def availability(self) -> bool:
    """Check if the server backend is available.

    Returns:
        bool: True if the server is available, False otherwise.
    """
    response: Response = self.client.get("availability")  # type: ignore # noqa
    response.raise_for_status()
    # Parse the XML string
    root = ElementTree.fromstring(response.text)  # type: ignore
    available = root.find(
        ".//{http://www.ivoa.net/xml/VOSIAvailability/v1.0}available"
    ).text  # type: ignore
    note = root.find(
        ".//{http://www.ivoa.net/xml/VOSIAvailability/v1.0}note"
    ).text  # type: ignore
    log.info(note)
    if available == "true":
        return True
    return False