Skip to content

Pyro dash

PyroDash

Primary entrypoint to pyro-dash resources.

Source code in pyro_dash_py/pyro_dash.py
 7
 8
 9
10
11
12
13
14
15
16
class PyroDash:
    """
    Primary entrypoint to pyro-dash resources.
    """

    def __init__(self, host: str, email: str, apikey: str):
        self._client = PyroApiClient(host, email, apikey)
        self.jobs = PyroJobResource(self._client)
        self.projects = PyroProjectResource(self._client)
        self.job_groups = PyroJobGroupResource(self._client)