Try on DesignSafe

Explore Jobs Interactively#

by Silvia Mazzoni, DesignSafe, 2025

Here’s a simple interactive Jupyter widget so you can select a job UUID from a dropdown, then pull its metadata, status, history, and outputs.

This is super handy in a notebook so you don’t have to modify code each time.

Connect to Tapis#

t=OpsUtils.connect_tapis()
 -- Checking Tapis token --
 Token loaded from file. Token is still valid!
 Token expires at: 2026-01-14T06:28:13+00:00
 Token expires in: 3:59:59.182930
-- AUTHENTICATED VIA SAVED TOKEN --

Get all your Jobs Metadata in a dataframe#

JobsData_df = OpsUtils.get_tapis_jobs_df(t, displayIt=False)

interactive_tapis_jobs_explorer#

Use a utility function that builds an interactive dashboard to explore Tapis jobs inside a Jupyter notebook.

OpsUtils.interactive_tapis_job_explorer(t,JobsData_df)