qai_hub.get_job

get_job(job_id)

Returns a job for a given id.

Parameters:

job_id (str) – id of a job.

Returns:

job – The job for the id.

Return type:

Job

Examples

Get job and print its status. The job ID is an alphanumeric string starting with j that you can get from the job’s URL (/jobs/<job ID>).:

import qai_hub as hub

job = hub.get_job("jabc123")
status = job.get_status()