Skip to main content
GitHub source

class DownloadHistoryResult

Result of downloading a run’s history exports. Attributes:
  • paths: The paths to the downloaded history files.
  • errors: A dictionary of errors that occurred while downloading the history files.
  • contains_live_data: Whether the run contains live data,
  • not yet exported to parquet files: w.

method DownloadHistoryResult.__init__

__init__(
    paths: 'list[pathlib.Path]',
    contains_live_data: 'bool',
    errors: 'dict[pathlib.Path, str] | None' = None
) → None