RunLite

RunLite#

class RunLite(*, run_id, username, experiment_name, experiment_label, options, software_version_set_id, created_timestamp, modified_timestamp, begin_timestamp, end_timestamp, sweep_id)#

Bases: RunWithTimestamps

The data of the run stored in the database, excluding run configuration data.

Module: iqm.station_control.interface.models.run

Attributes

sweep_id

Unique identifier of the associated sweep.

created_timestamp

Time when the object was created in the database.

modified_timestamp

Time when the object was last modified in the database.

begin_timestamp

Time when the run began in the station control.

end_timestamp

Time when the run ended in the station control.

run_id

Unique identifier of the run.

username

User who defined the run.

experiment_name

Identifier of the Experiment (Experiment.name).

experiment_label

Freeform label of the Experiment.

options

Experiment-specific options or toggles that generated the run.

software_version_set_id

Unique identifier of the software version set of the current Python runtime.

Methods

Parameters:
  • run_id (UUID) –

  • username (str) –

  • experiment_name (str) –

  • experiment_label (str) –

  • options (dict[str, Any] | None) –

  • software_version_set_id (int | None) –

  • created_timestamp (datetime) –

  • modified_timestamp (datetime) –

  • begin_timestamp (datetime) –

  • end_timestamp (datetime | None) –

  • sweep_id (UUID | None) –

sweep_id: UUID | None#

Unique identifier of the associated sweep.