Skip to content

Welcome to pyro_dash_py

A pretty light-weight and somewhat bearable python software development kit (sdk) for the pyro-dashboard-api.

Installation

pyro_dash_py has a public pypi package that you can install.

pip install pyro_dash_py

Speed Run Usage

First, initialize the PyroDash client.

pyro = PyroDash(
    host="https://api.dashboard.pyrologix.com",
    email="dev@pyrologix.com",
    apikey="my-super-secret-key",
)

Now you can create some projects and jobs:

my_project = pyro.projects.create(name="Hello from pyro_dash_py")
my_job = pyro.jobs.create("wildest")

my_project.add_job(my_job.id)

For more in-depth usage please check out Examples.

For resource-related documentation please refer to Jobs, Projects, and the like.